Problem, given the matrix \[ \left ( {\begin {array} [c]{ccc}1 & 2 & 3\\ 4 & 5 & 6\\ 7 & 8 & 9 \end {array}} \right ) \] Find its eigenvalues and eigenvectors.
Mathematica
Matlab
Matlab generated eigenvectors are such that the sum of the squares of the eigenvector elements add to one.
clear all; close all; A=[1 2 3;4 5 6;7 8 9]; [v,e]=eig(A)
|
v = -0.2320 -0.7858 0.4082 -0.5253 -0.0868 -0.8165 -0.8187 0.6123 0.4082 e = 16.1168 0 0 0 -1.1168 0 0 0 -0.0000 |
Maple
A:=Matrix([[1,2,3],[4,5,6],[7,8,9]]); evalf(LinearAlgebra:-Eigenvectors(A))
First vector shows eigenvalues, and matrix on the right shows the eigenvectors in same order. \[ \left [ \left [\begin {array}{c} 16.1168439700 \\ - 1.1168439700 \\ 0.0 \end {array}\right ] , \left [\begin {array}{ccc} 0.2833494518 & - 1.2833494520 & 1.0 \\ 0.6416747260 & - 0.1416747258 & - 2.0 \\ 1.0 & 1.0 & 1.0 \end {array}\right ] \right ] \]