Back to the list of problems

Problem 201 from Wernick's corpus: C, O, Ha


Problem

Given a point C, a point O 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 C and the point Ha, construct a line a (rule W02);

    % DET: points C and Ha are not the same

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

    % NDG: points C and O are not the same

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

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

    % DET: points C and B must be different

  4. Using the point Ha and the line a, construct a line ha (rule W10b);

  5. Using the circle k(O,C) and the line ha, construct a point Ak and a point A (rule W04);

    % NDG: line ha and circle k(O,C) intersect

animation
Construction in GCLC language

Back to the list of problems