How would I plot $r^2 = 36\cos(2\phi)$ in $x$ and $y$ coordinate system?
I know that $r^2 = x^2 + y^2$, and I know that $x = r\cos(\phi)$ and $y = r\sin(\phi)$. However I'm not sure how to proceed.
I get $x^2 + y^2 = 36\cos(2\phi)$. But what next?
I know circle equation $x^2 + y^2 = constant$, but my equation has a non constant on the right hand side.
Any suggestions and ideas appreciated. :)
Edit: I'm adding 100 reputation bounty to anyone who could answer my post and show how to plot this function on paper step by step.
In particular I know how to plot $y = f(x)$, but this function is completely different beast, it has both x and y quadratic.
Any help would be appreciated. I'm learning about polar coordinates.





$ cos^2(\phi) - sin^2cos(\phi) = cos(2 \phi) $
$ x^2 + y^2 = 36 \frac{( x^2 - y^2)}{ (x^2 + y^2)} $
$ (x^2 + y^2 )^2 = 36 (x^2 - y^2) $
– Alan Sep 29 '14 at 21:19ordinary plot $y = \pm \sqrt{6\sqrt{2x^2+9}-x^2-18}$
plot sqrt(6*Sqrt(2*x^2+9)-x^2-18) for x = -6 to 6polar plot $r = \sqrt{36\cos(2t)}$
polar plot r = sqrt(36*cos(2t)) for t = -Pi to Piparametric plot $(x,y) = (\sqrt{36\cos(2t)}\cos t,\sqrt{36\cos(2t)}\sin t)$
– achille hui Oct 01 '14 at 23:53parametric plot sqrt(36*cos(2t))*cos(t), sqrt(36*cos(2t))*sin(t) for t = -Pi to Pi