GroupTheory
Degree
return the degree of a permutation group
Support
return the set of points moved by a permutation group
SupportLength
return the number of points moved by a permutation group
MinSupport
return the smallest point moved by a permutation group
MaxSupport
return the largest point moved by a permutation group
Calling Sequence
Parameters
Description
Examples
Compatibility
Degree( G )
Support( G )
SupportLength( G )
MinSupport( G )
MaxSupport( G )
G
-
a permutation group
The degree of a permutation group is the cardinality of the set upon which it acts. Since permutation groups act on sets of the form 1,2,…,n, the degree is the positive integer n. In other words, the degree n is the smallest positive integer such that G is a subgroup of Sn .
The Degree( G ) command returns the degree of a permutation group G.
Some group constructors, such as those for the symmetric and alternating groups take a degree parameter as input, and the Degree command returns this value.
The support of the permutation group G is the set of positive integers displaced by some member of G.
The Support( G ) command returns the support of G as a Maple set of positive integers.
The SupportLength( G ) command returns the cardinality of the support of G. Note that this may differ from the degree of G.
The MinSupport( G ) command returns the smallest positive integer that is displaced by the permutation group G. Similarly, the MaxSupport( G ) command returns the largest positive integer displaced by some member of G.
with⁡GroupTheory:
G≔Group⁡Perm⁡1,2,Perm⁡2,3,4
G≔1,2,2,3,4
Degree⁡G
4
Support⁡G
1,2,3,4
SupportLength⁡G
MinSupport⁡G
1
MaxSupport⁡G
G≔DihedralGroup⁡14
G≔D14
14
1,2,3,4,5,6,7,8,9,10,11,12,13,14
G≔AlternatingGroup⁡10
G≔A10
10
1,2,3,4,5,6,7,8,9,10
G≔Group⁡Perm⁡4,7,Perm⁡2,4,7
G≔4,7,2,4,7
7
2,4,7
3
2
The GroupTheory[Degree], GroupTheory[Support], GroupTheory[SupportLength], GroupTheory[MinSupport] and GroupTheory[MaxSupport] commands were introduced in Maple 17.
For more information on Maple 17 changes, see Updates in Maple 17.
See Also
GroupTheory[AlternatingGroup]
GroupTheory[DihedralGroup]
Perm
Download Help Document