gap> ######################### BEGIN COPYRIGHT MESSAGE #########################
GBNP - computing Gröbner bases of noncommutative polynomials
Copyright 2001-2010 by Arjeh M. Cohen, Dié A.H. Gijsbers, Jan Willem
Knopper, Chris Krook. Address: Discrete Algebra and Geometry (DAM) group
at the Department of Mathematics and Computer Science of Eindhoven
University of Technology.
For acknowledgements see the manual. The manual can be found in several
formats in the doc subdirectory of the GBNP distribution. The
acknowledgements formatted as text can be found in the file chap0.txt.
GBNP is free software; you can redistribute it and/or modify it under
the terms of the Lesser GNU General Public License as published by the
Free Software Foundation (FSF); either version 2.1 of the License, or
(at your option) any later version. For details, see the file 'LGPL' in
the doc subdirectory of the GBNP distribution or see the FSF's own site: https://www.gnu.org/licenses/lgpl.html
gap> ########################## END COPYRIGHT MESSAGE ##########################
gap> ### THIS IS A GAP PACKAGE FOR COMPUTING NON-COMMUTATIVE GROBNER BASES
gap>
gap> ### Last change: August 22 2001.
gap> ### amc
<#GAPDoc Label="Example06">
<Section Label="Example06"><Heading>From the Tapas book</Heading>
This example is a standard commutative Gröbner basis computation from the book
Some Tapas of Computer Algebra
<Cite Key="CohenCuypersSterk1999"/>, page 339.
There are six variables, named <M>a</M>, ... , <M>f</M> by default.
We work over the rationals and study the ideal generated by the twelve polynomials
occurring on the middle of page 339 of the Tapas book
in a project by De Boer and Pellikaan on the ternary cyclic code of length 11.
Below these are named <C>p1</C>, ..., <C>p12</C>.
The result should be the union of <M>\{a,b\}</M> and
the set of 6 homogeneous binomials
(that is, polynomials with two terms) of degree 2 forcing
commuting between <M>c</M>, <M>d</M>, <M>e</M>, and <M>f</M>.
<P/>
<!-- a = 1 b = 2
sigma_i = i+2 (i=1,2,3,4) = c,d,e,f -->
<P/>
First load the package and set the standard infolevel <Ref
InfoClass="InfoGBNP" Style="Text"/> to 2 and the time infolevel <Ref
Func="InfoGBNPTime" Style="Text"/> to 1 (for more information about the info
level, see Chapter <Ref Chap="Info"/>).
Now define some functions which will help in the construction of relations.
The function <C>powermon(g, exp)</C> will return the monomial <M>g^{exp}</M>.
The function <C>comm(a, b)</C> will return a relation forcing commutativity
between its two arguments <C>a</C> and <C>b</C>.
<Listing><![CDATA[
gap> powermon := function(base, exp)
> local ans,i;
> ans := [];
> for i in [1..exp] do ans := Concatenation(ans,[base]); od;
> return ans;
> end;;
gap> comm := function(a,b)
> return [[[a,b],[b,a]],[1,-1]];
> end;;
]]></Listing>
The relations can be shown with <Ref Func="PrintNPList" Style="Text"/>:
<Listing><![CDATA[
gap> PrintNPList(KI);
ea
a^3 + fa
a^9 + ca^3
a^81 + ca^9 + da^3
ca^81 + da^9 + ea^3
a^27 + da^81 + ea^9 + fa^3
b + ca^27 + ea^81 + fa^9
cb + da^27 + fa^81
a + db + ea^27
ca + eb + fa^27
da + fb
b^3 - b
ab - ba
ac - ca
ad - da
ae - ea
af - fa
bc - cb
bd - db
be - eb
bf - fb
cd - dc
ce - ec
cf - fc
de - ed
df - fd
ef - fe
gap> Length(KI);
27
]]></Listing>
It is sometimes easier to enter the relations as elements of a free algebra
and then use the function <Ref Func="GP2NP" Style="Text"/> or the function
<Ref Func="GP2NPList" Style="Text"/> to convert them.
This will be demonstrated below. More about converting can be read
in Section <Ref Sect="TransitionFunctions"/>.
These relations can be converted to NP form (see <Ref Sect="NP"/>) with <Ref
Func="GP2NPList" Style="Text"/>. For use in a Gröbner basis computation we have to
order the NP polynomials in <C>KI</C>.
This can be done with <Ref Func="CleanNP" Style="Text"/>.
The Gröbner basis can now be calculated with <Ref Func="SGrobner"
Style="Text"/> and printed with <Ref Func="PrintNPList" Style="Text"/>.
<Listing><![CDATA[
gap> GB := SGrobner(KI);;
#I number of entered polynomials is 27
#I number of polynomials after reduction is 8
#I End of phase I
#I End of phase II
#I List of todo lengths is [ 0 ]
#I End of phase III
#I G: Cleaning finished, 0 polynomials reduced
#I End of phase IV
#I The computation took 748 msecs.
gap> PrintNPList(GB);
a
b
dc - cd
ec - ce
ed - de
fc - cf
fd - df
fe - ef
]]></Listing>
</Section>
<#/GAPDoc>
¤ Dauer der Verarbeitung: 0.24 Sekunden
(vorverarbeitet)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.