Back to the list of problems

Problem 272 from Wernick's corpus: C, Tb, Tc


Problem

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

    % DET: points C and Tb are not the same

  2. Using the point Tc and the line b, construct a circle k(Tc,foot[Tc,b]) (rule W11);

    % NDG: point Tc is not incident to the line b

  3. Using the circle k(Tc,foot[Tc,b]), the point C, the point Tc and the line b, construct a line a (rule W13);

    % NDG: point C is outside the circle k(Tc,foot[Tc,b])

  4. Using the point Tb and the line a, construct a circle k(Tb,foot[Tb,c]) (rule W11);

    % NDG: point Tb is not incident to the line a

  5. Using the circle k(Tb,foot[Tb,c]), the point Tc and the point Tb, construct a line c2 and a line c (rule W12);

    % NDG: point Tc is outside the circle k(Tb,foot[Tb,c])

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

  7. Using the line a and the line c, construct a point B (rule W03);

    % NDG: lines a and c are not parallel

    % DET: lines a and c are not the same

animation
Construction in GCLC language

Back to the list of problems