Eigenvalues and vectors - finding original matrix

Click For Summary
SUMMARY

The original matrix A can be determined using the eigenvalues and eigenvectors provided in the discussion. Given the eigenvalues λ₁ = -3 with eigenvector [0, 1] and λ₂ = 2 with eigenvector [1, 0], the diagonal matrix D is represented as D = [[-3, 0], [0, 2]]. The matrix P, formed by the eigenvectors, is P = [[0, 1], [1, 0]]. To find the original matrix A, compute A = PDP⁻¹, where P⁻¹ is the inverse of matrix P.

PREREQUISITES
  • Understanding of eigenvalues and eigenvectors
  • Familiarity with matrix multiplication
  • Knowledge of matrix inversion
  • Experience with linear algebra concepts
NEXT STEPS
  • Learn how to compute matrix inverses using various methods
  • Study the properties of diagonal matrices in linear transformations
  • Explore the application of eigenvalues and eigenvectors in systems of differential equations
  • Investigate the use of computational tools like MATLAB or NumPy for matrix operations
USEFUL FOR

Students and professionals in mathematics, particularly those studying linear algebra, as well as data scientists and engineers working with matrix computations and transformations.

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?
 

Similar threads

  • · Replies 4 ·
Replies
4
Views
2K
Replies
8
Views
3K
  • · Replies 7 ·
Replies
7
Views
2K
  • · Replies 19 ·
Replies
19
Views
4K
  • · Replies 33 ·
2
Replies
33
Views
3K
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 5 ·
Replies
5
Views
3K
  • · Replies 2 ·
Replies
2
Views
1K
  • · Replies 6 ·
Replies
6
Views
2K
Replies
9
Views
2K