eigen values and vectors in this question

48 Views Asked by At

I have the following matrix to be solved for landa. here is the matrix with my answer (sorry for the wrong equation writing format):

enter image description here

but the correct equation from this matrix should be (when simplified):

enter image description here

Please explain what I'm doing wrong

3

There are 3 best solutions below

0
On BEST ANSWER

Laplace development with respect to the first row: \begin{align} \det\begin{bmatrix} 1-\lambda & 1 & 0 \\ 1 & -\lambda & -1 \\ -1 & 0 & 1-\lambda \end{bmatrix} &= (1-\lambda)\det\begin{bmatrix} -\lambda & -1 \\ 0 & 1-\lambda \end{bmatrix} - \det\begin{bmatrix} 1 & -1 \\ -1 & 1-\lambda \end{bmatrix} \\ &=-\lambda(1-\lambda)^2-(1-\lambda-1)\\ &=-\lambda(1-\lambda)^2+\lambda\\ &=\lambda(1-1+2\lambda-\lambda^2)\\ &=\lambda^2(2-\lambda) \end{align}

2
On

Your centre matrix component should be $-\lambda $ not $\lambda $

Then you would get:

$-\lambda (1-\lambda)^2-(1-\lambda-1)=-\lambda (\lambda^2-2\lambda)=0$

Thus $\lambda^2(2-\lambda)=0$

0
On

There is a sign error with $a_{22}$ as it should be negative.

We have:

$$(1-\lambda)(-\lambda(1-\lambda))-(1(1-\lambda)-1) = -\lambda^3 + 2 \lambda^2 = \lambda^2(2-\lambda) = 0$$