Eigenvectors and eigenvalues- finding the matrix

105 Views Asked by At

I am aware of the relation between eigenvectors and eigenvalues, and that the following holds: If A is an n×n matrix, the nonzero n-component column vector x is an eigenvector for eigenvalue λ if Ax=λx.

I was wondering, if I was given some eigenvectors and some eigenvalues of a matrix A, and it's not specified which eigenvectors correspond to which eigenvalues, is there a way to determine that, and hence find matrix A?

Thank you!

1

There are 1 best solutions below

0
On BEST ANSWER

I think what you are asking is given that if you are given that $\{v_1,\cdots,v_n\}$ are linearly independent eigenvectors for a linear transformation and that $\{\lambda_1,\cdots,\lambda_n\}$ are the eigenvalues for the same transformation (counting multiplicity), is this enough to recover the matrix (specifically, by determining which eigenvalues are associated with which Eigen vectors).

The answer is no. There is no way to determine which eigenvectors are associated with which eigenvalues with that information. Suppose that we were given that $\begin{bmatrix} 1 \\ 0\end{bmatrix}$ and $\begin{bmatrix} 0 \\ 1\end{bmatrix}$ are eigenvectors and that $0$ and $1$ are the eigenvalues for a $2\times2$ matrix. Then both $\begin{bmatrix} 1 & 0\\ 0 & 0\end{bmatrix}$ and $\begin{bmatrix} 0 & 0\\ 0 & 1\end{bmatrix}$ are distinct matrices that give rise to this, with a different eigenvector-eigenvalue pairing.

In general, if $A$ is a matrix, $\{v_1,\cdots,v_n\}$ are linearly independent eigenvectors, and $\{\lambda_1,\cdots,\lambda_n\}$ are your eigenvalues such that for each $i$, $\lambda_i$ is associated with $v_i$, then if $V$ is the matrix where the $i^{th}$ column is the $v_i$ and $\Lambda$ is the matrix with the eigenvalues on the diagonal such that $\Lambda_{i,i} = \lambda_i$, then $A=V\Lambda V^{-1}$.