Hey,
I have a short code example which I don't understand. Why is the Groebnerbasis getting reduced in F2 but not in F1? Is there any way to see the intermediate results of the computations? I allready used option(prot), but I don't understand where s, 1s or 1s, s comes from (although I read the Online Manual).
Code:
> ring RF1= 0, (x,t), Wp(-1,0);
> def F1=nc_algebra(1,x);
> module A1=[0,1],[-t,x];
> print(std(A1));
s
1s
product criterion:0 chain criterion:0
0,t,
1,-x
> ring RF2= 0, (x,t), Wp(0,1);
> def F2=nc_algebra(1,x);
> module A2=[0,1],[-t,x];
> print(std(A2));
1s
s
product criterion:0 chain criterion:0
0,t,
1,0
Thanks for your help,
Jannis