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

Online Help

All Products    Maple    MapleSim


GroupTheory

  

Normaliser

  

construct the normaliser of a subgroup of a group

 

Calling Sequence

Parameters

Description

Examples

Compatibility

Calling Sequence

Normaliser( H, G )

NormaliserSubgroup( H, G )

NormalizerSubgroup( H, G )

Parameters

G

-

a permutation group or a Cayley table group

H

-

a permutation group or a Cayley table group

Description

• 

The normaliser of a subgroup H of G is the set of elements g∈G for which commutation by g induces an automorphism on H. That is, 1g·H·g=H, or equivalently, H·g=g·H, or equivalently, for all h∈H we have 1g·h·g∈H.

• 

The Normaliser( H, G ) command constructs the normaliser of H in G. The group G must be a group given by a Cayley table or a permutation group.

• 

The NormaliserSubgroup and NormalizerSubgroup commands are provided as aliases. Note that Normalizer is a different command, unrelated to the GroupTheory package; because it is an environment variable, the GroupTheory package cannot provide a command with this name.

Examples

> 

with⁡GroupTheory:

> 

G1≔SymmetricGroup⁡5

G1≔S5

(1)
> 

elements≔convert⁡Elements⁡G1,list:

> 

CT≔CayleyTable⁡G1,elements=elements:

> 

G2≔Group⁡CT

G2≔ < a Cayley table group with 120 elements >

(2)

Now the elements of G2 correspond to the list elements in the given order. We can find the elements corresponding to the permutations 1&comma;2 and 1&comma;3 by looking up their positions in elements, in order to construct the symmetric group on 3 letters as a subgroup H.

> 

generators≔map⁡ListTools:-Search&comma;Perm⁡1&comma;2&comma;Perm⁡1&comma;3&comma;elements

generators≔119&comma;107

(3)
> 

H≔Subgroup⁡generators&comma;G2

H≔ < a Cayley table group with 2 generators >

(4)
> 

N≔Normaliser⁡H&comma;G2

N≔N < a Cayley table group with 120 elements > ⁡ < a Cayley table group with 2 generators >

(5)

Since N is itself a Cayley table group, it is most useful to inspect the images of the elements under the Embedding.

> 

elementsN≔map⁡Embedding⁡N&comma;Elements⁡N

elementsN≔15&comma;16&comma;26&comma;28&comma;54&comma;56&comma;81&comma;84&comma;87&comma;106&comma;107&comma;119

(6)
> 

elementsconvert⁡elementsN&comma;list

4&comma;5&comma;&comma;1&comma;2&comma;3&comma;1&comma;2&comma;34&comma;5&comma;2&comma;3&comma;2&comma;34&comma;5&comma;1&comma;3&comma;24&comma;5&comma;1&comma;3&comma;2&comma;1&comma;34&comma;5&comma;1&comma;24&comma;5&comma;1&comma;3&comma;1&comma;2

(7)

N is the direct product of H and the 2-element subgroup generated by the transposition 4&comma;5.

> 

IsAbelian⁡N

false

(8)
> 

GroupOrder⁡N

12

(9)

Compatibility

• 

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

• 

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

See Also

GroupTheory

GroupTheory[Centralizer]