I am watching a video on SVD where the instructor is solving the the nullspace of
$$\begin{bmatrix}26 & 18\\\ 18 & 74\end{bmatrix}$$ wich has the Eigen values $\lambda_1 = 20$ and $\lambda_2 = 80$
When he solves for these I believe he made an error and I am struggling to see if I made the error. My answers are reversed: For $\lambda_1$ my Eigen vector is $\begin{bmatrix} 1/\sqrt{10} \\ -3/\sqrt{10} \end{bmatrix}$ and $\lambda_2$ my Eigen vector is $\begin{bmatrix} 3/\sqrt{10} \\ 1/\sqrt{10} \end{bmatrix}$
And so my overall Eigen matrix would be:
$$\begin{bmatrix} 1/\sqrt{10} && 3/\sqrt{10} \\ -3/\sqrt{10} && 1/\sqrt{10}\end{bmatrix}$$
But they get:
I am sure I am wrong, but where am I wrong?
EDIT:
To show my work on the first Eigen value of 20 we solve for:
$$\begin{bmatrix} 6 && 18 \\ 18 && 54 \end{bmatrix}$$
which gives
$$\begin{bmatrix} 1 && 3 \\ 0 && 0 \end{bmatrix}$$
Solving for $x_1$ and $x_2$ we get:
$$x_1 + 3x_2 = 0$$


Based on the update, we can see what’s going wrong with your calculations. From $x_1+3x_2=0$ we have $x_1=-3x_2$. Remember that in the equation $(A-\lambda I)\mathbf x=0$ that you’re solving $\mathbf x=(x_1,x_2)$. If you substitute for $x_1$ in this, you end up with $(-3x_2,x_2)$. You appear to have done this backwards and substituted $-3x_2$ for $x_2$ instead, perhaps because the term involved $x_2$.