ApCoCoA-1:Ikosaeder group
From ApCoCoAWiki
Description
The Ikosaeder group has the following representation:
I = <a,b | a^2 = b^3 = (ab)^5 = 1>
Reference
Eric W. Weisstein: Math World, Icosahedral Group
Computation
/*Use the ApCoCoA package ncpoly.*/ Use ZZ/(2)[a,b]; NC.SetOrdering("LLEX"); Define CreateRelationsIkosaeder() Relations:=[]; // add the relation a^2 = 1 Append(Relations,[[a^2],[1]]); // add the relation b^3 = 1 Append(Relations,[[b^3],[1]]); // add the relation (ab)^5 = 1 Append(Relations,[[a,b,a,b,a,b,a,b,a,b],[1]]); Return Relations; EndDefine; Relations:=CreateRelationsIkosaeder(); Gb:=NC.GB(Relations);