/* generators for maximal subgroups of ON.2 */ GeneratorsONAutmMax1 := function (a,b) w1 := a; w2 := b; w3:=w2*w2; w4:=w1*w3; w5:=w4*w4; w6:=w5^-1; w7:=w3*w5; w1:=w6*w7; return [w1,w2]; end function; /* list of subgroups of ON.2 */ DataONAutm := function () F := SLPGroup (2); L := [ rec , rec ]; return L; end function; /* code to find standard generators of ON.2 and produce listing of maximal subgroups */ MaximalsONAutm := function (G) x, y := StandardGeneratorsONAutm(G); if Type(x) eq BoolElt then "Unable to find Standard Generators"; return false; end if; G := sub; return ListMaximals(G, "ON.2", DataONAutm()); end function;