Solving Zero Eigenvector: A Homework Problem

  • Thread starter Thread starter Ryan007
  • Start date Start date
  • Tags Tags
    Eigenvector Zero
Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
2 replies · 5K views
Ryan007
Messages
14
Reaction score
1

Homework Statement



I can calculate the proper eigenvalues, but when I plug them back into the matrix, I get x1=0 and x2=0. But this is not the answer Maple gives me! How do I solve for the eigenvector when it appears that a zero vector is the only solution?

Homework Equations



For example, for the matrix {1,1},{1,-1} (rows shown), Maple gives me: eigenvalue of sqrt(2) with eigenvector {1/((sqrt(2)-1),1} and eigenvalue of -sqrt(2) with eigenvector {1/(-(sqrt(2)-1),1}

The Attempt at a Solution



But I can't get these eigenvectors when I try to solve by hand! How do you solve in these situations?
What are these situations called?



 
Physics news on Phys.org
For sqrt(2), You end up with the eigenvector equation:

[tex]\left(\begin{array}{cc} 1 & 1 \\ 1 & -1 \end{array}\right)\binom{x}{y}=\sqrt{2}\binom{x}{y}[/tex]

or:

[tex](1-\sqrt{2}) x+y=0[/tex]

[tex]x-y(1+\sqrt{2})=0[/tex]

which are redundant so any vector (x,y) that satisfies either equation is a suitable eigenvector like:

[tex]\binom{1+\sqrt{2}}{1}[/tex]

and even:

[tex]\binom{\frac{1}{\sqrt{2}-1}}{1}[/tex]
 
Thanks! Oh duh! I didn't realize that the 2 equations were the same. That's why I was getting x=0 and y=0 as solutions. I had to multiply through by the appropriate constant to make the 2 equations look the same.