What is an Eigenspace?

Eigenspace is a vector subspace of RnR^n. For a matrix AA with n×nn \times n dimensions, nn eigenvalues are associated with it, and each eigenvalue λi\lambda_i corresponds to an eigenvector vi\vec{v}_i.

This is known as the eigendecomposition, and it holds the following equation:

Where v0\vec{v} \neq 0.

The equation Av=λvA\vec{v} = \lambda \vec{v} can be written as the following:

Note: Identity matrix II with n×nn \times n dimensions are multiplied with the constant λ\lambda to perform matrix operations.

A trivial solution can be obtained by simply putting v=0\vec{v} = 0; however, we are interested in getting a nontrivial solution. Hence, the following characteristic equation would be used to calculate the nonzero solution of v\vec{v}.

It is interesting to note that the eigenspace equation revises the concept of nullspaces. It can be claimed that the eigenspace Eλ(A)E_\lambda(A) equates to the nullspace N(AλI)N(A - \lambda I).

Note: To read more about eigenvalues and eigenvectors, click here.

Example 1

Calculate the eigenspace of the following matrix in R2R^2:

Using the characteristic equation as follows:

The operation leaves us with the following equation:

The determinant will be calculated as follows:

Solving the characteristic polynomial gives λ=1,4\lambda = 1,4. An eigenvector corresponding to each eigenvalue will be calculated.

For λ=1\lambda = 1, use the equation (λIA)x=0(\lambda I - A) \vec{x} = 0:

The following solution is obtained:

The answer can be written as follows:

The same procedure will be used to calculate the eigenvector for the eigenvalue λ=4\lambda = 4:

This equates to the following solution:

Hence, the eigenspace is formed by the eigenvalues λ=1,4\lambda = 1,4 with the corresponding vectors calculated above.

Example 2

Calculate the eigenspace of the following matrix in R3R^3:

Using the characteristic equation:

Calculating the determinant of the matrix leaves us with the following characteristic polynomial:

Solving the characteristic polynomial gives λ=2,2,9\lambda = 2, 2, 9. An eigenvector corresponding to each eigenvalue will be calculated.

For λ=2\lambda = 2,

The following solution is obtained:

The answer can be written as follows:

The same procedure will be used to calculate the eigenvector for the eigenvalue λ=9\lambda = 9:

This equates to the following solution:

Hence, the eigenspace is formed by the eigenvalues λ=2,9\lambda = 2, 9 with the corresponding vectors calculated above.

Quiz

Try the following questions for a better grip on the concept of eigenspaces:

Question 1

A=[401210201]A = \begin{bmatrix} 4 & 0 & 1 \\ -2 & 1 & 0 \\ -2 & 0 & 1 \\ \end{bmatrix}

Show Answer
Question 2

A=[102000204]A = \begin{bmatrix} 1 & 0 & -2 \\ 0 & 0 & 0 \\ -2 & 0 & 4 \\ \end{bmatrix}

Show Answer

Applications

Eigenvalues and eigenvectors have numerous applications in the real world, some of which have been listed below:

  • Image processing: Eigenvectors are used to express the brightness of pixels in images used for facial recognition.

  • Geology: Summarizes the orientation of the clast of a glacial till.

  • Vibration analysis: Vibration modes of an object are depicted through eigenvectors.

Free Resources

Copyright ©2025 Educative, Inc. All rights reserved