Eigenvalues and vectors - finding original matrix

Caeder
Messages
13
Reaction score
0
How do I determine what the original matrix was that yielded these two eigenvalues with the corresponding eigenvectors:

\lambda_1 = -3 Eigenvector: [0,1]

\lambda_2 = 2 Eigenvector: [1,0]

I've played around with det(A-lambda I) but can't find the matrix! I even just did some trial and error matrices in Maple trying to figure it out. If anyone can find me the matrix I'd be very impressed.
 
Physics news on Phys.org
Well if you have the eigenvectors of a matrix A then A can be represented as:
A=PDP^{-1}
where D is a diagonal matrix with the diagonal elements as \lambda_1 \ and \ \lambda_2

and P is the eigenvectors of the eigenvalues...

so from your problem:

D would be the matrix:
[-3 0]
[0 2]

and the first column for P would be the eigenvector for -3 and the 2nd column would be the eigenvector for 2...so you now have P..find P^{-1} and multiply out
 
What does the matrix
a11 a12
a21 a22

map (1,0) and (0,1) to?
 
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