![]() | 1 | initial version |
I would solve the problem first rather in the mathematical world, because the chain of isomorphisms Z[√−2](1−√−2)≅Z[A]/(A2+2)(1−A)≅Z[A](A2+2,1−A)≅Z[A]/(1−A)(A2+2)A→1≅Z(1+2)≅F3 shows that we have to factorize the "given" polynomial in Z[X] or Z[X,Y] or ... after passing to F3[X] or F3[X,Y] or ...
Now, starting from a polynomial over Z we can quickly pass to F3 and factorize, for instance:
R.<X> = PolynomialRing(ZZ)
R3.<x> = PolynomialRing(GF(3))
f = X^5 + 7*X^4 - 6*X^3 + 9*X^2 - 11*X + 12
R3(f)
R3(f).factor()
gives:
x^5 + x^4 + x
x * (x + 2) * (x^3 + 2*x^2 + 2*x + 2)
The good solution doing mot-a-mot the requested job (and which is easy to adapt to similar situation blindly) is detailed above with illustrating examples by rburing. This answer only want to show that things are in a special case sometimes simpler to do as expected, above, sage
passes at request via the canonical morphism Z[X]→F3[x] (coercion) from one world to the other.