Left/Right Eigenvectors

5.9k Views Asked by At

Let $M$ be a nonsymmetric matrix; suppose the columns of matrix $A$ are the right eigenvectors of $M$ and the rows of matrix $B$ are the left eigenvectors of $M$.

In one of the answers to a question on left and right eigenvectors it was claimed that $AB=I$. Is that true, and how would you prove it?

6

There are 6 best solutions below

2
On

No. Let $$ M = \begin{bmatrix} 1 & 0 & 0 & 0 \\ 0 & 1 & 0 & 0 \\ 0 & 0 & 4 & 2 \\ 0 & 0 & 0 & 2 \end{bmatrix} $$ Then two right eigenvectors for $1$ are $e_1$ and $e_2$, and two left eigenvectors for $1$ are $(\sqrt{2}/2) ( e_1 \pm e_2 )$. When you put these into $A$ and $B$, the upper left corner of your product will not be the $2 \times 2$ identity.

I have a bad feeling this question's about to be edited to add the hypothesis that the eigenvalues be distinct...

When that happens, the answer will still be no, for if we permute the rows of $A$ to form $A'$ they'll still all be eigenvectors for $M$, but the product $AB$ will undergo the same row permutation, so that even if $AB = I$, we'll have $A'B \ne I$.

2
On

if all eigenvalues are distinct, then AB is a diagonal (with the correct ordering and normalization)

Let $aM = c_1*a$, $Mb=c_2*b$ $0 = aMb - aMb = c_1ab-c_2ab=(c1-c2)ab$, so the right and left eqgenvectors with the distinct eigenvalues are orthogonal

3
On

Try e.g. $$M = \pmatrix{3 & 2\cr -1 & 0\cr}$$ Eigenvalues are $1$ and $2$. Normalized right eigenvectors form the matrix $$A = \pmatrix{-1/\sqrt{2} & -2/\sqrt{5} \cr 1/\sqrt{2} & 1/\sqrt{5}\cr}$$ Normalized left eigenvectors form $$ B = \pmatrix{1/\sqrt{5} & 2/\sqrt{5}\cr 1/\sqrt{2} & 1/\sqrt{2}\cr}$$ These are not inverses.

5
On

Here's a tentative proof that $A$ is the inverse of $B$.

The left eigenvectors of $M$ are the right eigenvectors of $M^T$. Therefore if $M=B⋅Λ⋅B^{-1}$ then $M^T=B^{-T}⋅Λ⋅B^T$ which is an EVD. If the eigenvalues are distinct, the EVD is unique (up to scaling of eigenvectors), which proves that left eigenvectors are rows of $B^{−1}$, i.e. $A=B^{-1}$.

(I'm pasting this answer from Power of a Nonsymmetric Matrix , it's due to Florian)

Of course the counterexamples below cast a dark shadow on this proof, but I can see nothing wrong with it.

0
On

Consider the matrix A made up rows (0,0,- 1,0),(0,0,1,0),(0,0,1,0) and (0,0,0,1). You will find that R made up of rows 1,0,- 1,0/0,1,1,0/0,0,1,0/0,0,0,1 and L with rows 1,1,0,0/1,0,1,0/0,0,1,0/0,0,0,1 are the right and left eigenvector matrices. That is if D is the doagonal (0,0,1,1) then AR =RD, LA=DL together RL,LR not equal and niether is equal to identity.

0
On

Most counter-examples found here have to do with the inherent ambiguities in defining the eigenvectors. There are essentially two kinds:

  • For repeating eigenvalues, the eigenvectors spanning their space are not uniquely defined. Only their subspace is. Any linearly indepedent basis for their space will do (extreme example $M=I$: any full rank matrix $A$ qualifies as matrix of right singular vectors. Likewise, any full rank matrix $B$ can be chosen independently as a valid basis of left singular vectors).
  • If we exclude this by forcing distinct eigenvalues we still have each eigenvector only being unique up to a scalar multiple, since any $q$ satisfying $M q = \lambda q$ will also lead to $\alpha q$ satisfying the same equation for any $\alpha \neq 0$. Forcing $\left\|q\right\|=1$ eliminiates this only partially, in the real-valued case there is still a sign ambiguity (e.g., Roberts reply), in the complex-valued case a phase ambiguity.

These ambiguities aside, let us not forget that left singular vectors of $M$ are right singular vectors of $M^T$. So if $M$ has an EVD of the form $M=A \Lambda A^{-1}$, then $M^T = A^{-T} \Lambda A^T$. This shows that $B = A^{-1}$ does qualify as a pair of left/right singular vectors. It's only that if we compute $A$ and $B$ independently, we are not guaranteed to pick the pair of inverses among the set of ambiguities. If eigenvalues are distinct we might get a diagonal matrix (due to the scaling ambiguities), if they are not we might get something pretty arbitrary.