Search for a tool
Eigenvectors of a Matrix

Tool to calculate eigenvectors of a matrix. Eigenvectors of a matrix are vectors whose direction remains unchanged after multiplying by the matrix. They are associated with an eigenvalue.

Results

Eigenvectors of a Matrix -

Tag(s) : Matrix

Share
Share
dCode and more

dCode is free and its tools are a valuable help in games, maths, geocaching, puzzles and problems to solve every day!
A suggestion ? a feedback ? a bug ? an idea ? Write to dCode!


Please, check our dCode Discord community for help requests!
NB: for encrypted messages, test our automatic cipher identifier!


Feedback and suggestions are welcome so that dCode offers the best 'Eigenvectors of a Matrix' tool for free! Thank you!

Eigenvectors of a Matrix

Eigenvectors Calculator

Loading...
(if this message do not disappear, try to refresh this page)

Eigenvalues Calculator

Eigenspaces Calculator

Answers to Questions (FAQ)

What are eigen vectors of a matrix? (Definition)

An eigenvector of a matrix is a characteristic vector (or privileged axis or direction) on which a linear transformation behaves like a scalar multiplication by a constant named eigenvalue.

In other words, these are the vectors that only change by one scale when multiplied by the matrix.

The set of eigenvectors form an eigenspace.

How to calculate eigenvectors of a matrix?

To find eigenvectors, take $ M $ a square matrix of size $ n $ and $ \lambda_i $ its eigenvalues. Eigenvectors are the solution of the system $ ( M − \lambda I_n ) \vec{X} = \vec{0} $ with $ I_n $ the identity matrix.

Example: The 2x2 matrix $$ M=\begin{bmatrix} 1 & 2 \\ 4 & 3 \end{bmatrix} $$
Eigenvalues for the matrix $ M $ are $ \lambda_1 = 5 $ and $ \lambda_2 = -1 $ (see tool for calculating matrix eigenvalues).

For each eigenvalue, look for the associated eigenvector.

Example: For $ \lambda_1 = 5 $, solve $ ( M − 5 I_n ) X = \vec{0} $: $$ \begin{bmatrix} 1-5 & 2 \\ 4 & 3-5 \end{bmatrix} . \begin{bmatrix} x_1 \\ x_2 \end{bmatrix} = \begin{bmatrix} 0 \\ 0 \end{bmatrix} $$ be the equivalent system of equations $$ \begin{align} -4 x_1 + 2 x_2 &= 0 \\ 4 x_1 - 2 x_2 &= 0 \end{align} $$ which admits several solutions including $$ \begin{array}{c} x_1 = 1 \\ x_2 = 2 \end{array} $$ So the eigenvector associated to $ \lambda_1 = 5 $ is $ \vec{v_1} = \begin{bmatrix} 1 \\ 2 \end{bmatrix} $

Example: For $ \lambda_2 = -1 $, solve $ ( M + I_n ) X = \vec{0} $ like this: $$ \begin{bmatrix} 1+1 & 2 \\ 4 & 3+1 \end{bmatrix} . \begin{bmatrix} x_1 \\ x_2 \end{bmatrix} = \begin{bmatrix} 0 \\ 0 \end{bmatrix} \\ \iff \begin{align} 2 x_1 + 2 x_2 &= 0 \\ 4 x_1 + 4 x_2 &= 0 \end{align} \Rightarrow \begin{array}{c} x_1 = -1 \\ x_2 = 1 \end{array} $$

So the eigenvector associated to $ \lambda_2 = -1 $ is $ \vec{v_2} = \begin{bmatrix} -1 \\ 1 \end{bmatrix} $.

Why use the eigenvectors of a matrix?

Eigenvectors can be used to simplify certain calculations, to understand the linear transformations induced by the matrix and to solve problems related to eigenvalues.

How to prove that a matrix is diagonalizable?

A matrix $ M $ matrix of order $ n $ is a diagonalizable matrix if it has $ n $ eigenvectors associated with $ n $ distinct eigenvalues.

That is, it has enough linearly independent eigenvectors to form a basis for the vector space in which it operates (necessary condition for its diagonalization).

Does a zero vector as an eigenvector exist?

The definition of the eigenvector precludes its nullity. However, if in a calculation the number of independent eigenvectors is less than the number of eigenvalues, dCode will sometimes display a null vector.

Source code

dCode retains ownership of the "Eigenvectors of a Matrix" source code. Any algorithm for the "Eigenvectors of a Matrix" algorithm, applet or snippet or script (converter, solver, encryption / decryption, encoding / decoding, ciphering / deciphering, breaker, translator), or any "Eigenvectors of a Matrix" functions (calculate, convert, solve, decrypt / encrypt, decipher / cipher, decode / encode, translate) written in any informatic language (Python, Java, PHP, C#, Javascript, Matlab, etc.) or any database download or API access for "Eigenvectors of a Matrix" or any other element are not public (except explicit open source licence like Creative Commons). Same with the download for offline use on PC, mobile, tablet, iPhone or Android app.
Reminder: dCode is an educational and teaching resource, accessible online for free and for everyone.

Cite dCode

The content of the page "Eigenvectors of a Matrix" and its results may be freely copied and reused, including for commercial purposes, provided that dCode.fr is cited as the source. Exporting the results is free and can be done simply by clicking on the export icons ⤓ (.csv or .txt format) or ⧉ (copy and paste).
To cite dCode.fr on another website, use the link: https://www.dcode.fr/matrix-eigenvectors
In a scientific article or book, the recommended bibliographic citation is: Eigenvectors of a Matrix on dCode.fr [online website], retrieved on 2025-04-16, https://www.dcode.fr/matrix-eigenvectors

Need Help ?

Please, check our dCode Discord community for help requests!
NB: for encrypted messages, test our automatic cipher identifier!

Questions / Comments

Feedback and suggestions are welcome so that dCode offers the best 'Eigenvectors of a Matrix' tool for free! Thank you!


https://www.dcode.fr/matrix-eigenvectors
© 2025 dCode — The ultimate collection of tools for games, math, and puzzles.
 
Feedback