Magma has a database containing all transitive permutation groups having degree up to 48, and one containing all primitive permutation groups with degree less than 4096.
The transitive groups up to degree 15 were determined by Greg Butler and John McKay, the groups having degree in the range 16 to 30 were determined by Alexander Hulpke [Hul05]. John Cannon and Derek Holt [CH08] have determined the transitive groups of degree 32. Derek Holt and Gordon Royle have determined the transitive groups with degrees 33 to 47 [HR19], and Derek Holt has determined the transitive groups of degree 48.
The limiting degree of the database of transitive groups.
Given a degree d in the required range, return the number of transitive groups of degree d.
Given a degree d in the required range and a positive integer n, return the n-th transitive group of degree d. Also returns a string giving a description of the group.
A string giving a description of the n-th transitive group of degree d.
A string giving a description of the transitive group G.
Given a degree d in the required range, return the first transitive 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 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 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 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 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 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 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, 8)(2, 3)(4, 5)(6, 7) (1, 3)(2, 8)(4, 6)(5, 7) (1, 5)(2, 6)(3, 7)(4, 8) (1, 2, 6, 3, 4, 5, 7), Permutation group acting on a set of cardinality 8 (1, 8)(2, 3)(4, 5)(6, 7) (1, 3)(2, 8)(4, 6)(5, 7) (1, 5)(2, 6)(3, 7)(4, 8) (1, 2, 6, 3, 4, 5, 7) (1, 2, 3)(4, 6, 5), Permutation group acting on a set of cardinality 8 (1, 2, 3, 4, 5, 6, 8) (1, 2, 4)(3, 6, 5) (1, 6)(2, 3)(4, 5)(7, 8), Permutation group acting on a set of cardinality 8 (1, 2, 3, 4, 5, 6, 8) (1, 3, 2, 6, 4, 5) (1, 6)(2, 3)(4, 5)(7, 8), Permutation group acting on a set of cardinality 8 (1, 8)(2, 3)(4, 5)(6, 7) (1, 3)(2, 8)(4, 6)(5, 7) (1, 5)(2, 6)(3, 7)(4, 8) (1, 2, 6, 3, 4, 5, 7) (1, 2, 3)(4, 6, 5) (1, 2)(5, 6), Permutation group acting on a set of cardinality 8 (1, 2)(3, 4, 5, 6, 7, 8) (1, 2, 3), Permutation group acting on a set of cardinality 8 (1, 2, 3, 4, 5, 6, 7, 8) (1, 2) ]
A transitive group process enables iteration over all transitive groups of specified degrees satisfying a given predicate, without having to create and store all such groups together.
The intrinsic function TransitiveGroupProcess may be used to create a transitive group process in Magma. The standard process functions IsEmpty, Current, CurrentLabel and Advance can then be applied to the process.
Return a group process which will iterate though all transitive groups of degree d.
Return a process which will iterate though all transitive groups with degree in the sequence S.
Return a process which will iterate though all transitive groups with degree d which satisfy the predicate f.
Return a process which will iterate though all transitive groups with degree in the sequence S which satisfy the predicate f.
Returns 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).
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
Given a transitive group G whose degree is at most 30, it is possible to obtain the number of the group in the transitive groups database which is isomorphic to G.
Raw: BoolElt Default: true
The number (and degree) of the group in the transitive groups database which is isomorphic to the transitive group G.If the optional parameter Raw is set to false, a third value is returned. In this case, the third value is a permutation conjugating the given group to the copy in the library.
> G := SmallGroup(336, IsTransitive: Search:="Insoluble"); > G; Permutation group G acting on a set of cardinality 16 (1, 14, 6, 2, 12, 8, 13, 7)(3, 15, 10, 5, 16, 9, 4, 11) (2, 5, 6)(3, 10, 9)(4, 15, 16)(7, 11, 13) > TransitiveGroupIdentification(G : Raw := false); 715 16 (1, 16, 3, 4, 2, 11, 5, 6, 9, 8, 13, 10)(7, 12, 15) > n, d, p := $1; > G^p eq TransitiveGroup(d, n); trueWe found it to be group 715 of degree 16.