Back to the list of problems

Problem 343 from Wernick's corpus: Ma, Mb, Ha


Problem

Given a point Ma, a point Mb and a point Ha, construct the triangle ABC.

Status

ArgoTriCS says that the problem is solvable.

Illustration

Figure of construction

Solution


  1. Using the point Ma and the point Ha, construct a line a (rule W02);

    % DET: points Ma and Ha are not the same

  2. Using the point Ha and the point Mb, construct a circle k(Mb,C) (rule W06);

    % NDG: points Ha and Mb are not the same

  3. Using the circle k(Mb,C), the line a, the point Mb and the point Ha, construct a point C (rule W05);

    % NDG: line a and circle k(Mb,C) intersect

    % DET: points Ha and C must be different

  4. Using the point C and the point Ma, construct a point B (rule W01);

  5. Using the point Mb and the point C, construct a point A (rule W01);

animation
Construction in GCLC language

Back to the list of problems