I have a problem with the exercise.
Code:
ring A = 0 , (x,y,z), dp; // a global ordering
poly f = x2yz + xy2z + y2z + z3 + xy;
poly f1 = xy + y2 -1
poly f2 = xy;
ideal G = f1, f2;
ideal S = std(G) //a standard basis of <G>
S;
In my book I have a result:
//-> S[1]=xy
//-> S[2]=y2-1
but in Singular the returns:
//-> S[1]=x
//-> S[2]=y2-1
Why?
Cheers
and the programme returns:
//-> S[1]=x
//-> S[2]=y2-1
I have a problem with the exercise.
[code]ring A = 0 , (x,y,z), dp; // a global ordering
poly f = x2yz + xy2z + y2z + z3 + xy;
poly f1 = xy + y2 -1
poly f2 = xy;
ideal G = f1, f2;
ideal S = std(G) //a standard basis of <G>
S;[/code]
In my book I have a result:
//-> S[1]=xy
//-> S[2]=y2-1
but in Singular the returns:
//-> S[1]=x
//-> S[2]=y2-1
Why?
Cheers
and the programme returns:
//-> S[1]=x
//-> S[2]=y2-1