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

Online Help

All Products    Maple    MapleSim


GroupTheory

  

LeftCoset

  

construct the left coset of a subgroup

  

RightCoset

  

construct the right coset of a subgroup

 

Calling Sequence

Parameters

Description

Examples

Compatibility

Calling Sequence

LeftCoset( g, H )

RightCoset( H, g )

Parameters

g

-

an element of some group containing H

H

-

a subgroup of a permutation group

Description

• 

Let H be a subgroup of a group G, and let g be a member of G. The left coset gH is defined to be the subset gh:h∈H of G. Similarly, the right coset Hg is the subset hg:h∈H of G.

• 

The LeftCoset( g, H ) command returns a data structure representing the left coset gH of a subgroup H of a permutation group G. The RightCoset( H, g ) command returns a data structure representing the right coset Hg of a subgroup H of a permutation group G.

• 

The data structures representing (left or right) cosets respond to the following methods.

Representative( c )

returns the representative of the coset c

numelems( c )

returns the number of members of the coset c

member( x, c ) or x in c

returns true if x belongs to the coset c

Elements( c )

returns the elements of the coset c, as a set

Subgroup( c )

returns the subgroup of the coset c

Examples

> 

with⁡GroupTheory:

> 

G≔Alt⁡4

G≔A4

(1)
> 

H≔Subgroup⁡Perm⁡1,2,3,4,G

H≔1,23,4

(2)
> 

C≔RightCoset⁡H,Perm⁡1,2,3

C≔1,23,4·1,2,3

(3)
> 

GroupOrder⁡H

2

(4)
> 

numelems⁡C

2

(5)
> 

Elements⁡C

1,3,4,1,2,3

(6)
> 

Representative⁡C

1,2,3

(7)
> 

evalb⁡Perm⁡1,3,2inC

false

(8)

The symmetric group on 3 letters as a Cayley table group.

> 

M≔1|2|3|4|5|6,2|1|6|5|4|3,3|5|1|6|2|4,4|6|5|1|3|2,5|3|4|2|6|1,6|4|2|3|1|5

M≔123456216543351624465132534261642315

(9)
> 

G≔CayleyTableGroup⁡M

G≔ < a Cayley table group with 6 elements >

(10)

2 is an involution.

> 

H≔Subgroup⁡2&comma;G

H≔ < a Cayley table group with 1 generator >

(11)
> 

RC≔RightCoset⁡H&comma;3

RC≔ < a Cayley table group with 1 generator > ·3

(12)
> 

numelems⁡H=numelems⁡RC

2=2

(13)
> 

Elements⁡RC

3&comma;6

(14)
> 

LC≔LeftCoset⁡3&comma;H

LC≔3· < a Cayley table group with 2 elements >

(15)
> 

numelems⁡H=numelems⁡LC

2=2

(16)
> 

Elements⁡LC

3&comma;5

(17)

Compatibility

• 

The GroupTheory[LeftCoset] and GroupTheory[RightCoset] commands were introduced in Maple 17.

• 

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

See Also

GroupTheory

GroupTheory[Cosets]