Graphing a Circle that Doesn’t Intersect the Pole

algebra-precalculuscirclespolar coordinates

I am trying to graph a circle using a polar equation that does not intersect the pole. For example the rectangular equation would be $(x-3)^2+(y+2)^2=1$

If I use the usual way to transform this into a polar equation I end up with the equation $r^2=-12+6\cos\theta-4\sin\theta$, and if I take the square root of both sides I get r equal to an imaginary number which can't be graphed in the real plane. Any suggestions for another way to do this?

Best Answer

I assume that you replaced $x$ with $r \cos \theta$ and $y$ with $r \sin \theta$ in the equation $(x-3)^2 + (y+2)^2 = 1$ to get $r^2 = -12 + 6 \cos \theta - 4 \sin \theta$. Since $\cos \theta$ and $\sin \theta$ take values between -1 and 1, that implicitly assumes that the circle is centered around the origin, whereas your circle is centered around (3,-2). The correct set of polar equations is $$ \begin{cases} x = \cos \theta + 3 \\ y = \sin \theta - 2 \end{cases} $$

In general, for an equation $(x-x_c)^2 + (y-y_c)^2 = r^2$, the corresponding set of polar equations is $$ \begin{cases} x = r \cos \theta + x_c \\ y = r \sin \theta + y_c \end{cases} $$

Related Question