ApCoCoA-1:Other7 groups
From ApCoCoAWiki
Revision as of 14:38, 18 September 2013 by F lorenz (talk | contribs) (New page: === <div id="Other7_groups">Other groups</div> === ==== Description ==== The next group has the order |G| = 9216 and the following finite representa...)
Description
The next group has the order |G| = 9216 and the following finite representation:
G = <a,b | a^{2}b^{-3} = (ababa^{2}ab^{2})^2 = 1>
Reference
No reference available
Computation
/*Use the ApCoCoA package ncpoly.*/ // a is invers to c and b is invers to d Use ZZ/(2)[a,b,c,d]; NC.SetOrdering("LLEX"); Define CreateRelationsOther7() Relations:=[]; // add the invers relations ac = ca = bd = db = 1 Append(Relations,[[a,c],[1]]); Append(Relations,[[c,a],[1]]); Append(Relations,[[b,d],[1]]); Append(Relations,[[d,b],[1]]); // add the relation a^{2}b^{-3} = 1 Append(Relations,[[a,a,d,d,d],[1]]); // add the relation (ababa^{2}ab^{2})^2= 1 Append(Relations,[[a,b,a,b,a,a,a,b,b,a,b,a,b,a,a,a,b,b],[1]]); Return Relations; EndDefine; Relations:=CreateRelationsOther7(); GB:=NC.GB(Relations,31,1,100,1000);