Is there a way to calculate the Rational Canonical Form of an $n\times n$ integer matrix using Mathematica?
I have been perusing the documentation and web, but nothing so far.
Is there a way to calculate the Rational Canonical Form of an $n\times n$ integer matrix using Mathematica?
I have been perusing the documentation and web, but nothing so far.
I found the problem. What is needed is to factor the CharacteristicPolynomial by the MatrixMinimalPolynomial continously in order to obtain all minimal polynomials.
I did not know how to do that using one of the polynomial functions in Mathematica, so I wrote a function to do it.
This shows test matrices. The left side is the matrix, and the right side is the matrix rational form. This function called rationalMatrixForm requires 2 helper functions: companionMatrix and MatrixMinimalPolynomial
This is not optimal function by any means (uses AppendTo for example), and I am sure it can be improved, but first I wanted to make sure it is correct. I tested it on number of matrices and the results agrees with wikipdia example and mupad results. If you find a bug in it, please let me know.
rationalMatrixForm[{{2, -2, 14}, {0, 3, -7}, {0, 0, 2}}] 
Grid[{MatrixForm[#], MatrixForm@rationalMatrixForm[#]} & /@ tests, Frame -> All] 
CompanionMatrix[p_, x_] := Module[ {n, w = CoefficientList[p, x]}, w = -w/Last[w]; n = Length[w] - 1; SparseArray[{{i_, n} :> w[[i]], {i_, j_} /; i == j + 1 -> 1}, {n, n}]] MatrixMinimalPolynomial[a_List?MatrixQ, x_] := Module[{i, n = 1, qu = {}, mnm = {Flatten[IdentityMatrix[Length[a]]]}}, While[Length[qu] == 0, AppendTo[mnm, Flatten[MatrixPower[a, n]]]; qu = NullSpace[Transpose[mnm]]; n++]; First[qu].Table[x^i, {i, 0, n - 1}]] and
rationalMatrixForm[a_?(MatrixQ[#, NumericQ] &)] := Module[(*version 8/24/13 2PM*) {p, q, min, c = {}, moreFactors = True, z, x}, p = CharacteristicPolynomial[a, x]; min = MatrixMinimalPolynomial[a, x]; While[moreFactors, q = PolynomialQuotient[p, min, x]; If[q === 0, moreFactors = False; If[Not[FreeQ[p, x]], z = CompanionMatrix[p, x]; AppendTo[c, z] ], z = CompanionMatrix[min, x]; AppendTo[c, z]; p = q ] (* if *) ]; (*end WHILE more factorization needed*) SparseArray[Band[{1, 1}] -> c] ] test matrices
tests = { {{2, -2, 14}, {0, 3, -7}, {0, 0, 2}}, {{3, 4, 0}, {-1, -3, -2}, {1, 2, 1}}, {{-2, -1, -2, -1, 1, 0}, {-2, -1, -2, -1, 1, 1}, {2, 1, 2, 1, 0, 0}, {2, 1, 0, 1, -3, -1}, {-2, 0, -2, 0, 0, 0}, {2, -2, 0, 0, 0, 0}}, {{0, -4, 85}, {1, 4, -30}, {0, 0, 3}}, {{2, -2, 14, 5, 6, 7}, {0, 3, -7, 9, 20, 33}, {0, 0, 2, 9, 0, 3}, {2, -2, 14, 5, -8, 7}, {2, 2, 14, 23, 6, 7}, {2, 2, 14, 23, 6, 70}} };