ApCoCoA-1:Knot group
From ApCoCoAWiki
Revision as of 18:15, 8 July 2014 by StrohmeierB (talk | contribs) (New page: === <div id="Figure Eight Group">Figure Eight Group</div> === ==== Description ==== ==== Reference ==== ==== Computation ==== /*Use the ApCoCo...)
Description
Reference
Computation
/*Use the ApCoCoA package ncpoly.*/ Use ZZ/(2)[a,b,c,d]; NC.SetOrdering("LLEX"); Define CreateRelationsAchterknoten() Relations:=[]; //add the inverse relations Append(Relations,[[a,c],[1]]); Append(Relations,[[c,a],[1]]); Append(Relations,[[b,d],[1]]); Append(Relations,[[d,b],[1]]); // add the relation a^(-1)bab^(-1)ab = ba^(-1)ba Append(Relations,[[c,b,a,d,a,b],[b,c,b,a]]); Return Relations; EndDefine; Relations:=CreateRelationsAchterknoten(); Relations; Gb:=NC.GB(Relations,31,1,100,1000); Gb;
Examples in Symbolic Data Format
<FREEALGEBRA createdAt="2014-07-03" createdBy="strohmeier"> <vars>a,b,c,d</vars> <uptoDeg>12</uptoDeg> <basis> <ncpoly>a*c-1</ncpoly> <ncpoly>c*a-1</ncpoly> <ncpoly>b*d-1</ncpoly> <ncpoly>d*b-1</ncpoly> <ncpoly>c*b*a*d*a*b-b*c*b*a</ncpoly> </basis> <Comment>The partial LLex Gb has 316 elements</Comment> <Comment>Achterknotengruppe</Comment> </FREEALGEBRA>