Student[LinearAlgebra]
Eigenvectors
compute the eigenvectors of a square Matrix
Calling Sequence
Parameters
Description
Examples
Eigenvectors(A, options)
A
-
square Matrix; Matrix whose eigenvectors are required
options
(optional) parameters; for a complete list, see LinearAlgebra[Eigenvectors]
The Eigenvectors(A) command returns an expression sequence of two elements. The first element is the Vector of eigenvalues (that is, exactly what is returned by the Eigenvalues(A) command.) The second is the Matrix of corresponding eigenvectors.
For example, after
(ev, EV) := Eigenvectors(A);
for each column index i, A·EV1..−1,i=evi·EV1..−1,i.
Note: If the input Matrix A is defective (does not have a full set of linearly independent eigenvectors) then some of the columns of the Matrix of eigenvectors are 0 (and hence are not eigenvectors). See JordanForm.
with⁡StudentLinearAlgebra:
A≔−1,−3,−6|3,5,6|−3,−3,−4
A≔−13−3−35−3−66−4
ev,EV≔Eigenvectors⁡A
ev,EV≔22−4,−11120112101
A·EV1..−1,2=ev2·EV1..−1,2
220=220
See Also
LinearAlgebra[Eigenvectors]
Student[LinearAlgebra][CharacteristicMatrix]
Student[LinearAlgebra][Eigenvalues]
Student[LinearAlgebra][EigenvectorsTutor]
Student[LinearAlgebra][IdentityMatrix]
Student[LinearAlgebra][JordanForm]
Download Help Document