Eigenspace

Learn about eigenvector, eigenvalues, and eigenspaces.

Eigenspace vs. matrix subspaces

Unlike the column, row, and null spaces, the eigenspace only exists for a square matrix. The eigenspace of a square matrix, AA, is the set of vectors that preserve their direction under the linear transformation matrix, AA. Furthermore, eigenspace can be complex in contrast to the other spaces of a matrix, which are always real.

Definition

Formally, an eigenspace of an n×nn\times n matrix, AA, is defined as:

Eλ(A)={xAx=λx}E_\lambda(A)=\{\bold{x}|A\bold{x=\lambda x}\}

, where λ\lambda is an eigenvalue of AA and x\bold{x} is the corresponding eigenvector of AA. Thus, eigenspace consists of all the eigenvectors of a matrix corresponding to an eigenvalue.

Example

Consider a matrix, A=[3234]A=\begin{bmatrix}3 & 2\\3 & 4\end{bmatrix}. Furthermore, consider an eigenvalue, λ=6\lambda=6, and the corresponding eigenvector, x=[1015]\bold{x}=\begin{bmatrix}10\\15\end{bmatrix}. Notice that all multiples of x\bold{x} (that is span(x)span(\bold{x})) would also make valid eigenvectors corresponding to the same eigenvalue, such as 15x=[23]\frac{1}{5}\bold{x}=\begin{bmatrix}2 \\ 3\end{bmatrix}. Therefore, by definition, the eigenspace corresponding to eigenvalue 6 will have the span of x\bold{x}.

Note: There are infinitely many eigenvectors corresponding to each eigenvalue of a matrix.

Below is a visualization that shows how eigenvectors of a matrix preserve their direction under the linear transformation of that matrix. The red and blue vectors are eigenvectors corresponding to the eigenvalue, 66. These vectors kept their direction under the matrix A transformation. In contrast, a brown vector loses its ...