Exponent - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Mozilla Firefox.

Online Help

All Products    Maple    MapleSim


GroupTheory

  

Exponent

  

compute the exponent of a finite group

 

Calling Sequence

Parameters

Description

Examples

Compatibility

Calling Sequence

Exponent(G)

Parameters

G

-

a permutation group or a Cayley table group

Description

• 

The exponent of a finite group G is the least positive integer e such that g^e = 1, for all g in G. It is equal to the least common multiple of the orders of the elements of G, and is a divisor of the order of G.

• 

The Exponent(G) command computes the exponent of the finite group G, if possible.

• 

Note that the exponent of a finite finitely presented group can be computed by first converting it to a permutation group using the PermutationGroup command.

Examples

> 

with⁡GroupTheory:

> 

G≔SymmetricGroup⁡5

G≔S5

(1)
> 

Exponent⁡G

60

(2)
> 

Exponent⁡ElementaryGroup⁡7,3

7

(3)
> 

Exponent⁡QuasicyclicGroup⁡2

∞

(4)
> 

G≔a,b|a2,b3,a·b5=1

G≔⁢a,b⁢∣⁢a2,b3,a⁢b⁢a⁢b⁢a⁢b⁢a⁢b⁢a⁢b⁢

(5)
> 

Exponent⁡G

Error, (in Exponent) cannot compute the Exponent of a general finitely presented group.  If you know that your group is finite, try converting it to a permutation group by using the `PermutationGroup' command with your finitely presented group as input.

> 

Exponent⁡PermutationGroup⁡G

30

(6)

Compatibility

• 

The GroupTheory[Exponent] command was introduced in Maple 2015.

• 

For more information on Maple 2015 changes, see Updates in Maple 2015.

See Also

GroupTheory

GroupTheory[ElementaryGroup]

GroupTheory[GroupOrder]

GroupTheory[PermutationGroup]

GroupTheory[SymmetricGroup]

with