Magma has a database containing all transitive permutation groups having degree up to 22, and one containing all primitive permutation groups with degree up to 50.
The transitive groups up to degree 15 were determined by Greg Butler and John McKay, while the groups having degree in the range 16 to 22 have recently (1997) been determined by Alexander Hulpke.
The list of primitive groups was prepared by C. C. Sims and, while it is believed to be complete, users assuming the completeness of the list do so at their own risk.
The limiting degree of the database of transitive (primitive) groups.
Given a degree d in the required range, return the number of transitive (primitive) groups of degree d.
Given a degree d in the required range and a positive integer n, return the n-th transitive (primitive) group of degree d. Also returns a string giving a description of the group.
A string giving a description of the n-th transitive (primitive) group of degree d.
Given a degree d in the required range, return the first transitive (primitive) group of degree d. Also returns a string giving a description of the group.
Given a degree d in the required range and a predicate f (as a function or intrinsic), return the first transitive (primitive) group of degree d which satisfies f. Also returns a string giving a description of the group.
Given a sequence S of degrees and a predicate f (as a function or intrinsic), return the first transitive (primitive) group with degree in S which satisfies f. Also returns a string giving a description of the group.
Warning: BoolElt Default: true
Return a sequence of all transitive (primitive) groups of degree d. Some degrees will produce a very large sequence of groups -- in such cases a warning will be printed unless the user specifies Warning := false.
Warning: BoolElt Default: true
Given a sequence S of degrees, return a sequence of all transitive (primitive) groups with degree in S. The resulting sequence may be very long -- in such cases a warning will be printed unless the user specifies Warning := false.
Given an integer d and a predicate (function or intrinsic) f, return a sequence containing all transitive (primitive) groups G of degree d satisfying f(G) eq true.
Given a sequence S of degrees and a predicate (function or intrinsic) f, return a sequence containing all transitive (primitive) groups G with degree in S satisfying f(G) eq true.
> NumberOfTransitiveGroups(8); 50 > TransitiveGroup(8, 3); Permutation group acting on a set of cardinality 8 (1, 2)(3, 4)(5, 6)(7, 8) (1, 4)(2, 3)(5, 8)(6, 7) (1, 8)(2, 7)(3, 6)(4, 5) E(8) = 2[x]2[x]2 > S := TransitiveGroups(8, IsPrimitive); > #S; 7 > S; [ Permutation group acting on a set of cardinality 8 (1, 2, 3, 4, 5, 6, 7) (1, 8)(2, 4)(3, 7)(5, 6), Permutation group acting on a set of cardinality 8 (2, 7, 4, 8, 3, 5, 6) (1, 5, 3, 7, 2, 8)(4, 6), Permutation group acting on a set of cardinality 8 (1, 4, 6)(2, 8, 3) (1, 5, 7, 6)(2, 3, 4, 8), Permutation group acting on a set of cardinality 8 (2, 3, 8, 6, 7, 5, 4) (1, 4, 2, 6, 8, 3, 7, 5), Permutation group acting on a set of cardinality 8 (1, 6)(2, 4, 3, 7) (1, 4, 2, 6)(3, 7, 8, 5), Permutation group acting on a set of cardinality 8 (1, 2, 3) (1, 2)(3, 4, 5, 6, 7, 8), Permutation group acting on a set of cardinality 8 (1, 2) (1, 2, 3, 4, 5, 6, 7, 8) ] > > NumberOfPrimitiveGroups(8); 7 > PrimitiveGroup(8, 1); Permutation group acting on a set of cardinality 8 (1, 2, 3, 4, 5, 6, 7) (1, 8)(2, 4)(3, 7)(5, 6) AGL(1, 8)
A transitive or primitive group process enables iteration over all transitive (primitive) groups of specified degrees satisfying a given predicate, without having to create and store all such groups together.
Transitive and primitive group processes are created in Magma via the functions
TransitiveGroupProcess and PrimitiveGroupProcess (in various forms).
The standard process functions IsEmpty, Current,
CurrentLabel and Advance can then be applied to the process.
TransitiveGroupProcess(d) : RngIntElt -> Process
Return a group process which will iterate though all transitive (primitive) groups of degree d.
Return a process which will iterate though all transitive (primitive) groups with degree in the sequence S.
Return a process which will iterate though all transitive (primitive) groups with degree d which satisfy the predicate f.
Return a process which will iterate though all transitive (primitive) groups with degree in the sequence S which satisfy the predicate f.
True if the process p has passed its last group.
Return the current group of the process p, as well as a description of the group.
Return the label of the current group of the process p. That is, return d and n such that the current group is TransitiveGroup(d, n) (or PrimitiveGroup(d, n)).
Move the process p to its next group.
> p := TransitiveGroupProcess(5); > while not IsEmpty(p) do > CurrentLabel(p), #Current(p); > Advance( p); > end while; 5 1 5 5 2 10 5 3 20 5 4 60 5 5 120