Factoring modulo prime ideal
I would like to factor a polynomial with integer coefficients modulo the prime ideal generated by 1−√−2 in OK, where K=Q[√−2]. How can I do this using Sage?
I would like to factor a polynomial with integer coefficients modulo the prime ideal generated by 1−√−2 in OK, where K=Q[√−2]. How can I do this using Sage?
Nonzero prime ideals in a Dedekind domain – such as p=(1−√−2) in OK – are maximal, so the quotient is a field, called the residue field in Sage:
K.<a> = QuadraticField(-2)
OK = K.ring_of_integers()
P = OK.ideal(1-a)
OK_mod_P = P.residue_field()
Then you can factor polynomials over OK/p, e.g. as follows:
sage: R.<x> = PolynomialRing(ZZ)
sage: f = x^3 + 5
sage: f_mod_P = f.change_ring(OK_mod_P); f_mod_P
x^3 + 2
sage: f_mod_P.factor()
(x + 2)^3
You can also lift the factorization and double-check the result (e.g. for fun):
sage: S.<y> = PolynomialRing(OK)
sage: factorization_lift = prod(S(g)^e for (g,e) in f_mod_P.factor()); factorization_lift
y^3 + 6*y^2 + 12*y + 8
sage: S(f) - factorization_lift
-6*y^2 - 12*y - 3
sage: S(f) - factorization_lift in S.ideal(P)
True
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.
Asked: 6 years ago
Seen: 540 times
Last updated: Apr 18 '19