| LIB "numerDecom.lib";
ring r=0,(x,y,z),dp;
poly f1=(x3+z)*(x2-y);
poly f2=(x3+y)*(x2-z);
poly f3=(x3+y)*(x3+z)*(z2-y);
ideal I=f1,f2,f3;
def W=WitSet(I);
setring W;
W(1);
// witness point set of a pure 1-dimensional component of V(I)
W(0);
// witness point set of a pure 0-dimensional component of V(I)
L;
// list of generic linear polynomials
|