/* Group 4.1 downloaded from the LMFDB on 14 March 2026. */ /* Various presentations of this group are stored in this file: GPC is polycyclic presentation GPerm is permutation group GLZ, GLFp, GLZA, GLZq, GLFq if they exist are matrix groups Many characteristics of the group are stored as booleans in a record: Agroup, Zgroup, abelian, almost_simple,cyclic, metabelian, metacyclic, monomial, nilpotent, perfect, quasisimple, rational, solvable, supersolvable The character table is stored as chartbl_n_i where n is the order of the group and i is which group of that order it is. Conjugacy classes are stored in the variable 'C' with elements from the group 'G'. */ /* Constructions */ GPC := PCGroup([2, -2, -2, 4]); a := Explode([GPC.1]); AssignNames(~GPC, ["a", "a2"]); GPerm := PermutationGroup< 4 | (1,4,2,3), (1,2)(3,4) >; GLZ := MatrixGroup< 2, Integers() | [[0, -1, 1, 0]] >; GLFp := MatrixGroup< 2, GF(3) | [[0, 1, 2, 0]] >; /* Booleans */ RF := recformat< Agroup, Zgroup, abelian, almost_simple, cyclic, metabelian, metacyclic, monomial, nilpotent, perfect, quasisimple, rational, solvable, supersolvable : BoolElt >; booleans_4_1 := rec< RF | Agroup := true, Zgroup := true, abelian := true, almost_simple := false, cyclic := true, metabelian := true, metacyclic := true, monomial := true, nilpotent := true, perfect := false, quasisimple := false, rational := false, solvable := true, supersolvable := true>; /* Character Table */ G:= GPC; C := SequenceToConjugacyClasses([car |< 1, 1, Id(G)>,< 2, 1, a^2>,< 4, 1, a>,< 4, 1, a^3>]); CR := CharacterRing(G); x := CR!\[1, 1, 1, 1]; x`IsCharacter := true; x`Schur := 1; x`IsIrreducible := true; x := CR!\[1, 1, -1, -1]; x`IsCharacter := true; x`Schur := 1; x`IsIrreducible := true; K := CyclotomicField(4: Sparse := true); S := [ K |1,-1,-1*K.1,K.1]; x := CR!S; x`IsCharacter := true; x`Schur := 0; x`IsIrreducible := true; K := CyclotomicField(4: Sparse := true); S := [ K |1,-1,K.1,-1*K.1]; x := CR!S; x`IsCharacter := true; x`Schur := 0; x`IsIrreducible := true; _ := CharacterTable(G : Check := 0); chartbl_4_1:= KnownIrreducibles(CR);