Interreduce, Interreduced |
Syntax |
Interreduce(V:LIST of POLY):NULL Interreduce(V:LIST of VECTOR):NULL Interreduced(L:LIST of POLY):LIST of POLY Interreduced(L:LIST of VECTOR):LIST of VECTOR where V is a variable containing a list. |
Description |
Example |
UnSet FullRed; -- FullRed = False Use R ::= QQ[x,y,z]; Interreduced([x^3-xy^2+yz, xy, z]); [x^3 - xy^2 + yz, xy, z] ------------------------------- Set FullRed; -- FullRed = True (the default value) Interreduced([x^3-xy^2+yz, xy, z]); [xy, z, x^3] ------------------------------- L := [x^3-xy^2+yz, xy, z]; Interreduce(L); L; [xy, z, x^3] ------------------------------- |
See Also |