I was solving the following question,
Let $P = \begin{bmatrix}3 & 1\\1 & 3\end{bmatrix}$. Consider the set $S$ of all vectors $\begin{pmatrix}x\\y\end{pmatrix}$ such that $a^2 + b^2 = 1$ where $\begin{pmatrix}a \\ b \end{pmatrix} = P \begin{pmatrix}x \\y \end{pmatrix}$. Then $S$ is
- a circle of radius $\sqrt{10}$
- a circle of radius $\frac{1}{ \sqrt{10}}$
- an ellipse with major axis along $\begin{pmatrix}1 \\1 \end{pmatrix}$
- an ellipse with minor axis along $\begin{pmatrix}1 \\1 \end{pmatrix}$
On using the above conditions I'm getting the following equation $$ 10x^2 + 10y^2 + 12xy = 1 $$ which is equation of an ellipse, but I'm unable to get it's major and minor axises. I referred the answer given by "Fly by Night" here. He is saying to look at the matrix of quadratic form which I'm getting $$Q = \begin{bmatrix}10 & 6\\6 & 10\end{bmatrix}$$ with eigenvectors $v_1 = (1,1)$ and $v_2 = (-1, 1)$ Now, these two vectors $v_1$ and $v_2$ should be the axis of conic. Now the model matrix which diagonalizes $Q$ is simply the eigen vector matrix, so the model matri $P = \begin{bmatrix}-1 & 1\\1 & 1\end{bmatrix}$.
So, my question is how is the above procedure giving me angle of rotation of ellipse? And of course answer to my question which by the way if option (4). Quadratic form of matrix was not in my university syllabus so I'm finding it difficult to apply it.