Problem:
Given the equation $$5x^2 + 5y^2 - 6xy - 8 = 0$$ defining a non-degenerate conic section, find a rotation of the variables, such that the cross term $-6xy$ disappears in the new coordinates $(\bar x, \bar y)$.
Attempts:
Given the standard 2D rotation matrix $\textbf R$, I figured I'd invert it, and use that to find a way to get $\bar x \bar y = 0$.
That's where I'm stuck. I can't seem to find a way to do this, given $\textbf R^{-1} = \begin{bmatrix}\cos\theta & \sin\theta \\ -\sin\theta & \cos\theta\end{bmatrix}$.
Any tips?
define new variables $$x = x_1\cos t - y_1 \sin t , y = x_1 \sin t + y_1 \cos t$$ substituting in $5(x^2+y^2) - 6xy - 8= 0$ you get $$5(x_1^2 + y_1^2) - 6(x_1\cos t - y_1\sin t)(x_1\sin t + y_1 \cos t) - 8 = 0$$ which simplifies to $$x_1^2(5 - 6 \sin t \cos t) + y_1^2(5 +6\sin t \cos t)- 6x_1y_1(\cos^2 t - \sin ^2 t) - 8 = 0$$
you can eliminate the $x_1y_1$ term if you choose $t = 45^\circ$ which reduces the equation to the ellipse $$x_1^2 + 4y_1^2 = 4.$$
and if you choose $t = 135^\circ$ which reduces the equation to the ellipse $$4x_1^2 + y_1^2 = 4.$$