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

Online Help

All Products    Maple    MapleSim


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

GroupTheory

  

AlternatingGroup

 

Calling Sequence

Parameters

Description

Examples

Compatibility

Calling Sequence

AlternatingGroup( n, formopt )

Alt( n, formopt )

Parameters

n

-

algebraic; understood to be a positive integer

formopt

-

(optional) equation of the form form = F, where F is either "permgroup" (the default) or "fpgroup"

Description

• 

The alternating group An on n elements is the set of all even permutations of1&comma;2&comma;…&comma;n for a positive integer n. The order of An is equal to n!2, for 1<n. The alternating group of degree n is simple if n is at least 5.

• 

The AlternatingGroup( n ) command returns an alternating permutation group of degree n.  You can also use Alt( n ) as an abbreviation of AlternatingGroup( n ).

• 

The form = F option controls the form of the group returned. By default, a permutation group is returned; this is equivalent to passing the option form = "permgroup". A finitely presented group can be obtained by passing the option form = "fpgroup".

• 

If the argument n is not an integer constant, then a symbolic group is returned. In this case, the form option is ignored.

• 

In the Standard Worksheet interface, you can insert this group into a document or worksheet by using the Group Constructors palette.

Examples

> 

with⁡GroupTheory&colon;

> 

G≔AlternatingGroup⁡7

G≔A7

(1)
> 

GroupOrder⁡G

2520

(2)
> 

IsTransitive⁡G

true

(3)
> 

IsPrimitive⁡G

true

(4)
> 

IsSimple⁡G

true

(5)
> 

G≔Alt⁡4

G≔A4

(6)
> 

IsSimple⁡G

false

(7)
> 

DrawSubgroupLattice⁡G

> 

G≔Alt⁡5&comma;form=fpgroup

G≔⁢s&comma;t⁢∣⁢s3&comma;t3&comma;t⁢s-1⁢t⁢s⁢t⁢s-1⁢t⁢s&comma;s⁢t⁢s⁢t⁢s⁢t⁢s⁢t⁢s⁢t⁢

(8)

If the argument to the constructor is not a literal integer, then a symbolic group is returned.

> 

G≔Alt⁡3⁢n+7

G≔A3⁢n+7

(9)
> 

IsSimple⁡Gassumingn::posint

true

(10)
> 

GroupOrder⁡G

3⁢n+7!2

(11)

Compatibility

• 

The GroupTheory[AlternatingGroup] command was introduced in Maple 17.

• 

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

See Also

GroupTheory[DrawSubgroupLattice]

GroupTheory[GroupOrder]

GroupTheory[IsPrimitive]

GroupTheory[IsSimple]

GroupTheory[IsTransitive]

GroupTheory[SymmetricGroup]