Given some matrix A, an eigenvector of A is a vector that, when acted on by A, will result in a scalar multiple of itself, i.e. Ax=[lambda]x, where lambda is a real scalar multiple, called an eigenvalue, and x is the eigenvector described.
To find x you will normally have to find lambda first, which means solving the "characteristic equation": det(A-[lambda]I)=0, where I is the identity matrix.
The derivation of the "characteristic equation" is as follows:
Rearrange the equation Ax=[lambda]x -> Ax-[lambda]x=0 -> (A-[lambda]I)x=0 and then use the property from linear algebra that says if (A-[lambda]x) has an inverse, then x=0. Since this is trivial, we must instead prove that (A-[lambda]x) does not have an inverse. Because the inverse of a matrix is equal to its transpose divided by its determinant, and because you can't divide by 0, a 0 valued determinant means that the inverse can't exist. This is why we must solve det(A-[lambda]I)=0 for lambda.
Once we have found lambda, we can put it in the equation Ax=[lambda]x, and it's then just a simple matter of solving the resulting linear equations.
Copyright © 2026 eLLeNow.com All Rights Reserved.