0

$\begin{bmatrix} 1 & 0 & 0 & 1 \\ 0 & 1 & 1 & 0 \\ 0 & 1 & 1 & 0 \\ 1 & 0 & 0 & 1 \\ \end{bmatrix}$

tried to find Eigen value for this matrix $\begin{bmatrix} 1-\lambda & 0 & 0 & 1 \\ 0 & 1-\lambda & 1 & 0 \\ 0 & 1 & 1-\lambda & 0 \\ 1 & 0 & 0 & 1-\lambda \\ \end{bmatrix}$ and got $\lambda^4-4\lambda^3+6\lambda^2-4\lambda$
so $\lambda(\lambda^3-4\lambda^2+6\lambda-4)$
but I tried to factorize $\lambda^3-4\lambda^2+6\lambda-4$ got $(\lambda-2)<br>\lambda^2-2\lambda+2$ and cannot factorize $\lambda^2-2\lambda+2$ .
is my calculation wrong? thanks!!

fiksx
  • 1,059

7 Answers7

3

By permuting columns and rows you can immediately see the following: $$ \det\begin{pmatrix} 1-λ & 0 & 0 & 1 \\ 0 & 1-λ & 1 & 0 \\ 0 & 1 & 1 - λ & 0 \\ 1 & 0 & 0 & 1 - λ \end{pmatrix} = \det\begin{pmatrix} 1-λ&1&0&0\\ 1&1-λ&0&0\\ 0&0&1-λ&1\\ 0&0&1&1-λ \end{pmatrix} = \det\begin{pmatrix} 1-λ&1\\ 1&1-λ \end{pmatrix}^2 = ((1-λ)^2 - 1)^2 = (λ^2 - 2λ)^2 = λ^2(λ-2)^2 $$

user87690
  • 9,133
  • thanks but I don't understand what permuting columns and row here? do you exchange it? – fiksx Nov 28 '17 at 17:27
  • By permuting rows or columns of a matrix, the determinant is multiplied by $1$ or $-1$ depending on the sign of the permutation. Here we used $(2\ 3\ 4)$ on both row and columns, but it is an even permutation so the determinant does not change. – user87690 Nov 28 '17 at 17:34
  • in first column, how did you convert it to $(1 1-\lambda 0 0)$? – fiksx Nov 28 '17 at 18:00
  • As I said, by cycling the last three columns and then cycling the last three rows. – user87690 Nov 28 '17 at 18:25
2

as the matrix has rank=2 you have: $$\lambda_1=\lambda_2=0$$

in this case you can easily find the 2 no trivial eigenvectors by inspection

$$e_3=(1,0,0,1)$$ $$e_4=(0,1,1,0)$$

at which correspond the following eigenvalues:

$$\lambda_3=2$$ $$\lambda_4=2$$

user
  • 154,566
  • hello thanks, so I mean did you try to reduced the matriks to row echelon form? and also convert it to diagonal matrix, and the diagonal matrix is the Eigen value. ? – fiksx Nov 28 '17 at 17:54
  • That the matrix has rank=2 is immediate because row1=row4 and row2=row3, thus you must have 2 null eigenvalues. From inspection its easy in this case to find the other 2 eigenvectors and the corresponding eigenvalues not equal to $0$. It is not a general method but it is important to recognize these simpler cases. – user Nov 28 '17 at 18:01
  • thanks, I got that the rank is two and row 3 and 4 is null, but how to find $\lambda_3 =2 and \lambda_4=2$? – fiksx Nov 28 '17 at 18:12
  • what do you mean with "row 3 and 4 is null"? To find $\lambda_3$ and $\lambda_4$, from the definition of eigenvalues: $Ae_3=2e_3=\lambda_3e_3$ and $Ae_4=2e_4=\lambda_4e_4$ – user Nov 28 '17 at 18:15
  • ok so using $Ax=\lambda x$, did you get the Eigen value by substituted one of Eigen vector as x? and null space here means, that there are 2 null Eigen value , and the geometric multiplicities of Eigen value will be two ? – fiksx Nov 28 '17 at 18:49
  • @Vixf yes exactly! – user Nov 28 '17 at 18:51
  • thanks but there is problem that i need to find the Eigen value first in order to find the Eigen vector, so for problem like this ,is it better to solve it using cofactor expansion method to find determinant? – fiksx Nov 28 '17 at 18:58
  • yef of course, but believe me, it's important that you recognize these simpler case to check the results :) – user Nov 28 '17 at 19:03
  • @gemusi okay thankyou so much :)!!! – fiksx Nov 29 '17 at 09:17
  • @gemusi sorry can i ask again,can you explain how did you get the eigen vector ? row 3 and row 4 will be all zero, so there is only row 1 and row 2, then did you use Ax=0 to find the eigen vector? – fiksx Nov 30 '17 at 16:47
2

I will just point out that it is quite easy to notice that:

  • $(1,0,0,-1)A=(0,1,-1,0)A=0$
  • $(1,0,0,1)A=(2,0,0,2)$ and $(0,1,1,0)A=(0,2,2,0)$

So with a bit of guesswork we can see that $0$ and $2$ are eigenvalues of (geometric) multiplicity two. (I think that since this is a very simple matrix with several symmetries, it is not that difficult to spot at least some eigenvector for these eigenvalues.)

Looking at some of those eigenvectors can also give you a reasonable idea which row operations could be used to calculated the charateristic polynomials. For example:

$$\det\left(\begin{array}{cccc} 1-\lambda& 0 & 0 & 1 \\ 0 & 1-\lambda & 1 & 0 \\ 0 & 1 & 1-\lambda & 0 \\ 1 & 0 & 0 & 1-\lambda \end{array}\right)= \det\left(\begin{array}{cccc} 2-\lambda& 0 & 0 & 2-\lambda \\ 0 & 2-\lambda & 2-\lambda & 0 \\ 0 & 1 & 1-\lambda & 0 \\ 1 & 0 & 0 & 1-\lambda \end{array}\right)= (2-\lambda)^2\det\left(\begin{array}{cccc} 1 & 0 & 0 & 1 \\ 0 & 1 & 1 & 0 \\ 0 & 1 & 1-\lambda & 0 \\ 1 & 0 & 0 & 1-\lambda \end{array}\right)= (2-\lambda)^2\det\left(\begin{array}{cccc} 1 & 0 & 0 & 1 \\ 0 & 1 & 1 & 0 \\ 0 & 0 & -\lambda & 0 \\ 0 & 0 & 0 & -\lambda \end{array}\right)=(2-\lambda)^2\lambda^2$$

  • thanks got it! just want to ask one thing , if i want to use method cofactor expansion, can i reduce the matrix using row operation first then apply the cofactor expansion? will it change the matrix value? – fiksx Nov 29 '17 at 09:16
  • and one more thing $(1,0,0,-1)A=(0,1,-1,0)A=0$ , how did you notice this? – fiksx Nov 29 '17 at 09:20
  • @Vixf You can find details about effect of elementary row operations, for example, on ProofWiki and there is something even on this site: Effect of elementary row operations on determinant? – Martin Sleziak Nov 29 '17 at 12:12
  • thanks, but im just wondering, the usual procedure is to find characteristic polynomial, but here can you explain to me what do you mean by "quite easy to notice", in this problem, how could you notice the eigen vector without finding characteristic polynomial first? did you reduce the matrix to row echelon first and got the eigen vector? – fiksx Nov 30 '17 at 17:07
  • @Vixf No, I just look at the matrix and noticed that if I subtract fourth row from the first one, I get zero. Similarly, you can notice that if you add the first and the fourth row, you get $2(1,0,0,1)$. Or, if this is easier to see, just look what happens if you look at sum of all rows. (If you are used to work with column vectors, you should look at columns instead. But since the matrix is symmetric, this does not make any difference.) – Martin Sleziak Nov 30 '17 at 17:09
  • yes i mean, $\begin{bmatrix} 1 & 0 & 0 & 1 \ 0 & 1 & 1 & 0 \ 0 & 0 & 0 & 0 \ 0 & 0 & 0 & 0 \ \end{bmatrix}$ i got this after substract third and fourth row from first and second row, but is this automatically become eigen vector(?) i see that the scalar is 2 and if i sum up the trace total will be 4, but how can i find the eigen vector without finding $\lambda$ first – fiksx Nov 30 '17 at 17:27
1

Check your determinant calculation. I get $\lambda^4 - 4 \lambda^3 + 4 \lambda^2$, giving the eigenvalues $0$, $0$, $2$, and $2$.

Eric Towers
  • 67,037
0

Let \begin{equation} A-\lambda I = \begin{bmatrix} 1-\lambda & 0 & 0 & 1 \\ 0 & 1-\lambda & 1 & 0 \\ 0 & 1 & 1-\lambda & 0 \\ 1 & 0 & 0 & 1-\lambda \\ \end{bmatrix} \end{equation} Then \begin{equation} \det(A-\lambda I) = [(1-\lambda)^2-1]^2 \end{equation} Thus the eigenvalues are $\lambda = 0, 2$ with multiplicity 2. To be more precise, computing the determinant based on the first column gives \begin{align} \det(A-\lambda I) &= (1-\lambda)\det \begin{bmatrix} 1-\lambda & 1 & 0 \\ 1 & 1- \lambda & 0 \\ 0 & 0 & 1-\lambda \end{bmatrix} - \det \begin{bmatrix} 0 & 0 & 1 \\ 1-\lambda & 1 & 0 \\ 1 & 1-\lambda & 0 \end{bmatrix} \\ &=(1-\lambda)\{(1-\lambda)[(1-\lambda)^2-1]\} -[(1-\lambda)^2-1]\\ &=[(1-\lambda)^2-1]^2 \end{align}

For your convenience, let me compute the 3x3 matrix determinant. \begin{align} \det \begin{bmatrix} 1-\lambda & 1 & 0 \\ 1 & 1- \lambda & 0 \\ 0 & 0 & 1-\lambda \end{bmatrix} &= (1-\lambda) \det \begin{bmatrix} 1-\lambda & 0 \\ 0 & 1-\lambda \end{bmatrix} - 1 \cdot \det \begin{bmatrix} 1 & 0 \\ 0 & 1-\lambda \end{bmatrix} \\ &= (1-\lambda)(1-\lambda)^2 - (1-\lambda) = (1-\lambda)[(1-\lambda)^2-1] \end{align}

induction601
  • 1,944
0

The matrix can be written $A=B+I$. Then $B$ is a permutation matrix corresponding to the permutation $(14)(23)$ and so $B^2=I$. Since $B\ne I$ and $B\ne -I$, the minimal polynomial of $B$ must be $X^2-1$. Hence, the eigenvalues of $B$ are $-1$ and $1$ and so the eigenvalues of $A$ are $-1+1$ and $1+1$, or $0$ and $2$.

It easy to see that the characteristic polynomial of $B$ is $(X^2-1)^2$ and so both eigenvalues of $B$ have multiplicity $2$ and so do the eigenvalues of $A$.

lhf
  • 216,483
0

You may try a simpler method, like Hamilton Caley method by using the traces:

$$\text{det}A = \frac{1}{24}\left\{(\text{tr} A)^4 - 6(\text{tr}A)^2\text{tr}(A^2) + 3(\text{tr}(A^2))^2 + 8\text{tr}(A^3)\text{tr}A - 6\text{tr}(A^4)\right\}$$

Anyway, as eigenvalues I got:

$$\{2; 2; 0; 0\}$$

Enrico M.
  • 26,114