Normalizing eigenvector with complex entries

Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
4 replies · 29K views
R.Harmon
Messages
23
Reaction score
0

Homework Statement


Hi, I'm having a bit of a problem normalizing eigenvectors with complex entries. Currently the eigenvector I'm looking at is [tex]\[\vec{v}=<br /> \left(\begin{array}{c}<br /> -2+i\\<br /> 1<br /> \end{array}\right)\][/tex]


Homework Equations





The Attempt at a Solution



If the eigenvectors don't have complex elements I can do this, for example if i have [tex]\[\vec{v}=<br /> \left(\begin{array}{c}<br /> 3\\<br /> 1<br /> \end{array}\right)\][/tex] and I want to normalize I know that this is the same as [tex]\[\vec{v}=\left(\begin{array}{c}<br /> 3a\\<br /> 1a<br /> \end{array}\right)\][/tex] and [tex](3a)^2+a^2=1[/tex] so the normalized eigenvector is [tex]\vec{v}=\frac{1}{\sqrt{10}}<br /> \left(\begin{array}{c}<br /> 3\\<br /> 1<br /> \end{array}\right)[/tex]. However with the first eigenvector using the same method I get [tex](a(-2+i))^2+a^2=1[/tex] or [tex]a=\frac{1}{\sqrt{4-4i}}[/tex] giving the normalized eigenvector as [tex]\vec{v}=\frac{1}{\sqrt{4-4i}}<br /> \left(\begin{array}{c}<br /> -2+i\\<br /> 1<br /> \end{array}\right)[/tex] where as the solution should be [tex]\vec{v}=\frac{1}{\sqrt{6}}<br /> \left(\begin{array}{c}<br /> -2+i\\<br /> 1<br /> \end{array}\right)[/tex]. Could someone please point out where I'm going wrong? Any help is appreciated.
 
Physics news on Phys.org
I believe you should just divide by

sqrt( |-2 + i|^2 + |1|^2)
=
sqrt( 5 + 1) = sqrt(6)
 
Unless my algebras gone out the window:
[tex](-2+i)^2=(-2+i)(-2+i)=4-4i+(i^2)=3-4i[/tex]
not 5?
 
|a + bi|^2 = (a + bi)(a - bi) = a^2 + b^2
or
|z|^2 = zz* (where z* is the complex conjugate)

so

|-2 + i|^2 = 4 + 1 = 5
 
  • Like
Likes   Reactions: debjit625
Ahh ok makes sense. Thanks a lot, that was bugging me for hours!