General Form of Circle Equation

  • Context: Undergrad 
  • Thread starter Thread starter Xavier
  • Start date Start date
  • Tags Tags
    Circle Form General
Click For Summary

Discussion Overview

The discussion revolves around finding the general form of a circle given three specific points: (0,0), (0,8), and (6,0). Participants explore methods to determine the center and radius of the circle, as well as how to derive the equation from these parameters. The conversation includes both theoretical approaches and practical problem-solving techniques.

Discussion Character

  • Exploratory
  • Technical explanation
  • Mathematical reasoning
  • Debate/contested

Main Points Raised

  • One participant suggests using the general circle equation (x-a)² + (y-b)² = r² and plugging in the three given points to create a system of equations to solve for the unknowns a, b, and r.
  • Another participant points out that without knowing a and b, it is challenging to solve for r directly from the equations derived from the points.
  • Some participants discuss eliminating r by equating different pairs of equations to derive relationships between a and b.
  • One participant proposes a method involving the equations of lines through two of the points and finding the perpendicular bisectors to locate the center of the circle.
  • Several participants express uncertainty about specific algebraic manipulations and the implications of squaring terms in their equations.
  • A later reply highlights a mistake in the radius calculation, emphasizing the importance of correctly squaring the radius value.

Areas of Agreement / Disagreement

Participants generally agree on the approach of using the circle equation and deriving relationships between the variables. However, there are differing opinions on the best methods to simplify the equations and the algebra involved, indicating that the discussion remains somewhat unresolved.

Contextual Notes

Some participants note the complexity of the algebra involved and the potential for errors in manipulation, particularly when squaring terms or eliminating variables. There is also mention of the dependence on the specific points chosen and how they affect the calculations.

Who May Find This Useful

This discussion may be useful for students or individuals interested in geometry, specifically in understanding how to derive the equation of a circle from given points and the algebraic techniques involved in solving such problems.

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
5K
  • · Replies 14 ·
Replies
14
Views
2K
  • · Replies 6 ·
Replies
6
Views
2K
  • · Replies 22 ·
Replies
22
Views
4K
  • · Replies 6 ·
Replies
6
Views
2K
  • · Replies 3 ·
Replies
3
Views
2K
  • · Replies 4 ·
Replies
4
Views
2K
  • · Replies 11 ·
Replies
11
Views
8K
  • · Replies 4 ·
Replies
4
Views
2K
  • · Replies 3 ·
Replies
3
Views
3K