Basis Algorithms - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


Algorithms used by Groebner[Basis]

 

Calling Sequence

Parameters

Description

Examples

References

Calling Sequence

Basis(J, tord, method=meth)

Parameters

J

-

a list or set of polynomials or a PolynomialIdeal

tord

-

a MonomialOrder, a ShortMonomialOrder, or a name

meth

-

one of the methods described below

Description

• 

The Groebner[Basis] command currently relies on a combination of five different algorithms to compute Groebner bases for various monomial orders and domains.  This help page documents these algorithms and their relative performance characteristics to help you decide what algorithm to use should the default choice prove unsatisfactory.  The algorithm is specified using an optional argument method=meth.

• 

method=fgb runs a compiled C implementation of the F4 algorithm. It supports rational number and integer mod p coefficients, where p < 2^31. It supports tdeg orders and lexdeg orders with two blocks of variables. It does not support parameters (that is, coefficients in a rational function field) or the output=extended option.  The algorithm is Monte-Carlo probabilistic and the probability of error is expected to be less than 10^(-18).

• 

method=maplef4 runs a Maple implementation of the F4 algorithm.  This implementation supports all monomial orders and coefficient fields as well as computations in non-commutative Ore algebras.  This is an exact implementation which does not use modular methods. The output=extended option is currently not supported.

• 

method=buchberger runs the traditional Maple implementation of the Buchberger algorithm. This algorithm supports all domains, monomial orders and options such as output=extended. It is generally outperformed by F4 in most situations, but one notable exception is when a polynomial has been added to a Groebner basis and the basis is being recomputed. The implementation is based on Gebauer and Moller and uses the normal selection strategy.

• 

method=fglm runs the Groebner basis conversion algorithm of Faugere, Gianni, Lazard, and Mora. This algorithm supports all commutative domains, but requires the ideal to be zero-dimensional. See the Groebner[FGLM] help page for more details.  When this method is specified, Groebner[Basis] will choose one of the known Groebner bases (or compute one if none are known) and run Groebner[FGLM].

• 

method=walk runs the Groebner Walk conversion algorithm of Collart, Kalkbrener, and Mall, which supports all commutative domains and monomial orders.   See the Groebner[Walk] help page for more details.  When this method is specified, Groebner[Basis] will choose one of the known Groebner bases (or compute one if none are known) and run Groebner[Walk].  The Groebner walk is typically slower than FGLM for zero-dimensional ideals.

• 

In addition to the algorithms above, you can specify an overall strategy using the method=... option and Groebner[Basis] will choose whatever algorithms are appropriate.  The strategies are as follows:

• 

method=direct runs the fastest general purpose direct method.  This is currently the compiled F4 or Maple's F4 as a fallback. As better algorithms are implemented, this strategy will be updated to reflect the state-of-the-art method. Thus, calling Groebner[Basis] with method=direct is a way to ensure that your code always uses the fastest direct algorithm; even on future Maple releases.

• 

method=convert runs the fastest applicable conversion method, which is either FGLM or the Groebner Walk, depending on the monomial order and whether the ideal is zero-dimensional. This strategy is recommended for monomial orders that eliminate variables.  For 'plex', 'lexdeg' and 'prod' orders, the strategy is to run FGLM if possible.  For all other orders and for non-zero-dimensional ideals, the Groebner Walk is used.

• 

method=default runs the default strategy, which is subject to change in the future. Currently this is method=direct for 'tdeg', 'wdeg', 'grlex' and 'matrix' orders and non-commutative problems, and method=convert for 'plex', 'lexdeg' and 'prod' orders in the commutative case.

• 

Setting infolevel[GroebnerBasis] to a value between 1 and 5 directs all of the algorithms to print information about their progress and performance.

Examples

withGroebner&colon;

infolevelGroebnerBasis2&colon;

Fx22xz+5&comma;xy2+yz3&comma;3y28z3

Fx22xz+5&comma;yz3+xy2&comma;8z3+3y2

(1)

BasisF&comma;tdegx&comma;y&comma;z

-> MGb
F4 algorithm
1: prime=238318543
  0%  use 4 of 4, 0.000 sec
2: prime=1415564323
  0%  0 out of 4, 0.001 sec
3: prime=1098198263
4: prime=1926818393
5: prime=1663778573
6: prime=786356443
7: prime=186918653
8: prime=1786233487
9: prime=923799343
10: prime=431068621
11: prime=2097316327
12: prime=1156076123
13: prime=1298611507
14: prime=1719436909
15: prime=222967273
16: prime=1106855977
17: prime=308518517
18: prime=1970340923
19: prime=703809263
20: prime=868707661
21: prime=894261703
22: prime=967518031
23: prime=225086261
24: prime=219377089
100%  4 out of 4, 0.001 sec
24 primes
basis:       0.001
chrem:       0.001
iratr:       0.001
other:       0.001
total:       0.004
 total time:         0.006 sec

x22xz+5&comma;8z33y2&comma;8xy2+3y3&comma;9y4+48y3z+320y2

(2)

BasisF&comma;grlexx&comma;y&comma;z

-> F4 algorithm
 total time:         0.004 sec

x22xz+5&comma;8z33y2&comma;8xy2+3y3&comma;9y4+48y3z+320y2

(3)

BasisF&comma;plexx&comma;y&comma;z

-> FGLM algorithm
FGLM algorithm
1: prime=1296078733
  0%  5 elements, 0.000 sec
2: prime=1174186799
  0%  0 out of 5, 0.001 sec
3: prime=1507961291
100%  5 out of 5, 0.000 sec
3 primes
basis:       0.001
chrem:       0.000
iratr:       0.000
other:       0.000
total:       0.001

9z996z8+240z6+1600z3&comma;3z8+32z740z5+80yz3&comma;8z3+3y2&comma;9z896z7+120z5+640xz3&comma;x22xz+5

(4)

IsZeroDimensionalF

true

(5)

BasisF&comma;lexdegx&comma;y&comma;z&comma;method=walk

-> Groebner Walk
 total time:         0.001 sec

8z33y2&comma;9y4+48y3z+320y2&comma;8xy2+3y3&comma;x22xz+5

(6)

BasisF&comma;lexdegx&comma;y&comma;z&comma;method=direct

-> MGb
F4 algorithm
1: prime=699128341
  0%  use 0 of 5, 0.000 sec
2: prime=1258666183
  0%  0 out of 5, 0.000 sec
3: prime=1316887973
100%  5 out of 5, 0.001 sec
3 primes
basis:       0.000
chrem:       0.001
iratr:       0.000
other:       0.000
total:       0.001
 total time:         0.001 sec

9z996z8+240z6+1600z3&comma;3z8+32z740z5+80yz3&comma;9z896z7+120z5+640xz3&comma;8z3+3y2&comma;x22xz+5

(7)

BasisF&comma;plexz&comma;y&comma;x&comma;method=direct

-> F4 algorithm
 total time:         0.100 sec

3x1264x11+90x10960x9+1125x84800x7+7500x68000x5+28125x4+56250x2+46875&comma;8x7+3x6y+120x5+45x4y+600x3+225x2y+1000x+375y&comma;9x11+192x10255x9+2560x82925x7+9600x616875x548750x340000x2+5625y256250x&comma;3x1164x10+90x9960x8+1125x74800x6+7500x58000x4+28125x3+46875x+18750z

(8)

BasisF&comma;wdeg1&comma;2&comma;3&comma;x&comma;y&comma;z&comma;method=convert

-> Groebner Walk
 total time:         0.029 sec

x2+2xz5&comma;x43xy2+10x2+20z2+25&comma;8xy2+3y3&comma;x5+3x2y215x350x50z&comma;8x6+3x5y+120x4+45x3y+600x2+150xy+150yz+1000&comma;3x864x7+90x6960x5+900x44800x3+450xy2+450y2z+3750x28000x+5625

(9)

Non-commutative examples (see Basis_details for more information)

withOre_algebra&colon;

infolevelGroebnerBasis4&colon;

N3&colon;

Adiff_algebraseqDi&comma;xi&comma;i=1..N&comma;comm=a&comma;b&comma;seqci&comma;i=1..N&comma;polynom=seqxi&comma;i=1..N&colon;

S`+`seqxiDi&comma;i=1..N&colon;

Pskew_productS+a&comma;S+b&comma;A&colon;

Fseqskew_productDi&comma;xiDi+ci1&comma;AP&comma;i=1..N

FD12x1+D1c1D12x122D1D2x1x22D1D3x1x3a+b+1x1D1D22x222D2D3x2x3a+b+1x2D2D32x32a+b+1x3D3ab&comma;D22x2+D2c2D12x122D1D2x1x22D1D3x1x3a+b+1x1D1D22x222D2D3x2x3a+b+1x2D2D32x32a+b+1x3D3ab&comma;D32x3+D3c3D12x122D1D2x1x22D1D3x1x3a+b+1x1D1D22x222D2D3x2x3a+b+1x2D2D32x32a+b+1x3D3ab

(10)

tordtdegseqDi&comma;i=1..N&comma;seqxi&comma;i=1..N

tordtdegD1&comma;D2&comma;D3&comma;x1&comma;x2&comma;x3

(11)

TMonomialOrderA&comma;tord&colon;

GBasisF&comma;T&colon;

-> F4 algorithm
 domain: SkewAlgebra   coeffs: rat_fcn
 basis: 1 of 3, syzygies: 3 of 3, degree: 4
 0 x 0 with 3 rhs
 basis: 2 of 5, syzygies: 1 of 3, degree: 4
 2 x 2 with 1 rhs
 basis: 3 of 6, syzygies: 2 of 2, degree: 5
 4 x 4 with 2 rhs
 basis: 5 of 8, syzygies: 4 of 4, degree: 6
 12 x 12 with 4 rhs
 basis: 8 of 11, syzygies: 11 of 12, degree: 7
 39 x 39 with 11 rhs
 basis: 10 of 13, syzygies: 10 of 10, degree: 8
 75 x 75 with 10 rhs
 basis: 12 of 15, syzygies: 7 of 7, degree: 9
 94 x 94 with 7 rhs
 symbolic prc        0.220 sec
 inter reduce        0.001 sec
 update pairs        0.008 sec
 reduce basis        0.010 sec
 total time:         0.240 sec
-----------------------------

Groebner:-LeadingMonomialG&comma;T

D22x2&comma;D12x1&comma;D1D2x1x2&comma;D1D32x1x3&comma;D1D2D3x1x3&comma;x2D2D32x1x3&comma;D12D2D3x2x3&comma;D2D33x1x3&comma;D1D2D32x22x3&comma;D12D33x2x3&comma;D34x12x32&comma;D12D22D32x32

(12)

References

  

Buchberger, B. "Grobner Bases: An algorithmic method in polynomial ideal theory." In Multidimensional systems theory, pp. 184-232, Reidel, 1985.

  

Collart, S.; Kalkbrener, M.; and Mall, D. "Converting Bases with the Grobner Walk."  J. Symbolic Comput., Vol. 3, No. 4, (1997): 465-469.

  

Faugere, J. "A New Efficient Algorithm for Computing Grobner Bases (F4)." Journal of Pure and Applied Algebra, Vol. 139, No. 1-3, (1999): 61-88.

  

Faugere, J.; Gianni, P.; Lazard, D.; and Mora, T. "Efficient computation of zero-dimensional Grobner bases by change of ordering." J. Symbolic Comput., Vol. 16, (1993): 329-344.

  

Gebauer, R., and Moller, H. "On an installation of Buchberger's algorithm." J. Symbolic Comput., Vol. 6, (1988): 275-286.

  

Pearce, R., and Monagan, M. "A Sparse Algorithm for Polynomial Division with Application to F4." in preparation, 2006.

See Also

Basis

Basis_details

LeadingMonomial

MonomialOrder