Go to the first, previous, next, last section, table of contents.


poly_grobner_basis

poly_grobner_basis(I)
: It returns the Grobner basis of I.
poly_grobner_basis(I | order=key0,v=key1)
: This function allows optional variables order, v

The optional variable v is a list of variables which defines the ring of polynomials.

Example:

 A = poly_grobner_basis([x^2+y^2-4,x*y-1]|order=2,v=[y,x]);


Go to the first, previous, next, last section, table of contents.