Processing math: 100%
Ask Your Question
2

Solving a polynomial system in a quotient ring

asked 4 years ago

Jose Brox gravatar image

updated 4 years ago

I want to compute all solutions in Z9[2,x], where x is such that (x+2)2=2(x+2), of the equation

X2=1.

I'm first defining the polynomial ring over Z9 in variables x,y, then factoring by the ideal generated by

y22,(x+y)22(x+y),

to get the ring S, but then I don't know which command to use in order to get the solutions of X21. I have tried "solve" and "variety" (defining S[X] first and then the ideal of X21), but they do not seem to work. The code up to this point is just

R.<x,y> = PolynomialRing(IntegerModRing(9),order='lex')
J= R.ideal(x^2-2,(x+y)^2-2*(x+y))
S=R.quotient(J)

Which function should I use?

Preview: (hide)

Comments

Just make a triple loop.

FrédéricC gravatar imageFrédéricC ( 4 years ago )

@FrédéricC Yes, in this particular case I can do it, but I'd like to learn how to tackle this kind of computation more in general. I'm going to need computations over infinite rings too. The specific mention to Z9 is in case that some module does not work well over rings which are not fields.

Jose Brox gravatar imageJose Brox ( 4 years ago )

@FrédéricC In fact that presentation of the problem was a mistake on my part, since I don't know if the linear combinations are going to span the whole ring. I need some function giving the set of solutions reduced by the Gröbner basis. Thank you for your help!

Jose Brox gravatar imageJose Brox ( 4 years ago )

1 Answer

Sort by » oldest newest most voted
1

answered 4 years ago

dan_fulea gravatar image

Here is a possibility to work.

Let A be a ring such that 2 is invertible, for example Z/3 or Z/9. We denote by 12 its inverse. Assume 2 is not a square in A. (This is the case in the above examples.)

Consider A[a] to be the ring A[Y]/(Y22), where A[Y] is the polynomial ring in Y over A. (And a is Y modulo the ideal generated by (Y22). So formally, a=2.

Now observe that the equation satisfied by the x element in the OP, (x+a)2=2(x+a), can be written as (x+a)(x+a2)=0 . The two factors are relatively prime, in fact 12(x+a)12(x+a2)=1 . This means that the ring R=A[a][X] / ( (X+a)(X+a2) ) is isomorphic to two copies of A[a] via the map RA[a]×A[a] , f(X)(f(a),f(2a)) . The inverse map takes (s,t)A[a]×A[a] and maps it into 12t(X+a)12s(X+a2).

Now we have to solve Z2=1 in the ring A[a]×A[a]. This can be done also manually. An element of the shape Z=u+vaA[a], u,vA satisfies Z2=1 iff (u2+2v2)+2auv=1. In case A has zero divisors we have to take care of uv=0 somehow. The possible values for u,v that may lead to a solution satisfy at any rate u3=u and 2v3=v. Together with Z, also its "conjugate" ˉZ=uva is also a solution, and the "norm" N(Z)=ZˉZ=(u+va)(uva)=u22v2 is 1. So it is a good idea to search for solutions of this "Pell equation" over A.

Let us now write some lines of code for the given case.

The brute force search is:

r = Zmod(9)
R.<a,x> = PolynomialRing(r, order='lex')
J = R.ideal( [a^2-2, (x+a)^2-2*(x+a)] )
S = R.quotient(J)

for [s, t, u] in cartesian_product([r, r, r]):
    Z = S(s + t*a + u*x)
    if Z^2 == S(1):
        print(f"Z = {s} + {t} a + {u} x")

Results:

Z = 1 + 0 a + 0 x
Z = 1 + 8 a + 8 x
Z = 8 + 0 a + 0 x
Z = 8 + 1 a + 1 x

This fits with the situation of finding all points Z=(Z1,Z2) over the ring R=A[a]=Z/9[a]=Z/9[2] with Z2=(1,1)=1R.

sage: r = Integers(9)                                                                                                         
sage: R.<Y> = r[]                                                                                                             
sage: Q.<a> = R.quotient(Y^2-2)                                                                                               
sage: a^2                                                                                                                     
2
sage: for r1, r2 in cartesian_product([r, r]): 
....:     Z1 = r1 + r2*a 
....:     if Z1^2 == Q(1): 
....:         print(Z1) 
....:                                                                                                                         
1
8

These are the only Hensel lifts of the corresponding units over Z/3:

sage: U.<A> = PolynomialRing(GF(3))                                                                                           
sage: F.<a> = GF(3^2, modulus = A^2-2)                                                                                        
sage: a^2                                                                                                                     
2
sage: [ f for f in F if f^2 == F(1) ]                                                                                         
[2, 1]
sage: # of course, this is a field...
Preview: (hide)
link

Comments

I guess the equality test in S uses Gröbner bases over Z/nZ, implemented in Singular?

rburing gravatar imagerburing ( 4 years ago )

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: 4 years ago

Seen: 1,128 times

Last updated: Jun 30 '20