Finding Eigenvectors/values given matrix defined by bra-ket notation

Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
2 replies · 6K views
slam7211
Messages
36
Reaction score
0

Homework Statement


sorry about the lack of LaTex but I don't know how to do bra-ket notation in tex
vectors |1> and |2> are a complete set of normalized basis vectors.
the hamiltonian is defined as |1><1|-|2><2|+|1><2|+|2><1| find the eigenvalues and eigenvectors in ters of |1> and |2>

Homework Equations


for a normal matrix eigenvalues are

Det(A-Iλ)=0 solve for λ
Eigenvectors are then
A*v=λv

The Attempt at a Solution


I tried just making up 2 generic 1X2 vectors and plugging it into mathematica, but its ugly and I am assuming its not what they want, is there some stupid trick I am missing here?
If the first sign in the hamiltonian was + instead of minus I know the first set of terms would equal 1 but its minus so I am just lost here
 
Physics news on Phys.org


I may be misunderstanding your hamiltonian but it looks to me like that corresponds to matrix
[tex]\begin{bmatrix} 1 & 1 \\ 1 & -1 \end{bmatrix}[/tex]

If that is correct, then the characteristic equation is
[tex]\left|\begin{array}{cc} 1-\lambda & 1 \\ 1 & -1-\lambda\end{array}\right|= (1-\lambda)(-1- \lambda)- 1= 0[/tex]
[tex]= \lambda^2- 2= 0[/tex]

so the eigenvalues are [itex]\sqrt{2}[/itex] and [itex]-\sqrt{2}[/itex].

The corresponding eigenvectors are given by
[tex]\begin{bmatrix}1 & 1 \\ 1 & -1\end{bmatrix}\begin{bmatrix}x & y\end{bmatrix}= \sqrt{2}\begin{bmatrix} x \\ y \end{bmatrix}[/tex]
so that [itex]x+ y= \sqrt{2}x[/itex] and [itex]x- y= \sqrt{2}y[/itex]

and
[tex]\begin{bmatrix}1 & 1 \\ 1 & -1\end{bmatrix}\begin{bmatrix}x & y\end{bmatrix}= -\sqrt{2}\begin{bmatrix} x \\ y \end{bmatrix}[/tex]
so that [itex]x+ y= -\sqrt{2}x[/itex] and [itex]x- y= -sqrt{2}y[/itex]
 


How did you know the hamiltonian corresponded to that matrix?