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

Online Help

All Products    Maple    MapleSim


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

Calling Sequence

Degree( G )

Support( G )

SupportLength( G )

MinSupport( G )

MaxSupport( G )

Parameters

G

-

a permutation group

Description

• 

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.

Examples

withGroupTheory:

GGroupPerm1,2,Perm2,3,4

G1,2,2,3,4

(1)

DegreeG

4

(2)

SupportG

1,2,3,4

(3)

SupportLengthG

4

(4)

MinSupportG

1

(5)

MaxSupportG

4

(6)

GDihedralGroup14

GD14

(7)

DegreeG

14

(8)

SupportG

1,2,3,4,5,6,7,8,9,10,11,12,13,14

(9)

SupportLengthG

14

(10)

MinSupportG

1

(11)

MaxSupportG

14

(12)

GAlternatingGroup10

GA10

(13)

DegreeG

10

(14)

SupportG

1,2,3,4,5,6,7,8,9,10

(15)

SupportLengthG

10

(16)

MinSupportG

1

(17)

MaxSupportG

10

(18)

GGroupPerm4,7,Perm2,4,7

G4,7,2,4,7

(19)

DegreeG

7

(20)

SupportG

2,4,7

(21)

SupportLengthG

3

(22)

MinSupportG

2

(23)

MaxSupportG

7

(24)

Compatibility

• 

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

GroupTheory[AlternatingGroup]

GroupTheory[DihedralGroup]

Perm