| LIB "nctools.lib";
LIB "ncalg.lib";
def U = makeUsl(2);
// U is the U(sl_2) algebra
setring U;
ideal I = e^3, f^3, h^3-4*h;
option(redSB);
ideal J = slimgb(I);
J;
==> J[1]=h3-4h
==> J[2]=fh2-2fh
==> J[3]=eh2+2eh
==> J[4]=2efh-h2-2h
==> J[5]=f3
==> J[6]=e3
// compare slimgb with std:
ideal K = std(I);
print(matrix(NF(K,J)));
==> 0,0,0,0,0,0
print(matrix(NF(J,K)));
==> 0,0,0,0,0,0
// hence both Groebner bases are equal
;
// another example for exterior algebras
ring r;
def E = Exterior();
setring E; E;
==> // coefficients: ZZ/32003
==> // number of vars : 3
==> // block 1 : ordering dp
==> // : names x y z
==> // block 2 : ordering C
==> // noncommutative relations:
==> // yx=-xy
==> // zx=-xz
==> // zy=-yz
==> // quotient ring from ideal
==> _[1]=z2
==> _[2]=y2
==> _[3]=x2
slimgb(xy+z);
==> _[1]=yz
==> _[2]=xz
==> _[3]=xy+z
|