I am given the following: $$ x'= \begin{bmatrix} 2 &0 &0 \\ -7&9 &7 \\ 0&0 &2 \end{bmatrix} x $$
Solving $\det(A-\lambda I)$, I get $\lambda = 2,2,9$. Solving $\det(A-2\lambda)$, I get \begin{bmatrix} 0&0 &0 \\ -7&7 &7 \\ 0&0 &0 \end{bmatrix} So we have geom multi. = alg. multi, so our matrix is complete.
Take $v_1 = \begin{bmatrix} 1\\ 1\\ 0 \end{bmatrix} $
Similarly, solve $\det(A-9\lambda)$ to get $ \begin{bmatrix} -7&0 &0 \\ -7&0 &7 \\ 0&0 &-7 \end{bmatrix} $ So take $v_2 = \begin{bmatrix} 0\\ 1\\ 0 \end{bmatrix} $
So the general solution should be $x(t) = C_1e^{2t}\begin{bmatrix} 1\\ 1\\ 0 \end{bmatrix} +C_2e^{2t} \begin{bmatrix} 1\\ 1\\ 0 \end{bmatrix} + C_3e^{9t}\begin{bmatrix} 0\\ 1\\ 0 \end{bmatrix}$
However, according to the back of the book solution, this is incorrect. What am I missing here? Thank you.
You are right that $v_1 = \begin{pmatrix} 1 \\ 1 \\ 0 \end{pmatrix}$ is an eigenvector of $A$ with eigenvalue $2$; i.e $ v_1 \in \ker(A-2I)$. But like you mentioned, the dimension of this kernel is $2$, so you need to find another linearly independent eigenvector. It is easy to verify that $\xi = \begin{pmatrix} 1 \\ 0 \\ 1 \end{pmatrix} $ is such a vector. In other words, $\{v_1, \xi\}$ form a basis for $\ker(A-2I)$. Hence, your general solution will be \begin{equation} x(t) = C_1 e^{2t} \begin{pmatrix} 1 \\ 1 \\ 0 \end{pmatrix} + C_2 e^{2t} \begin{pmatrix} 1 \\ 0 \\ 1 \end{pmatrix} + C_3 e^{9t} \begin{pmatrix} 0 \\ 1 \\ 0 \end{pmatrix} \end{equation}