|
|||||
You can build a spreadsheet that will find same for any 3 by 3 matrix that has three real eigenvalues, as follows. It is very worthwhile for you to attempt to do this. First find the trace determinant and second invariant (A) of the given matrix. Then solve the characteristic equation. This can be done by starting with very
large values say +1000 and -1000 and homing in on a solution using the divide
and conquer approach. Then find the other two eigenvalues by solving the quadratic
equation previously described. They will not always exist, since the roots of the quadratic could be complex;
if so change your matrix to make them real. It is barely possible that your matrix
is not diagonalizable, in which case it does not have three eigenvectors, but
this can only happen if two of the eigenvalues are the same. How? Then take the two by two determinants given by the first two rows and columns
23, 34 and 45. Arrange these as a column. This should be your eigenvector. If you always fail that means that you had a double eigenvalue (at least two
of your three eigenvalues are the same.) Eigenvectors are actually easier to find
in this case, when they exist. If all the eigenvalues are the same then M was a multiple of the identity,
and every vector is an eigenvector. Otherwise you can find a column eigenvector for that eigenvalue as described,
and find a row eigenvector by doing the same thing interchanging rows and columns.
Once you have three column eigenvectors, you can form them into a matrix, A and examine A-1 and A-1MA, which should come out to be diagonal. (These are very easy to find in excel using the mmult and minverse functions.) |