Converting from set of Cartesian equations to Polar Equation

559 Views Asked by At

Is it possible to convert the set of Cartesian equations:

$$x(t) = (20-30)*\cos(2t)+45*\cos(2t*(20-30)/20))$$ $$y(t) = (20-30)*\sin(2t)+45*\sin(2t*(20-30)/20))$$

where

$$t \in [0,2\pi)$$

Into a single Polar-Coordinates equation, so that $f(\theta) = r$?

If so, how?

2

There are 2 best solutions below

0
On BEST ANSWER

We know that

$$r=\sqrt[]{x^2+y^2}.$$

Since you have equations for $x$ and $y$ in terms of the angle $t$, you can use the above formula to find a function of $t$ that gives $r$.

3
On

Your expressions simplify to $$x(t)=45 \cos (t)-10 \cos (2 t)$$ $$y(t)=-45 \sin (t)-10 \sin (2 t)$$ So, since $$r^2(t) = x^2(t) + y^2(t)$$ after some minor expansions and simplifications, you should arrive to $$r^2(t)=2125-900 \cos (3 t)$$ and then ...