Back to the list of problems

Problem 341 from Wernick's corpus: Ma, Mb, Mc


Problem

Given a point Ma, a point Mb and a point Mc, construct the triangle ABC.

Status

ArgoTriCS says that the problem is solvable.

Illustration

Figure of construction

Solution


  1. Using the point Ma and the point Mc, construct a line McMa (rule W02);

    % DET: points Ma and Mc are not the same

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

    % DET: points Mb and Mc are not the same

  3. Using the point Ma and the line McMb, construct a line a (rule W16);

  4. Using the point Mb and the line McMa, construct a line b (rule W16);

  5. Using the line b and the line a, construct a point C (rule W03);

    % NDG: lines b and a are not parallel

    % DET: lines b and a are not the same

  6. Using the point C and the point Ma, construct a point B (rule W01);

  7. Using the point Mb and the point C, construct a point A (rule W01);

animation
Construction in GCLC language

Back to the list of problems