General Form of Circle Equation

Click For Summary
SUMMARY

The discussion focuses on deriving the general form of a circle's equation given three non-equidistant points: (0,0), (0,8), and (6,0). Participants suggest using the circle equation (x-a)² + (y-b)² = r² to create three simultaneous equations, allowing for the determination of the center (a, b) and radius (r). The correct general form of the circle is x² + y² - 6x - 8y = 0, with the radius calculated as 5. Participants emphasize the importance of manipulating the equations correctly to find the values of a, b, and r.

PREREQUISITES
  • Understanding of the general form of a circle equation (x-a)² + (y-b)² = r²
  • Ability to solve simultaneous equations
  • Familiarity with basic algebraic manipulation
  • Knowledge of perpendicular bisectors and their geometric significance
NEXT STEPS
  • Learn how to derive the center and radius of a circle from three points using simultaneous equations
  • Study the method of finding perpendicular bisectors to determine the center of a circle
  • Explore advanced algebraic techniques for manipulating polynomial equations
  • Practice solving similar problems involving the general form of circle equations with different sets of points
USEFUL FOR

Mathematics students, educators, and anyone interested in geometry and algebraic problem-solving will benefit from this discussion.

Xavier
Messages
8
Reaction score
0
I'm attempting to write the general form of a circle where I'm given three points, not necessary equally distant from each other: (0,0), (0,8), (6,0)

I need to write the equation of the circle in general form. I've managed to get pretty close to what the answer in the book states, but I'm still off.

Since these points are not equally distant from each other, you can't use the midpoint formula (x1+x2)/2, (y1+y2)/2 to get the center of the circle. Is there another method I should be using to find the center so I can determine the radius, and then find the general form for the circle?

I'm not looking for the answer, I know what the book says in the answer key, I'm just curious as to what I'm missing, then I can try to take it from there. Thanks!
 
Mathematics news on Phys.org
the circle equation is
(x-a)^2+(y-b)^2=r^2
Plug in each of the three (x,y) coordinate pairs, and you get 3 separate equations. The unknowns are a,b,r. Solve it.
 
krab said:
the circle equation is
(x-a)^2+(y-b)^2=r^2
Plug in each of the three (x,y) coordinate pairs, and you get 3 separate equations. The unknowns are a,b,r. Solve it.

You probably don't need this, but you also have the parametric equations of (x-a)^2+(y-b)^2=r^2 which can be written as:
rSin[t] - a; \ rCos[t] - b
as t goes from 0 to 2\pi

I may be wrong, so somebody double check it for me.
 
Ok, so for the three points you get:

(0-a)^2 + (0-b)^2 = r^2
(0-a)^2 + (8-b)^2 = r^2
(6-a)^2 + (0-b)^2 = r^2

But without knowing a & b, how do you solve for r?
 
You have three equations abd three unknowns. You can, for instance, eliminate r by equation the first two; this gives you one equation with only a and b. You do the same with the first and third equations and get a different equation with a and b. Then you have two new equations on a and b only, which you can solve.

Once you have a and b, you can substitute on one of the original three eqns to get r.
 
Hmmm.. I can see how I can do it for this equation since (0-a)^2 = a^2, so then you just take the square root of both sides to solve for a. But if you have (for example) (1-a)^2 = 1-2a+a^2, you can't just solve for a can you? You'd be left with a^2-2a = -1+-(rest of equation)
 
Play with them a little bit... when you eliminate r from first and second, you also eliminate a^2 and b^2[/color], so you only get a constant plus a term in b. Something similar happens combining the first and last eqns.
 
(0-a)^2 + (0-b)^2 = r^2
so (1) a^2+ b^2= r^2

(0-a)^2 + (8-b)^2 = r^2
so (2) a^2+ b^2-16b+ 64= r^2

(6-a)^2 + (0-b)^2 = r^2
so (3) a^2- 12a+ 36+ b^2= r^2

Subtracting 1 from 3, -12a+ 36= 0 or a= 3.

Subtracting 1 from 2, -16b+ 64= 0 or b= 4.

The a2+ b2= 9+ 16= r2
so r= 5.

Doesn't come any easier than that!
 
Ah.. I see.. I knew I had to set one equation equal to another and then reduce, but I didn't see the relationship between the three points. I'll crack open the book again when I get off work and try a few more of those problems. Thanks for the guidence!
 
  • #10
Ok.. I've reworked this, and I'm just about where I was at. Here's what my book shows as the general form of the circle with the following points (same as before):

Points: (0,0), (0,8), (6, 0)
Book Answer: x^2+y^2-6x-8y=0

When I work this, I get this:
(0-a)^2+(0-b)^2=r^2
a^2+b^2=r^2

(0-a)^2+(8-b)^2=r^2
a^2-b^2-16b+64=r^2

(6-a)^2+(0-b)^2=r^2
a^2+b^2-12a+36=r^2

a^2+b^2=a^2+b^2-16b+64
16b=64
b=4

a^2+b^2=a^2+b^2-12a+36
12a=36
a=3

(x-a)^2+(y-b)^2=r^2
(0-3)^2+(0-4)^2=r^2
r=5

(x-3)^2+(y-4)^2=5
x^2-3x-3x+9+y^2-4y-4y+16=5
x^2+y^2-6x-8y+20=0

As you can see, I'm slightly off, but I don't understand what I've done wrong. Any ideas where I strayed?

Thanks again for your help!
 
  • #11
Xavier said:
Ok, so for the three points you get:

(0-a)^2 + (0-b)^2 = r^2
(0-a)^2 + (8-b)^2 = r^2
(6-a)^2 + (0-b)^2 = r^2

But without knowing a & b, how do you solve for r?
I notice everyone takes the long way round. Here's a better way: Look at the first two equations. Don't multiply them out, just subtract them. You get 8-b=b, or b=4. Now do the same to equations 1 and 3. You get 6-a=a, or a=3. Plug these two result into equation 1 and you find r=5.
 
  • #12
Xavier said:
Ok.. I've reworked this, and I'm just about where I was at. Here's what my book shows as the general form of the circle with the following points (same as before):

Points: (0,0), (0,8), (6, 0)
Book Answer: x^2+y^2-6x-8y=0

When I work this, I get this:
...
(x-3)^2+(y-4)^2=5

As you can see, I'm slightly off, but I don't understand what I've done wrong. Any ideas where I strayed?

Thanks again for your help!

You've just made a silly mistake here, that's all (the radius squared is 25)
Besides, note the swift manipulation done by krab.
 
  • #13
Ah.. that's what happens when I work on this late at night. For some reason I figured it didn't need to be squared since I had already determined the radius, but it's clear now.

That is quite a bit simplier manipulation Krab. I've got a second problem I can try this out on, since I don't believe I did it correctly... I think I need a bigger eraser :)

Thanks for working through this with me. I appreciate it!
 
  • #14
Xavier said:
I'm attempting to write the general form of a circle where I'm given three points, not necessary equally distant from each other: (0,0), (0,8), (6,0)

I need to write the equation of the circle in general form. I've managed to get pretty close to what the answer in the book states, but I'm still off.

Since these points are not equally distant from each other, you can't use the midpoint formula (x1+x2)/2, (y1+y2)/2 to get the center of the circle. Is there another method I should be using to find the center so I can determine the radius, and then find the general form for the circle?

I'm not looking for the answer, I know what the book says in the answer key, I'm just curious as to what I'm missing, then I can try to take it from there. Thanks!
Another interesting method to use would be to find the equations of the lines that go through 2 of the points (only 2 lines are needed). So, for example, you find the equation of the line through (0,0) and (0,8) and the equation of the line (0,0) and (6,0). Then, you use midpoint formula and find the equation of the perpendicular bisector of each line. The interesection of the 2 perpendicular bisectors? The center of the circle.
 

Similar threads

  • · Replies 2 ·
Replies
2
Views
4K
  • · Replies 22 ·
Replies
22
Views
3K
  • · Replies 6 ·
Replies
6
Views
2K
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 3 ·
Replies
3
Views
2K
  • · Replies 6 ·
Replies
6
Views
1K
  • · Replies 11 ·
Replies
11
Views
7K
  • · Replies 4 ·
Replies
4
Views
2K
  • · Replies 4 ·
Replies
4
Views
2K
  • · Replies 1 ·
Replies
1
Views
1K