GroupTheory
SearchTransitiveGroups
search for transitive groups satisfying specified properties
Calling Sequence
Parameters
Description
Examples
Compatibility
SearchTransitiveGroups( spec, formopt )
spec
-
expression sequence of search parameters
outopt
(optional) an option of the form output = X, where X is one of "list" (the default), "iterator", or "count"
formopt
(optional) an option of the form form = X, where X is one of "id" (the default), or "permgroup"
The SearchTransitiveGroups( spec ) command searches Maple's transitive groups database for groups satisfying properties specified in a sequence spec of search parameters. This allows you to locate examples of transitive permutation groups that have specific, supported properties, or combinations of those properties.
The output option controls the type of output produced by the SearchTransitiveGroups command, while the form option controls (depending upon the form selected) what form the content of that output has.
Use the output = X option, for which the default is the string "list", to control what the SearchTransitiveGroups command produces. By default (with output = "list"), a sequence of either identifiers or permutation groups is returned. Specifying output = "iterator" causes SearchTransitiveGroups to instead return an iterator object which produces either identifiers or permutation groups as you iterate over the object. The output = "count" option instructs the SearchTransitiveGroups command to return just the number of groups in the database that satisfy the search query indicated by spec. In this case, the form option has no effect, as the "form" of the output is necessarily just a non-negative integer.
Use the form = X option to control the form of the output from this command when the output is either a sequence or an iterator object. By default, an expression sequence of IDs for the TransitiveGroups database is returned. This is the same as specifying form = "id". To have an expression sequence of permutation groups, use the form = "permgroup" option.
Note that the IDs returned in the default case are the IDs of the groups within the TransitiveGroups database. These may differ from the IDs for the same group if it happens to be present in another database, which has its own set of group IDs. In particular, the first member of the TransitiveGroups database ID is the degree of the group, not its order.
So, for example, the symmetric group of degree 3 appears in the database of transitive groups with ID equal to (3, 2), but appears also in the database of small groups with ID equal to (6, 1).
The valid search parameters may be grouped into several classes, as follows.
Boolean Search Parameters
Boolean search parameters p, such as regular, can be specified in one of the forms p = true, p = false or just p, which is equivalent to p = true. If the boolean search parameter p is true, then only groups satisfying the corresponding predicate are returned. If the boolean search parameter p is false, then only groups that do not satisfy the predicate are returned. Leaving a boolean search parameter unspecified causes the SearchTransitiveGroups command to return groups that do, and do not, satisfy the corresponding predicate.
Several boolean search parameters are currently supported, and are described in the following table.
primitive
describes the class of primitive groups
regular
describes the class of regular groups
frobenius
describes the class of Frobenius permutation groups
cyclic
describes the class of cyclic groups
abelian
describes the class of Abelian groups
nilpotent
describes the class of nilpotent groups
soluble
describes the class of soluble groups
perfect
describes the class of perfect groups
simple
describes the class of simple groups
quasisimple
describes the class of quasi-simple groups
almostsimple
describes the class of almostsimple groups
Some properties, such as primitive and frobenius describe permutation group properties, that is, properties of the action of the group. Others, such as simple and nilpotent, described abstract group theoretic properties independent of how the group acts.
Numeric Search Parameters
Maple supports search parameters that describe numeric invariants of transitive groups. Each has a positive integer value. A numeric search parameter p may be given in the form p = n, for some specific value n, or by indicating a range, as in p = a .. b. In the former case, only groups for which the numeric parameter has the value n will be returned. In the case in which a range is specified, groups for which the numeric invariant lies within the indicate range (inclusive of its end-points) are returned. You can also use inequalities of the form p < n (or p > n) and p <= n (or p >= n), and these can be freely mixed. Thus, for example, specifying both p >= a and p <= b is equivalent to using a range in the form p = a .. b.
The supported numeric search parameters are listed in the following table.
degree
indicates the degree of the group
order
indicates the order (cardinality) of the group
rank
indicates the rank (as a permutation group) of the group
transitivity
indicates the transitivity of the group
Since the permutation groups in the database of transitive groups all act on an initial segment of the positive integers, the degree property is equivalent to the support length and also the maximum of the support of the group. See Degree, MaxSupport and SupportLength.
Subgroup Search Parameters
Several subgroup search parameters are supported. These describe the isomorphism type of various subgroups of a transitive group by specifying the Small Group ID (as returned by the IdentifySmallGroup command). (A subgroup of a transitive group need not be transitive.)
For a subgroup search parameter p, passing an equation of the form p = [ord, id] causes the SearchTransitiveGroups command to return only groups whose subgroup corresponding to p are isomorphic to the small group ord/id to be returned. Passing an equation of the form p = ord causes the SearchTransitiveGroups command to return only groups whose subgroup corresponding to p have order ord.
The subgroup search parameters are described briefly in the following table.
center
specifies the center of a group
centre
specifies the centre of a group
socle
specifies the socle of a group
solubleradical
specifies the soluble radical of a group
fittingsubgroup
specifies the Fitting subgroup of a group
with⁡GroupTheory:
Count the total number of groups in the database.
SearchTransitiveGroups⁡output=count
162594
Find the doubly-transitive groups of degree 6
id≔SearchTransitiveGroups⁡degree=6,transitivity=2
id≔6,12
G≔TransitiveGroup⁡op⁡id
G≔1,2,3,4,6,1,45,6
Degree⁡G
6
Which transitive groups in the database have order 24 and are multiply transitive?
id≔SearchTransitiveGroups⁡order=24,1<transitivity
id≔4,5
Transitivity⁡TransitiveGroup⁡op⁡id
4
Find the regular permutation groups of degree 6.
SearchTransitiveGroups⁡degree=6,regular,form=permgroup
1,6,5,4,3,2,1,3,52,4,6,1,42,35,6
Which transitive groups in the database are quasi-simple, but not simple?
SearchTransitiveGroups⁡quasisimple,simple=false
16,715,18,262,24,201,24,2947,24,18440
How many primitive groups are in the transitive groups database?
SearchTransitiveGroups⁡primitive,output=count
294
Note that there are two ways to count the transitive groups of a given degree.
SearchTransitiveGroups⁡degree=24,output=count=NumTransitiveGroups⁡24
25000=25000
Find the IDs of the semiprimitive groups whose Fitting subgroup has order equal to 8.
SearchTransitiveGroups⁡semiprimitive,fittingsubgroup=8
8,12,8,23,8,25,8,36,8,48,24,7,24,9,24,22
Which transitive groups have centre cyclic of order 8.
SearchTransitiveGroups⁡centre=8,1
8,1,16,16,16,22,16,114,16,124,16,289,24,32,24,85,24,322,24,936,24,1992,24,4206,24,7020
The GroupTheory[SearchTransitiveGroups] command was introduced in Maple 2015.
For more information on Maple 2015 changes, see Updates in Maple 2015.
The GroupTheory[SearchTransitiveGroups] command was updated in Maple 2019.
See Also
GroupTheory[Degree]
GroupTheory[IsTransitive]
GroupTheory[TransitiveGroup]
Download Help Document