Lesson A MUST-READ LESSON:Deriving the general equation of any Circle

Algebra ->  Algebra  -> Linear-equations -> Lesson A MUST-READ LESSON:Deriving the general equation of any Circle     (Log On)
Ad: Algebra Solved!™: algebra software that solves YOUR algebra homework problems with step-by-step help!

   

This Lesson (A MUST-READ LESSON:Deriving the general equation of any Circle) was created by by HyperBrain(501) About Me : View Source, Show
About HyperBrain: Please watch our music video at http://www.metacafe.com/watch/1101445/science_avenue/ rate and leave a comment

First, let us start with the most basic circle
CIRCLE WITH CENTER AT (0,0):
The equation of this circle is

_____________________________________x^2+y^2=r^2______________________________________________

where r= a parameter, equivalent to the length of the radius of the circle
drawing( 700, 700, <BR>
          -5, 5,<BR>
          -5, 5,<BR>
          grid(1),<BR>
          red( circle( 0, 0, 3 ) ),<BR>
          locate( 0, 0, X )<BR>
 )
You can see a circle with aradius of 3 and the center is at (0,0)
Looking at it, you can now write the equation of the circle.
_____________________________________x^2+y^2=9________________________________________________

NOTE: 9 is obtained from squaring th e radius----3^2=9

Something different happens if the center is not at the origin.
CIRCLES WITH CENTER AT (h,k):
You have seen a circle w/ a radius of 3 and center at (0,0). If we transfer the center to another place, it would not be the same.
To find the equation of the circle with the radius r at (h,k), let us see the following formula:
__________________________________(x-h)^2+(y-k)^2=r^2_________________________________________
Look at the different of 'version' of our circle with a radius of 3! Look below:
drawing( 700, 700, <BR>
          -7, 7,<BR>
          -7, 7,<BR>
          grid(1),<BR>
          red( circle( 3, -2, 3 ) ),<BR>
          locate( 3, -2, X )<BR>
 )

The center is mark with an x and found to be (3,-2)!
Knowing that the center of any circle is "formatted" to be (h,k), you will know that h=3 and -2!
Thus, the equation of our new circle is,
______________________________(x-3)^2+(y-(-2))^2=3^2__________________________________________
_________________________________(x-3)^2+(y+2)^2=9____________________________________________

Now, let's try to simplify the equation (x-h)^2+(y-k)^2=r^2
(x-h)^2+(y-k)^2=r^2
((x-h)(x-h))+(y-k)^2=r^2
(x(x-h)-h(x-h))+(y-k)^2=r^2
((x^2-hx)-(hx-h^2))+(y-k)^2=r^2
(x^2-hx-hx+h^2)+(y-k)^2=r^2
(x^2-2hx+h^2)+(y-k)^2=r^2
(x^2-2hx+h^2)+((y-k)(y-k))=r^2
(x^2-2hx+h^2)+(y(y-k)-k(y-k))=r^2
(x^2-2hx+h^2)+((y^2-ky)-(ky-k^2))=r^2
(x^2-2hx+h^2)+(y^2-ky-ky+k^2)=r^2
(x^2-2hx+h^2)+(y^2-2ky+k^2)=r^2
x^2-2hx+h^2+y^2-2ky+k^2=r^2
x^2+(-2hx)+h^2+y^2+(-2ky)+k^2=r^2
x^2+y^2+(-2hx)+(-2ky)+h^2+k^2=r^2
x^2+y^2-2hx-2ky+h^2+k^2=r^2
x^2+y^2-2hx-2ky+h^2+k^2-r^2=0

Please watch our music video at http://www.metacafe.com/watch/1101445/science_avenue/ rate and leave a comment

This lesson has been accessed 927 times.