How to find eigenvectors of 2x2 by gauss jordan method

sciencegirl1
Messages
30
Reaction score
0

Homework Statement



how to find eigenvectors by using gauss jordan

A=[1 1; 2 2]

Homework Equations


I know how to use gauss jordan but don´t know how to use it to find eigenvectors


The Attempt at a Solution


First I find the eigenvalues: ((y-1)(y-2)-(1*2)=> y1=0 and y2=3

Then I don´t know how to use the G.J method to find the eigenvectors.
 
Physics news on Phys.org
If 3 is an eigenvalue for A then there exist a non-zero vector v such that Av= 3v or (A- 3I)v= 0. Use Gauss-Jordan to find a non-zero solution to that equation and that solution is an eigenvector.
Here, A- 3I is
\left[\begin{array}{cc}-2 & 1 \\ 2 & -1\end{array}\right]
(I haven't used the "augmented" matrix since the third column would always be 0.)
Row reduce that. Because 3 is an eigenvalue, the last row will become all 0s and then the other rows give the eigenvectors. Here just adding the first row to the second will do that and the first row remains -2, 1. That is the same as -2x+ y= 0 or y= 2x. Taking x= 1, an eigenvector is <1, 2>. See what happens: What is
\left[\begin{array}{cc} 1 &amp; 1 \\ 2 &amp; 2\end{array}\right]\left[\begin{array}{c}1 \\ 2\end{array}\right]?

Do the same thing with eigevalue 0.
 
There are two things I don't understand about this problem. First, when finding the nth root of a number, there should in theory be n solutions. However, the formula produces n+1 roots. Here is how. The first root is simply ##\left(r\right)^{\left(\frac{1}{n}\right)}##. Then you multiply this first root by n additional expressions given by the formula, as you go through k=0,1,...n-1. So you end up with n+1 roots, which cannot be correct. Let me illustrate what I mean. For this...
Back
Top