SearchTransitiveGroups - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


Home : Support : Online Help : Mathematics : Group Theory : SearchTransitiveGroups

GroupTheory

  

SearchTransitiveGroups

  

search for transitive groups satisfying specified properties

 

Calling Sequence

Parameters

Description

Examples

Compatibility

Calling Sequence

SearchTransitiveGroups( spec, formopt )

Parameters

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"

Description

• 

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

Examples

withGroupTheory&colon;

Count the total number of groups in the database.

SearchTransitiveGroupsoutput=count

162594

(1)

Find the doubly-transitive groups of degree 6

idSearchTransitiveGroupsdegree=6&comma;transitivity=2

id6&comma;12

(2)

GTransitiveGroupopid

G1&comma;2&comma;3&comma;4&comma;6&comma;1&comma;45&comma;6

(3)

DegreeG

6

(4)

Which transitive groups in the database have order 24 and are multiply transitive?

idSearchTransitiveGroupsorder=24&comma;1<transitivity

id4&comma;5

(5)

TransitivityTransitiveGroupopid

4

(6)

Find the regular permutation groups of degree 6.

SearchTransitiveGroupsdegree=6&comma;regular&comma;form=permgroup

1&comma;6&comma;5&comma;4&comma;3&comma;2,1&comma;3&comma;52&comma;4&comma;6&comma;1&comma;42&comma;35&comma;6

(7)

Which transitive groups in the database are quasi-simple, but not simple?

SearchTransitiveGroupsquasisimple&comma;simple=false

16&comma;715,18&comma;262,24&comma;201,24&comma;2947,24&comma;18440

(8)

How many primitive groups are in the transitive groups database?

SearchTransitiveGroupsprimitive&comma;output=count

294

(9)

Note that there are two ways to count the transitive groups of a given degree.

SearchTransitiveGroupsdegree=24&comma;output=count=NumTransitiveGroups24

25000=25000

(10)

Find the IDs of the semiprimitive groups whose Fitting subgroup has order equal to 8.

SearchTransitiveGroupssemiprimitive&comma;fittingsubgroup=8

8&comma;12,8&comma;23,8&comma;25,8&comma;36,8&comma;48,24&comma;7,24&comma;9,24&comma;22

(11)

Which transitive groups have centre cyclic of order 8.

SearchTransitiveGroupscentre=8&comma;1

8&comma;1,16&comma;16,16&comma;22,16&comma;114,16&comma;124,16&comma;289,24&comma;32,24&comma;85,24&comma;322,24&comma;936,24&comma;1992,24&comma;4206,24&comma;7020

(12)

Compatibility

• 

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

GroupTheory[Degree]

GroupTheory[IsTransitive]

GroupTheory[TransitiveGroup]