| New Reply |
Repeated Eigen Values and their Eigen Vectors |
Share Thread | Thread Tools |
| Jul19-12, 02:15 AM | #1 |
|
|
Repeated Eigen Values and their Eigen Vectors
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 |
| Jul19-12, 02:40 AM | #2 |
|
Recognitions:
|
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 |
| Jul19-12, 02:43 AM | #3 |
|
|
Thanks Simon I will have a look into that.
|
| Jul19-12, 08:16 AM | #4 |
|
|
Repeated Eigen Values and their Eigen VectorsAny 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. |
| Jul19-12, 09:40 AM | #5 |
|
Recognitions:
|
Blondii may not have realized that you can have complex roots ;)
|
| Jul19-12, 01:21 PM | #6 |
|
|
Thanks guys, your input was much appreciated. |
| Jul19-12, 01:44 PM | #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? |
| Jul19-12, 02:39 PM | #8 |
|
|
|
| Jul20-12, 08:45 AM | #9 |
|
|
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>. |
| Jul20-12, 09:05 AM | #10 |
|
|
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? |
| Jul20-12, 09:22 AM | #11 |
|
|
Would this be acceptable since it seems to be linearly independent and sill satisfies the equation (A- I)v= <0, 1, 1, 1>? |
| New Reply |
| Tags |
| eigenvalues matrices, eigenvector, repeated |
| Thread Tools | |
Similar Threads for: Repeated Eigen Values and their Eigen Vectors
|
||||
| Thread | Forum | Replies | ||
| Eigen Values/Vectors | Calculus & Beyond Homework | 10 | ||
| Eigen vectors and values | Calculus & Beyond Homework | 14 | ||
| Lagrange to find eigen values and vectors? | Calculus & Beyond Homework | 4 | ||
| Eigen-vectors/values under row flipping | Linear & Abstract Algebra | 6 | ||
| Eigen vectors and Eigen values | Linear & Abstract Algebra | 6 | ||