How to convert dynamical system to polar coordinates?

8k Views Asked by At

I have a dynamical system on the plane given by $$\dot{x}=-y+x\left(1-\sqrt{x^2+y^2}\right)\\ \\ \dot{y}=y+x\left(1-\sqrt{x^2+y^2}\right)$$

I want to convert this into polar coordinates as it will be easier for the question I am attempting to solve (it gives a hint to convert this into polar coordinates).

Problem is I don't know how to do this I know all the relations for polar coordinates to relate it to Cartesian coordinates for example I know the bit in the bracket would be $(1-r)$ but I don't know what $\dot{x}$ would and how to convert it into polar coordinates.

Any help?

1

There are 1 best solutions below

0
On

I suggest that you try to understand how it works in general.

$1)$ From $x',y'$ to $r',\theta'$: $$ r' = \left(\sqrt{x^2 +y^2} \right)' = \frac{(x^2 +y^2)'}{2 \sqrt{x^2 +y^2}}=\frac{xx' +yy'}{r} $$ and $$ \theta' = \left(\arctan \frac{y}{x} \right)' = \frac{(y/x)'}{1+(y/x)^2} = \frac{y' x -x' y}{r^2}. $$

Now in the other direction.

$2)$ From $r',\theta'$ to $x',y'$: $$ x'= (r\cos\theta)'=r' \cos \theta -r \theta' \sin \theta $$ and $$ y'= (r\sin\theta)'= r' \sin \theta + r \theta' \cos \theta . $$

After understanding this you can proceed on your own.