Back to the list of problems

Problem 161 from Wernick's corpus: B, G, Ha


Problem

Given a point B, a point G 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 B and the point G, construct a point Mb (rule W01);

  2. Using the point B and the point Ha, construct a line a (rule W02);

    % DET: points B and Ha are not the same

  3. 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

  4. 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

  5. Using the point G and the point C, construct a point Mc (rule W01);

  6. Using the point B and the point Mc, construct a point A (rule W01);

animation
Construction in GCLC language

Back to the list of problems