Eigenvectors for shear matrix and diagonalizing.

4.1k Views Asked by At

Here is a shear matrix $ \begin{pmatrix} 1 && 0 \\ 2 && 1 \end{pmatrix}$.

The eigenvalues are 1. $ \lambda^2 - 2 \lambda + 1 \to \lambda = 1$.

So now I try to find the eigenvectors.

$ \begin{pmatrix} 1 -\lambda && 0 \\ 2 && 1-\lambda \end{pmatrix} \to \begin{pmatrix} 0 && 0 \\ 2 && 0 \end{pmatrix}$

$ \begin{pmatrix} 0 && 0 \\ 2 && 0 \end{pmatrix} \cdot \{x_1, x_2\}$

It looks like both eigenvectors are $ \{0, 0\}$.

But this is wrong! Mathematica reports the eigenvectors are $ \{0, 1\} $ and $ \{0, 0\} $. Where is this $ \{0, 1\} $ eigenvector coming from?

The problem gives a hint that you should think about the geometric action of the shear matrix and whether this matrix is diagonalizable or not. I have no clue how that's relevant. Why is it?

2

There are 2 best solutions below

0
On BEST ANSWER

If you evaluate this

$ \begin{pmatrix} 0 && 0 \\ 2 && 0 \end{pmatrix} \cdot \{x_1, x_2\}=0$

You get that $x_1 = 0$ and $x_2$ can be anything. Therefor any vector with $x_1 = 0$ is an eigenvector including $\{0, 1\}$ and any multiple of it (they all point in the same direction).

1
On

Look at the second column of the given matrix. The column is $v=(0,1)^T$ and this mean that $Av=v$ so $v$ is an eigenvector associated to the eigenvalue $1$.

Since this matrix isn't diagonalizable then the eigenspace relative to the eigenvalue $1$ has the dimension $1$ and it's spanned by $v$.