Circle in cartesian and polar
I have a circle whose center is at point (5,-2) and goes through (1,1)
Circle formula: ^2+(y-k)^2=r^2)
h=5
k=-2
^2+y_1-y_2)^2))
^2+(-2-1)^2))
=5)
so,
^2+(y+2)^2=25)
I can't tell for sure if this passes through (1,1) or not from the wolfram graph but looks pretty close.
For polar I'm not sure how to approach this so this is my attempt:
= 
= 
making the substitutions for x and y:
= )^2-10rcos(\theta)+(rsin(\theta))^2+4rsin(\theta)=-4)
not sure what to do here on out
thanks for help
Re: Circle in cartesian and polar
Hello, Bowlbase!
To convert to polar coordinates, I'd do it like this . . .
^2 + (r\sin\theta - k)^2 \;=\;25 \\ \\ r^2\cos^2\!\theta - 2rh\cos\theta + h^2 + r^2\sin^2\!\theta - 2rk\sin\theta + k^2 \;=\;25 \\ \\ r^2\underbrace{(\cos^2\!\theta + \sin^2\!\theta)}_{\text{This is 1}} - 2r(h\cos\theta + k\sin\theta) + h^2 + k^2 \;=\;25 \\ \\ r^2 - 2(h\cos\theta + k\sin\theta)r + (h^2+k^2- 25) \;=\;0 \end{array})
You can use the Quadratic Formula to solve for
. . . but it's pretty ugly!
Re: Circle in cartesian and polar
OK, I didn't even think of putting in sin/cos before expanding. That makes it more straight forward than what I was trying to do. Especially with the substitution of h,k last.. it makes it easier to follow.
That helped a lot so thanks a bunch!