Eigenvalue and Eigenvector problem

Mathman23
Messages
248
Reaction score
0
Hi

Given a 3x3 matrix


A = \[ \left[ \begin{array}{ccc} 0 & 0 & 1+2i \\ 0 & 5 & 0 \\ 1-2i & 0 & 4 \end{array} \right]

I need to a another 3x3 which satisfacies

D = U^-1 A U

Step 1.

Finding the eigenvalues

0 = det(A- \lambda I ) = (0- \lambda)(\lambda - 5) (\lambda -4 ), \lambda = 5,4,0

step 2.

Finding the eigenvectors.

A vector which satisfies (A-\lambda I) v = 0

For \lambda = 5


p(\lambda = 5) = \[ \left[ \begin{array}{ccc} -5 & 0 & 1+2i \\ 0 & 0 & 0 \\ 1-2i & 0 & -1 \end{array} \right] ~ \[ \left[ \begin{array}{ccc} 1 & 0 & -1/5-2/5i \\ 0 & 0 & 0 \\ 0 & 0 & 0 \end{array} \right]

How do I read the eigenvector from the reduced matrix ?

Sincerely Fred
 
Last edited:
Physics news on Phys.org
Your eigenvalues are wrong. Find the characteristic equation by working it out completely, and you'll find eigenvalues of -1, 5, and 5.
 
Is 5 then a what is called a double root ?

/Fred

daveb said:
Your eigenvalues are wrong. Find the characteristic equation by working it out completely, and you'll find eigenvalues of -1, 5, and 5.
 
Kind of. The eigenvalue with the value of five is said to have a multiplicity of two.
 
I found the first eigenvector for lambda = -1 to be [1+2i, 0, -1]^T

To find for lambda = 5, do I row reduce the matrix A-5I ?

If I put that matrix into reduced echelon form, I get [0,0,0], but that can't be right?

/Fred

Hammie said:
Kind of. The eigenvalue with the value of five is said to have a multiplicity of two.
 
Last edited:
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