Back to the list of problems

Problem 262 from Wernick's corpus: C, Hc, Tb


Problem

Given a point C, a point Hc and a point Tb, 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 Hc, construct a line hc (rule W02);

    % DET: points C and Hc are not the same

  2. Using the point C and the point Tb, construct a line b (rule W02);

    % DET: points C and Tb are not the same

  3. Using the point Hc and the line hc, construct a line c (rule W10a);

  4. Using the line c and the line b, construct a point A (rule W03);

    % NDG: lines c and b are not parallel

    % DET: lines c and b are not the same

  5. Using the point A, the point C, the point Tb and the line b, construct a point T`b (rule W19);

    % NDG: points A and C are not the same points C and Tb are not the same points C and midpoint([A,Tb]) are not the same

  6. Using the point Tb and the point T`b, construct a circle k_over(Tb,T`b) (rule W09);

    % NDG: points Tb and T`b are not the same

  7. Using the circle k_over(Tb,T`b) and the line c, construct a point Bwa and a point B (rule W04);

    % NDG: line c and circle k_over(Tb,T`b) intersect

animation
Construction in GCLC language

Back to the list of problems