OpenMath Content Dictionary: polygb1

Canonical URL:
http://www.win.tue.nl/~amc/oz/om/cds/polygb1.ocd
CD File:
polygb1.ocd
CD as XML Encoded OpenMath:
polygb1.omcd
Defines:
completely_reduced, groebner, groebner_basis, groebnered, reduce
Date:
2004-06-01
Version:
1 (Revision 2)
Review Date:
2006-06-01
Status:
experimental

This CD contains operators for Groebner basis computations with polynomial expressions. It is derived from surgery of polyd.

     Definition of some constructors

groebner_basis

Description:

The constructor for a Groebner basis (reduced, minimal). The first is a list of variables, the second argument is an ordering, the third is the Groebner Basis itself (with respect to the ordering) that should be represented as a polynomial expression.

Signatures:
sts


[Next: groebner] [Last: reduce] [Top]
     Definition of operations

groebner

Description:

The groebner basis (reduced, minimal) of a set of polynomials, with respect to a given ordering. First argument is a list of variables, the second is an ordering, the third is a list of polynomials. A program that can compute the basis is required to return a "groebner_basis" object.

Example:
groebner ( ( x , y ) , ordering ( lexicographic ) , x 2 y - 1 y 2 x - 1 )
Signatures:
sts


[Next: groebnered] [Previous: groebner_basis] [Top]

groebnered

Description:

The constructor for a Groebner basis (reduced, minimal). The first argument is an ordering, the second is the Groebner Basis itself (with respect to the ordering) that should be represented as a DMPL.

Signatures:
sts


[Next: completely_reduced] [Previous: groebner] [Top]

completely_reduced

Description:

This attribute, attached to a groebnered object, says 'true' if the base is fully reduced, i.e. no monomial is divisible by the leading monomial of any other polynomial.

Signatures:
sts


[Next: reduce] [Previous: groebnered] [Top]

reduce

Description:

The reduction of a polynomial with respect to a list P of polynomials. First argument is a polynomial expression p, the second argument is the list P of polynomials, the third argument is a list of variables, the fourth argument is a monomial reduction ordering. A program implementing this operation should return a polynomial which represents a polynomial reduced from p with respect to P. This means that p is expressible as the sum of the returned polynomial and a linear combination of the polynomials from P with coefficients being polynomials in the variables given in the third argument, and that no monomial of the returned polynomial is divisible by the leading monomial of an element from P.

Example:
reduce ( x 3 , y 3 - 1 x - y , ( x , y ) , ordering ( lexicographic ) )
Signatures:
sts


[First: groebner_basis] [Previous: completely_reduced] [Top]