Finding a Circle From 3 Points

Given 3 points which are not colinear (all on the same line) those three points uniquely define a circle. But, how do you find the center and radius of that circle?
Propose a simple algorithm for this.

Comments

  1. 1. join two pairs of vertices.
    2. Form the equations for the two lines.
    3. Form the equations of the perpendicular bisectors of each of the equations obtained in step 2.
    4. Solve the two equations from step 1. The point of intersection is the centre.
    5. calculate the radius.

    ReplyDelete
  2. sorry..the 4th step is to solve the 2 equations obtained from step 3.

    ReplyDelete

Post a Comment

Popular posts from this blog