does anyone know how to add numbers in the exponent of a variable in the computer algebra system SINGULAR?
int n=3;
ring R=0,(x,y,z,w),dp;
ideal I=x^(n+1)-yz^(n-1)w,xy^(n-1)-z^n,x^nz-y^nw;
groebner(I);
The code above produces an error, because SINGULAR understands () braces as numbering variables, i.e. x(1)=x, x(2)=y, x(3)=z,... Furthermore, [] brackets are used for matrices, and {} bracklets don't work either.
I am completely new to SINGULAR...