Hi all;
the coefficients of the leading terms of the generators of a reduced Groebner basis should be equal to one (1) as far as I know. Now consider the following code:
Code:
> ring r=0,(x,y),lp;
> ideal i=x4+x2+xy3+2,x2+y2-1;
> option(redSB);
> ideal g=std(i);
> g;
g[1]=2y8-7y6+17y4-24y2+16
g[2]=16x-6y7+13y5-23y3+20y
>
Here the leading terms have the coefficients 2 and 16. How comes? What am I missing?