0

I am trying to simply find the Eigenvalues of any matrix. I have set up M to be a 3 by 3 matrix filled with random values:

M = Table[RandomInteger[{-10, 10}], {i, 1, 3, 1}, {j, 1, 3, 1}]

This produces something like:

 {{7, 10, -3}, {1, -4, -8}, {7, -8, 5}}. 

Then I ask Mathematica to find the Eigenvalues of the matrix:

Eigenvalues[M]

It returns this:

{Root[1258 - 66 #1 - 8 #1^2 + #1^3 &, 3], 
 Root[1258 - 66 #1 - 8 #1^2 + #1^3 &, 2], 
 Root[1258 - 66 #1 - 8 #1^2 + #1^3 &, 1]}

I know that is know the correct answer, but I am not sure what I am doing wrong. The only matrix I have tried for which Eigenvalues works properly is the Identity matrix

J. M.'s missing motivation
  • 124,525
  • 11
  • 401
  • 574
Cory Russ
  • 11
  • 1

0 Answers0