Back to the list of problems

Problem 545 from Connelly's corpus: Hc, I, N


Problem

Given a point Hc, a point I and a point N, construct the triangle ABC.

Status

ArgoTriCS says that the problem is solvable.

Illustration

Figure of construction

Solution


  1. Using the point Hc and the point N, construct a circle k(N,Ma) (rule W06);

    % NDG: points Hc and N are not the same

  2. Using the point I, the circle k(N,Ma), the point N and the point Hc, construct a circle k(I,Pa) (rule W22);

    % NDG: point I is inside the circle k(N,Ma) points I and N are not the same

  3. Using the circle k(I,Pa), the point Hc and the point I, construct a line y3 and a line c (rule W12);

    % NDG: point Hc is outside the circle k(I,Pa)

  4. Using the circle k(N,Ma), the line c, the point N and the point Hc, construct a point Mc (rule W05);

    % NDG: line c and circle k(N,Ma) intersect

    % DET: points Hc and Mc must be different

  5. Using the point Mc and the point I, construct a line IMc (rule W02);

    % DET: points Mc and I are not the same

  6. Using the point N and the point Mc, construct a line m(HaHb) (rule W02);

    % DET: points N and Mc are not the same

  7. Using the circle k(N,Ma), the line m(HaHb), the point N and the point Mc, construct a point Ec (rule W05a);

    % NDG: line m(HaHb) and circle k(N,Ma) intersect

    % DET: points Mc and Ec must be different

  8. Using the point Ec and the point Hc, construct a line hc (rule W02);

    % DET: points Ec and Hc are not the same

  9. Using the point I and the point Mc, construct a circle k_over(I,Mc) (rule W09);

    % NDG: points I and Mc are not the same

  10. Using the circle k_over(I,Mc) and the circle k(I,Pa), construct a point Cfi and a point Pc (rule W07);

    % NDG: circles k_over(I,Mc) and k(I,Pa) intersect

    % DET: circles k_over(I,Mc) and k(I,Pa) are not the same

  11. Using the point Pc and the point Mc, construct a point P`c (rule W01);

  12. Using the point Mc and the line c, construct a line mc (rule W10b);

  13. Using the point P`c and the line IMc, construct a line CP`c (rule W16);

  14. Using the line CP`c and the line hc, construct a point C (rule W03);

    % NDG: lines CP`c and hc are not parallel

    % DET: lines CP`c and hc are not the same

  15. Using the point I and the point C, construct a line sc (rule W02);

    % DET: points I and C are not the same

  16. Using the line mc and the line sc, construct a point Nc (rule W03);

    % NDG: lines mc and sc are not parallel

    % DET: lines mc and sc are not the same

  17. Using the point I and the point Nc, construct a circle k(Nc,B) (rule W06);

    % NDG: points I and Nc are not the same

  18. Using the circle k(Nc,B) and the line c, construct a point B and a point A (rule W04);

    % NDG: line c and circle k(Nc,B) intersect

animation
Construction in GCLC language

Back to the list of problems