Repeated Eigen Values and their Eigen Vectors

In summary, the conversation involves finding all eigenvalues and eigenvectors for a given matrix. The eigenvalues are calculated to be λ1 = 1, λ2 = 1, λ3 = (1/2)(-1 + √3i), and λ4 = (1/2)(-1 - √3i). The only eigen vector mentioned is V2 (0, 0, 0, 0), which is not a valid eigenvector. The correct eigen vector is determined to be <2, 1, 1, 1>. There is some confusion and discussion about repeated roots and the importance of not including the zero vector as an eigenvector.
  • #1
blondii
31
0
I have a matrix and can't seem to get my head around finding all the eigen vectors.

The matrix is A:

(1 0 0 0
1 0 0 1
0 1 0 0
0 0 1 0)

I got the eigen values as:
λ1 = 1, λ2 = λ3 = λ4 = 0

For λ1:

The eigen vector V1 is (0, 1, 1, 1).

For λ2 -> λ4:

The only eigen vector I could make out is: V2 (0, 0, 0, 0).

To calculate the remaining eigen vectors I solved for P using the formula (A-λI)P = K
Where K is an eigenvector of the matrix A associated with the eigenvalue (In this case V2). But substituting λ2 and V2 into the equation will only lead back again to the same equation which I don't think is correct. Is there a better method I can follow or is there something I am not doing correctly?

Thanks
 
Physics news on Phys.org
  • #2
One of your eigenvalues is 3-fold degenerate.
This means that the system of equations is not independent.
To get three distinct eigenvectors you need to add an additional contraint that they be orthogonal.

http://mathworld.wolfram.com/Eigenvalue.html
... scroll down to "degenerate".

Hmmm ... I'm getting:
Code:
octave:2> A
A =

   1   0   0   0
   1   0   0   1
   0   1   0   0
   0   0   1   0

octave:3> l=eig(A)
l =

  -0.50000 + 0.86603i
  -0.50000 - 0.86603i
   1.00000 + 0.00000i
   1.00000 + 0.00000i
 
Last edited:
  • #3
Thanks Simon I will have a look into that.
 
  • #4
blondii said:
I have a matrix and can't seem to get my head around finding all the eigen vectors.

The matrix is A:

(1 0 0 0
1 0 0 1
0 1 0 0
0 0 1 0)

I got the eigen values as:
λ1 = 1, λ2 = λ3 = λ4 = 0

For λ1:

The eigen vector V1 is (0, 1, 1, 1).

For λ2 -> λ4:

The only eigen vector I could make out is: V2 (0, 0, 0, 0).
No. The very definition of "eigenvalue" is "There exist a non-zero vector, v, such that [itex]Av= \lambda v[/itex] so there MUST be a non-zero eigenvector (Many people will not count the zero vector as an eigenvector. I prefer to so that "the set of all eigenvectors corresponding to a given eigenvalue" will be a subspace. In any case, there must exist non-zero eigenvectors.)
Any eigenvector corresponding to eigenvalue 0 must satisfy
[tex]\begin{bmatrix}1 & 0 & 0 & 0 \\ 1 & 0 & 0 & 1\\ 0 & 1 & 0 & 0 \\ 0 & 0 & 1 & 0 \end{bmatrix}\begin{bmatrix}x \\ y \\ z \\ u\end{bmatrix}= \begin{bmatrix}x \\ x+ u\\ y \\ z\end{bmatrix}= 0\begin{bmatrix}x \\ y \\ z \\ u\end{bmatrix}[/tex]

which gives the four equations x= 0, x+ u= 0, y= 0, z= 0. Yes, that has x= y= z= u= 0 as the only root. And what that means is there does NOT exist such a non-zero vector and 0 is NOT an eigenvalue!

When I calculate the characteristic equation, I get [itex](1- \lambda)(1- \lambda^3)= 0[/itex] which does NOT have 0 as a root.

To calculate the remaining eigen vectors I solved for P using the formula (A-λI)P = K
Those are NOT, strictly speaking, "eigenvectors". They are "generalized eigenvectors".

Where K is an eigenvector of the matrix A associated with the eigenvalue (In this case V2). But substituting λ2 and V2 into the equation will only lead back again to the same equation which I don't think is correct. Is there a better method I can follow or is there something I am not doing correctly?

Thanks
0 is NOT an eigenvalue.
 
Last edited by a moderator:
  • #5
Blondii may not have realized that you can have complex roots ;)
 
  • #6
HallsofIvy said:
When I calculate the characteristic equation, I get [itex](1- \lambda)(1- \lambda^3)= 0[/itex] which does NOT have 0 as a root.

Thanks HallsofIvy I realize now where my mistake was. I was not calculating the determinant of the characteristic equation properly and always kept stoping after the first phase (I guess that's what you get for staying awake too long).

Thanks guys, your input was much appreciated.
 
  • #7
So after calculating would my eigen values be:

λ1 = 1
λ2 = 1
λ3 = ([itex]\frac{1}{2}[/itex])(-1 + [itex]\sqrt{3}[/itex]i)
λ4 = ([itex]\frac{1}{2}[/itex])(-1 - [itex]\sqrt{3}[/itex]i)

Is this correct now?
 
  • #8
blondii said:
So after calculating would my eigen values be:

λ1 = 1
λ2 = 1
λ3 = ([itex]\frac{1}{2}[/itex])(-1 + [itex]\sqrt{3}[/itex]i)
λ4 = ([itex]\frac{1}{2}[/itex])(-1 - [itex]\sqrt{3}[/itex]i)

Is this correct now?

With these new corrections there will be repeated roots of 1 which will also generate linearly independent eigenvectors one of which is the zero vector [0,0,0,0].
 
  • #9
blondii said:
With these new corrections there will be repeated roots of 1 which will also generate linearly independent eigenvectors one of which is the zero vector [0,0,0,0].
No, the zero vector is NOT "independent" of any vectors! You should NEVER find the 0 vector as an eigenvector. Stop that!

With eigenvalue 1, doing what I did before gives the four equations:
x= x
x+ u= y
z= y
u= z

The last two equations tell us y= z= u. Replacing u by y in the second equation, x+ y= y we get x= 0. That is, < x, y, z, u>= <0, y, y, y>= y<0, 1, 1, 1>. <0, 1, 1, 1> is an eigenvector and, because this only spans a 1 dimensional space, you need to find a "generalized eigenvalue" by solving (A- I)v= <0, 1, 1, 1>.
 
  • #10
HallsofIvy said:
you need to find a "generalized eigenvalue" by solving (A- I)v= <0, 1, 1, 1>.

I understand the zero vector can't be used, but after solving the equation earlier that seems to be the only possible solution because all other vectors that will eventuate out of solving that equation still won't be linearly independent to <0,1,1,1>.
I tried inputing the matrix into Mathematica to calculate its eigenvalues and vectors and it still returned the zero eigen vector along with the two complex and real eigen vectors.

Am not really sure now, how to go about this? If the zero eigen vector can't be used and even trying to calculate the general eigen vector won't return a favorable outcome, is their some higher math that needs to be incorporated?
 
  • #11
blondii said:
The only eigen vector I could make out is: V2 (0, 0, 0, 0).

Ok after considering the equation again I came up with the eigen vector <2,1,1,1>.
Would this be acceptable since it seems to be linearly independent and sill satisfies the equation (A- I)v= <0, 1, 1, 1>?
 

1. What are repeated eigenvalues?

Repeated eigenvalues are eigenvalues that have a multiplicity greater than one, meaning they have more than one corresponding eigenvector.

2. How do you find the eigenvectors for repeated eigenvalues?

To find the eigenvectors for repeated eigenvalues, you must first find the eigenspace associated with the repeated eigenvalue. This can be done by solving the system of equations formed by substituting the repeated eigenvalue into the characteristic equation. Then, the eigenvectors can be found by solving for the free variables in the system of equations.

3. Can repeated eigenvalues have different corresponding eigenvectors?

Yes, repeated eigenvalues can have different corresponding eigenvectors. This is because the eigenspace associated with a repeated eigenvalue can have more than one basis vector, leading to multiple possible eigenvectors.

4. What is the significance of repeated eigenvalues in linear algebra?

Repeated eigenvalues are significant in linear algebra because they can affect the diagonalizability of a matrix. If a matrix has repeated eigenvalues, it may not be diagonalizable and therefore may not have a complete set of linearly independent eigenvectors.

5. How do repeated eigenvalues relate to the trace and determinant of a matrix?

The trace of a matrix is equal to the sum of its eigenvalues, including repeated eigenvalues. The determinant of a matrix is equal to the product of its eigenvalues, including repeated eigenvalues. This relationship can be used to quickly find the eigenvalues of a matrix with repeated eigenvalues.

Similar threads

  • Linear and Abstract Algebra
Replies
2
Views
2K
  • Linear and Abstract Algebra
Replies
3
Views
1K
  • Precalculus Mathematics Homework Help
Replies
6
Views
1K
  • Linear and Abstract Algebra
Replies
1
Views
794
  • Linear and Abstract Algebra
Replies
6
Views
6K
  • Linear and Abstract Algebra
Replies
5
Views
1K
  • Linear and Abstract Algebra
Replies
9
Views
2K
  • Calculus and Beyond Homework Help
Replies
11
Views
1K
Replies
4
Views
3K
Replies
1
Views
2K
Back
Top