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