Sunday, June 15, 2008

Coordinated Circles

Today I have a very common question - how to find an equation of a circle from three points, which are a requirement for a unique circle. See how this can be done the hard way and the easy way.

Find the center, radius, and area of a circle that passes through (6, 2), (0, -6), and (7, 1).

The usual way of doing this type of problems is finding the equations of two lines between those points, finding their perpendicular bisectors, find their point of intersection (the center), and go from there. There is one very good adjective to describe this: boring. Since this blog is all about interesting math, you'll see there is a way that cuts all this line of operations up to "finding their perpendicular bisectors". Yes, removing two very annoying steps.

Since the center of the circle is equidistant from all three points, we need to find a point which is equidistant from the first two points, then find a point which is equidistant from the second and third point, and then see if they match. If they do, the point we found is equidistant from the first and third point (by the transitive property).

So, let's equate the distance between (6, 2) and (0, -6) (the generic point is (x, y)):
√((x - 6)2 + (y - 2)2) = √((x - 0)2 + (y + 6)2)

Square both sides:
(x - 6)2 + (y - 2)2 = x2 + (y + 6)2

Open parentheses and add like terms:
x2 - 12x + 36 + y2 - 4y + 4 = x2 + y2 + 12y + 36
-12x - 4y + 4 = 12y
-12x - 16y + 4 = 0
-16y = 12x - 4
y = -3x/4 + 1/4

We didn't get a point, we got a line. This line is the perpendicular bisector of the segment between the two points, because the geometric location of all the points equidistant from two points is a line. This line is the perpendicular bisector of the segment connecting the two points. Now you know how to find a perpendicular bisector of two points in one very easy step.

Let's do the same thing to the second pair of points:
√((x - 0)2 + (y + 6)2) = √((x - 7)2 + (y - 1)2)
x2 + (y + 6)2 = (x - 7)2 + (y - 1)2
x2 + y2 + 12y + 36 = x2 - 14x + 49 + y2 - 2y + 1
12y + 36 = -14x + 49 - 2y + 1
14y = -14x + 14
y = -x + 1

Now we have two sets of points that are equidistant from a given set of points. All we need now is to equate those lines and find the point that is equidistant from all three points:
y = -3x/4 + 1/4
y = -x + 1

Equate the y's:
-3x/4 + 1/4 = -x + 1
x/4 = 3/4
x = 3

So:
y = -3 + 1
y = -2

The point which is equidistant from all three points and thus the center of the circle is (3, -2).

Now everything becomes really easy. To find the radius of the circle, we need to find the distance from the center to one of the points. Let's say to (7, 1):
r = √((7 - 3)2 + (1 - (-2))2)
r = √(42 + 32)
r = √25
r = 5

Using the formula for the area of a circle, we finally answer the question completely with the answer:
S = 52 * π = 25π

Problem solved.
Nadav

nadavs

No comments: