Given a matrix A
$ A = \begin{bmatrix} 5 & 4 & -1 \\ 4 & 5 & -1 \\ -4 & -4 & 2 \\ \end{bmatrix} $
I have to find out if A is diagonalizable or not. Also I have to write down the eigen spaces and their dimension.
For eigenvalue, $ \lambda = 1 $ , I found the following equation:
$ x_1 + x_2 - \frac{x_3}{4} = 0 $
Here, I have two free variables. $ x_2 $ and $ x_3 $. I'm not sure but I think the the number of free variables corresponds to the dimension of eigenspace and setting once $ x_2 = 0 $ and then $ x_3 = 0 $ will compute the eigenspace.
Any detailed explanation would be appreciated.