I'm trying to follow along with this: https://dandavison.github.io/fibonacci-eigenbasis.html
And I'm getting stuck on what's presumably very basic algebra. The step that's giving me trouble is going from: $$ \frac{-1}{2\sqrt5} \begin{bmatrix} -5-\sqrt5 & 0 \\ 0 & 5-\sqrt5 \\ \end{bmatrix} $$ to: $$ \frac{1}{2} \begin{bmatrix} 1+\sqrt5 & 0 \\ 0 & 1-\sqrt5 \\ \end{bmatrix} $$
the closest i can get is: $$ \frac{1}{2} \begin{bmatrix} 5(1+\sqrt5) & 0 \\ 0 & 5(1-\sqrt5) \\ \end{bmatrix} $$ and I don't understand how the extra factor of 5 comes out. What am I missing here?