eigenvalues ​​and eigenvectors

127 Views Asked by At

Compute the eigenvalues ​​and eigenvectors of the following matrix T:

$$T =\begin{pmatrix} 1&4\\ 0&1 \end{pmatrix}$$

I have $(T-\lambda I)=0$ and from this I found $(\lambda -1)^2$, so $\lambda = 1$

But when I found eigenvectors, $\left( \begin{smallmatrix} 0&4\\ 0&0 \end{smallmatrix} \right)$ $\left( \begin{smallmatrix} X1\\ X2 \end{smallmatrix} \right)$ = $\left( \begin{smallmatrix} 0\\ 0 \end{smallmatrix} \right)$

X2 = 0

X1 can take any value.

Using WA I have two eigenvectors, (0,0) and (1,0) and the same eigenvalue λ=1. What I'm doing wrong? Any help is welcomed :)

2

There are 2 best solutions below

4
On BEST ANSWER

For any triangular matrix the coefficients on the diagonal are the eigenvalues of the given matrix. In our case the only eigenvalue is $1$ and the vector $(1,0)^T$ is an eigenvector associated to $1$. There isn't other linearly independent eigenvector since the matrix isn't diagonalizable.

0
On

As it ends up, this matrix has only the one eigenvalue ($\lambda = 1$) and the one dimensional eigenspace spanned by $\pmatrix{1&0}^T$. The $0$-vector is never considered an eigenvector.

Note that it is, in a sense, unusual for an $n \times n$ matrix to have fewer than $n$ linearly independent eigenvectors (which is why WA looks for a $2$nd eigenvector where there is none). However, it is possible, as this problem exemplifies. Matrices with fewer than $n$ linearly independent eigenvectors are non-diagonalizable.