Back to the list of problems

Problem 149 from Wernick's corpus: B, Mb, Tb


Problem

Given a point B, a point Mb 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 B and the point Tb, construct a line sb (rule W02);

    % DET: points B and Tb are not the same

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

    % DET: points Mb and Tb are not the same

  3. Using the point Mb and the line b, construct a line mb (rule W10b);

  4. Using the line mb and the line sb, construct a point Nb (rule W03);

    % NDG: lines mb and sb are not parallel

    % DET: lines mb and sb are not the same

  5. Using the point B and the point Nb, construct a line m(BNb) (rule W14);

    % DET: points B and Nb are not the same

  6. Using the line m(BNb) and the line mb, construct a point O (rule W03);

    % NDG: lines m(BNb) and mb are not parallel

    % DET: lines m(BNb) and mb are not the same

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

    % NDG: points B and O are not the same

  8. Using the circle k(O,C) and the line b, construct a point C and a point A (rule W04);

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

animation
Construction in GCLC language

Back to the list of problems