Given this problem:
$$maximize \, \, x^T\begin{bmatrix} 3 & 4 \\ 0 & 3 \end{bmatrix}x $$
$$ subject \,to \, \, ||x||^2 = 1$$
I want to solve this using Langrange Conditions. What I wish to do is find the eigenvalues of a symmetric matrix $Q$, and the corresponding eigenvectors to maximize this problem.
In the solution material the textbook author rewrites the matrix: $\begin{bmatrix} 3 & 4 \\ 0 & 3 \end{bmatrix} $ into $ Q = \begin{bmatrix} 3 & 2 \\ 2 & 3 \end{bmatrix}$ , where $Q^T = Q$. How and why can one do this?
(Afterwards one can calculate the eigenvalues of $Q$ and find the corresponding eigenvectors)
Thank you.