I have $x' = A x$ system. The matrix $A$ is $3\times 3$. Repeated eigenvalue $\lambda=1$ of multiplicity $3$. There are two "normal" eigenvectors associated with this $\lambda$ (i.e. each of rank 1) say $v_1,v_2$, so defect is 1.
I need to find a third generalized eigenvector $v_3$ (which will be of rank 2).
All the methods in the textbook I tried fail for this one example to find $v_3$. (They do work for many other examples, but not for this one below). I tried
- Solving for $v_3$ from $ (A-\lambda I) v_3 = v_2$. Does not work, since inconsistent system
- Solving for $v_3$ from $ (A-\lambda I) v_3 = v_1$. Does not work, since inconsistent system
- Solving for $v_3$ from linear combination of $v_1,v_2$. Hence solving $(A-\lambda I) v_3 =\alpha v_1 + \beta v_2$ for $v_3$ where $\alpha,\beta$ are constants to be found. This also did not work to find $\alpha,\beta$. inconsistent system.
What other methods are there that guarantee finding third eigenvector for this case? I am only asking here about $\lambda$ of multiplicity $3$ and defect of $1$. i.e. have two normal eigenvectors and need to find missing third one (generalized one).
Here is the $A$ matrix which shows this problem. $$ A=\left[\begin{array}{ccc} 1&0&0\\ 1&3&1\\-2&-4&-1\end{array}\right] $$ The eigenvalue is $\lambda=1$ and the two normal vectors found are $$ v_1=\left[\begin{array}{c}-1\\0\\1\end{array}\right] $$ $$ v_2=\left[\begin{array}{c}-2\\1\\0\end{array}\right] $$
The above values are correct, checked on the computer.
