Rotation of plane curves

398 Views Asked by At

Given the curve $y^2 = x^3 - 10x + 10$, which looks like this:

enter image description here

Is there any way to prove whether or not there exists an equation of an algebraic curve such that its graph would correspond to a rotation of the above given curve, e.g., the rotation about the origin (please forgive my Paint skills):

enter image description here

Mostly, I'm looking for a way to only simply study whether there is any way to make sense of the above question, so as to see whether there exists an equation which corresponds to the rotated curve. Is there any specific concepts I could begin studying to approach the question? Thank you!

2

There are 2 best solutions below

11
On BEST ANSWER

Let the $2D$ curve's equation be $g(x,y) = 0$. Note that rotation about the origin in $2D$ is the same as rotation about the $z$-axis in $3D$.

Rotation about $z$-axis: Let $R_{z,\theta}$ denote the rotation matrix for a rotation of angle $\theta$ about the z-axis and let $(x',y',z')^T := R_{z,\theta} (x_0,y_0, 0)^T$.

$ \begin{align*} R_{z,\theta} = \begin{pmatrix} \cos \theta & - \sin \theta & 0 \\ \sin \theta & \cos \theta & 0 \\ 0 & 0 & 1 \\ \end{pmatrix} &\Rightarrow \begin{cases} x' &= (\cos \theta) x_0 - (\sin \theta) y_0 \\ y' &= (\sin \theta) x_0 + (\cos \theta) y_0 \\ z' &= 0 \end{cases} \\ &\Rightarrow \begin{cases} x_0 &= (\cos \theta) x' + (\sin \theta) y' \\ y_0 &= - (\sin \theta) x' + (\cos \theta) y' \\ 0 &= z' \end{cases} \end{align*} $

So on rotating the curve $g(x,y) = 0$ around the $z$-axis by angle $\theta$, the equation of the curve we get is: $$g((\cos \theta) x' + (\sin \theta) y', - (\sin \theta) x' + (\cos \theta) y') = 0$$ We can't eliminate $\theta$ from this equation to get a single equation for the curve formed by rotating $g(x,y) = 0$ by $2\pi$ in this case.

3
On

If you want to rotate your curve cut out by $f(x,y)$ by an angle $\theta$ around the origin, then you want to make a linear change of coordinates by letting $x_{old}=x_{new}\cos(-t)-y_{new}\sin(-t)$ and $y_{old}=x_{new}\sin(-t)+y_{new}\cos(-t)$. It's immediately apparent that the curve you get is also algebraic, with equation $f(x_{new}\cos(-t)-y_{new}\sin(-t),x_{new}\sin(-t)+y_{new}\cos(-t))$.