Previous Up Next

11.5.2  Gröbner reduction

The greduce command finds a polynomial modulo I, where I is an ideal as in Section 11.5.1.

Examples

greduce(x*y-1,[x^2-y^2,2*x*y-y^2,y^3],[x,y])
     
1
2
 y2−1
          

that is to say xy−1≡ 1/2y2−1(mod I ) where I is the ideal generated by the Gröbner basis [x2y2,2xyy2,y3], because 1/2y2−1 is the Euclidean division remainder of xy−1 by G2=2x yy2.

greduce(x1^2*x3^2,[x3^3-1,-x2^2-x2*x3-x3^2,x1+x2+x3],[x1,x2,x3],tdeg)
     
x2           

Previous Up Next