Loading [MathJax]/jax/output/HTML-CSS/jax.js
Ask Your Question
2

Factoring modulo prime ideal

asked 6 years ago

Matti gravatar image

updated 5 years ago

slelievre gravatar image

I would like to factor a polynomial with integer coefficients modulo the prime ideal generated by 12 in OK, where K=Q[2]. How can I do this using Sage?

Preview: (hide)

2 Answers

Sort by » oldest newest most voted
2

answered 6 years ago

rburing gravatar image

updated 6 years ago

Nonzero prime ideals in a Dedekind domain – such as p=(12) 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
Preview: (hide)
link
1

answered 6 years ago

dan_fulea gravatar image

I would solve the problem first rather in the mathematical world, because the chain of isomorphisms Z[2](12)Z[A]/(A2+2)(1A)Z[A](A2+2,1A)Z[A]/(1A)(A2+2)A1Z(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.

Preview: (hide)
link

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

Stats

Asked: 6 years ago

Seen: 540 times

Last updated: Apr 18 '19