Given the ellipse $$3x^2-x+6xy-3y+5y^2=0$$ find the following:
- semi-major axis, $a$
- semi-minor axis, $b$
- displacement of centre from origin (or coordinates of centre of ellipse $(h,k)$)
- angle of incline $\theta$ (or $\tan\theta$).
This can of course be done systematically by equating coefficients with
$$\frac{((x-h)\cos\theta-(y-k)\sin\theta)^2}{a^2}+\frac{((x-h)\sin\theta+(y-k)\cos\theta)^2}{b^2}=1$$
which is derived by applying the rotation and translation parameters to the standard ellipse equation. Perhaps someone could complete the solution?
Also, can it be solved in any other way, and in particular, without using trigonometric ratios?
(NB - this problem came about whilst trying to solve another problem on MSE here How to Solve this Arithmetic Progression Question? which gave rise to the Diophantine Equation above; assuming instead that $x,y$ can take on non-integer values the equation describes a rotated and translated ellipse)
To find the center, translate until the first degree terms vanish.
$$3(x+u)^2-(x+u)+6(x+u)(y+v)-3(y+v)+5(y+v)^2\to\\ 6u-1+6v=0,\\ 6u-3+10v=0.$$ The solution is $(-\frac13,\frac12)$, and the reduced equation $$3x^2+6xy+5y^2-\frac7{12}=0.$$
Then you need to diagonalize the quadratic coefficient matrix $$\begin{pmatrix} 3 & 3 \\ 3 & 5 \end{pmatrix},$$ with characteristic equation $$\lambda^2-8\lambda+6=0,$$ giving the Eigenvalues $4\pm\sqrt{10}.$
After diagonalization, $$(4-\sqrt{10})u^2+(4+\sqrt{10})v^2=\frac7{12},$$ giving the half-axis lengths $$\sqrt{\frac7{12(4-\sqrt{10})}}\text{, and }\sqrt{\frac7{12(4+\sqrt{10})}}.$$ The direction of the long axis is given by some Eigenvector associated to the small Eigenvalue, such as $(-3, \sqrt{10}-1)$, so the angle $$-\arctan\frac{\sqrt{10}-1}3.$$