ApCoCoA-1:Modular group
From ApCoCoAWiki
Revision as of 07:16, 10 September 2013 by F lorenz (talk | contribs) (New page: === <div id="Modular_group">Modular group</div> === ==== Description ==== The Modular group has the following representation: PSL(2,Z) = <a,b | a...)
Description
The Modular group has the following representation:
PSL(2,Z) = <a,b | a^2 = (ab)^3 = 1 >
Reference
Platonic tilings of Riemann surfaces: The Modular Group, Gerard Westendorp
Computation
/*Use the ApCoCoA package ncpoly.*/ // a^{-1} is a and b is invers to d Use ZZ/(2)[a,b,d]; NC.SetOrdering("LLEX"); Define CreateRelationsModular() Relations:=[]; // add the invers relations Append(Relations,[[b,d],[1]]); Append(Relations,[[d,b],[1]]); // add the relation a^2 = 1 Append(Relations,[[a^2],[1]]); // add the relation (ab)^3 = 1 Append(Relations,[[a,b,a,b,a,b],[1]]); Return Relations; EndDefine; Relations:=CreateRelationsModular(); GB:=NC.GB(Relations);