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
ToRadicals[]on the result to get explicit radical expressions, as noted in this answer. More directly, tryEigenvalues[{{7, 10, -3}, {1, -4, -8}, {7, -8, 5}}, Cubics -> True]. – J. M.'s missing motivation Mar 27 '18 at 01:27