Find the characteristic polynomial

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
4 replies · 2K views
Niles
Messages
1,834
Reaction score
0

Homework Statement


If I have a n x n matrix B, and I must show that a vector a is an eigenvector for the matrix B and I have to find the corresponding eigenvalue, what is the easiest way of doing this?

The Attempt at a Solution


I know I can find the characteristic polynomial, but I thought that there is perhaps an easier way?
 
Physics news on Phys.org
Write out the defining equation for an eigenvalue, Bx= [itex]\lambda[/itex]x, of course. You know x= a and you know B. Go ahead and do the multiplication on the left and compare it to the right side!

For example if you know that
[tex]A= \left[\begin{array}{cc} -3 & 15 \\ -2 & 8 \end{array}\right][/tex]
and
[tex]a= \left[\begin{array}{c} 5 \\ 2\end{array}\right][/tex]
is an eigenvector of B, and want to find the corresponding eigenvalue, [itex]\lambda[/itex]

[tex]\left[\begin{array}{cc} -3 & 15 \\ -2 & 8 \end{array}\right]\left[\begin{array}{c} 5 \\ 2\end{array}\right]= \lambda\left[\begin{array}{c} 5 \\ 2\end{array}\right][/tex]

[tex]\left[\begin{array}{c} 15 \\ 6\end{array}\right]= \left[\begin{array}{c} \lambda 5 \\ \lambda 2\end{array}\right][/tex]
So we must have [itex]15= 5\lambda[/itex] and [itex]6= 2\lambda[/itex]. Obviously, [itex]\lambda= 3[/itex] satisfies both. (If the same [itex]\lambda[/itex] had not satisfied both, then the given vector was not an eigenvector.)

(Edit: Or I could have just said "look at Ba"!)
 
Nono, because in the example with "Ba" the eigenvalue was 0, so I thought the method was different from the one you showed in your example.

Thanks to both of you.