Some group families

We can see a group as simply being a Cayley table, with elements being an arbitrary set labelled a,b,c and so on. But we can also think of the group elements and the operation as representing something. This gives us several families or types of groups.

Cyclic groups

Definition

A cyclic group is one where there is an element x such that e,x, x2,x3.. are all the elements of the group.

x is called the generator of the group.

Example

addition mod 3 as the operation, on the set G = {0,1,2}:


012
0012
1120
2201

The identity is 0, and x is 1. Then x2 is 2, and x3 is 0.

Here 1 is the generator of the group.

That example is one case of the set of integers modulo n (where n=3).

We get a cyclic group for any n – these groups are written n

For n=1 we get the trivial group. For n=3 we get ℤ3:


0123
00123
11230
22301
33012

Without modulo, we also get a cyclic group – an infinite one.

{ Multiplication mod n is not a group. The identity is 1, but 0 has no inverse : 0.x=1 has no solution for x}

Dihedral groups

A dihedral group has a set which is the symmetry operations (reflection and rotation) on a regular polygon, and the binary operation is composition – do one thing, then another.

Example – Dihedral group D3

On an equilateral triangle :

In the diagram we show a triangle with vertices labelled a b and c, and 6 symmetry operations on it. We have 3 rotations and 3 reflections.

The rotations are labelled e,2 and 3. 2 is rotation by 60, 3 by 120, and e by 360 degrees

4 5 and 6 are reflections as shown.

The operations move the vertices, labelled a b and c, around.

Suppose we compose 2 operations – do one then another. Suppose for example we do 2 followed by 5. We start off with vertices abc, going clockwise from the top, as in the diagram. 2 changes this to cab, then 5 swaps what are initially a and b, so we get acb – same as 4. So 2 followed by 5 is the same as 4 We check out all pairs:

e23456
ee23456
223e645
33e2564
4456e23
55643e2
664523e

This is the dihedral group for a triangle – a 3-gon. An n-gon has n rotations (multiples of 2π/n ) and n reflections (each on an axis over a vertex) so a total of 2n symmetry operations, so the set has 2n elements, so the group is order 2n.

Which leads to confusion over naming. In geometry this is called D3, but in abstract algebra D6

In general in abstract algebra the group of a n-gon is called the dihedral group of degree n, order 2n, symbol D2n.

Example – Dihedral group D4

For a square, there are 7 symmetry operations, plus the identity:

3 rotations, of 90, 180 and 270 degrees (or a fourth, rotation by 360, which is the identity)

4 reflections – on horizontal and vertical axes, and the two diagonals

Like this:

D1 and D2 are the two diagonal reflections, H and V the other reflections. R1 is a rotation by 90 degrees, R2 is 180, R3 is 270.

The corners are labelled 1 2 3 and 4. The symmetry operations move these, as follows:

Identity e1234
R14123
R23412
R32341
H4321
V2143
D11432
D23214

Rotation R1, for example, changes corner 1 to 4, 2 to 1, 3 to 2, and 4 to 3, so the R1 row is 4 1 2 3.

Note H for example has a horizontal reflection axis, and flips corners vertically. It exchanges the first and last, and the second and third.

If we combine these, we can find one operation which has the same effect as two:


ER1R2R3HVD1D2
EER1R2R3HVD1D2
R1R1R2R3ED2D1HV
R2R2R3ER1VHD2D1
R3R3ER1R2D1D2VH
HHD1VD2ER2R1R3
VVD2HD1R2ER3R1
D1D1VD2HR3R1ER2
D2D2HD1VR1R3R2E

This is row first, then column. For example an R3, followed by H is the same as a D1.

The inverse of R1 is R3. Every row and every column has E, so every element has an inverse.

The symmetric groups Sn

The symmetric group Sn has a set with elements which are all the permutations of n objects, and the operation is composition.

We start with a tiny example – the permutations on a set with two elements, {a,b}. There are only two permutations:

which is the identity, which we will call e, and

which we will call x. The table is


ex
eex
xxe

x is its own inverse, since x•x=e

Next we look at the permutation group on a set with 3 elements – call them a b and c. There should be 6 permutations – here they are, labelled p1 to p6

a b c : p1

c a b : p2

b c a : p3

a c b : p4

b a c : p5

c b a : p6

We should note that for example c a b is not = p2. a c b is the result of applying p2 to a b c. p2 ‘shifts’ the elements right one place, and wraps around – so a b c changes to c a b. If we apply p2 to c a b, we shift these, getting b c a. This is the same as applying p3 to the initial a b c. So p2•p2=p3

What is p3 •p6? We do p3 first. p3 gives us b c a. Then p6 swaps over the first and last letters (it turned a b c into c b a ), so we get a c b. Which is p4. So p3 •p6 = p4. This means the effect of p4 is the same as doing p3, then p6.

Here is the complete table:


p1p2p3p4p5p6
p1p1p2p3p4p5p6
p2p2p3p1p6p4p5
p3p3p1p2p5p6p4
p4p4p5p6p1p2p3
p5p5p6p4p3p1p2
p6p6p4p5p2p3p1

The permutation group on the underlying set of n letters is called the symmetric group and is denoted by Sn. So this is S3. It is not Abelian – for example p6p2 is p4, but p2p6 is p5. Sn has n! Elements. So S4 has 24 elements.

Why the name? Why are the dihedral groups not called the symmetry groups? Why are the symmetry groups not called the permutation groups? Because:

  1. The permutation groups, discussed next, include subsets of the n! permutations – so this is a different set.
  2. Symmetry in the most general sense means preserving structure. For a polygon, the structure is what it looks like – which corner is which. For a set – any set, sets in general – its only structure is the elements in it. So all the permutations of a set show how a set can be changed with its structure maintained – that is, keeping the elements the same, but in all the different arrangements.

Permutation groups

The symmetric groups have all the permutations of n objects. But we can take some subsets of those permutations, and still get a group.

As an example, chose {1,2,3,4} as the underlying set. There are 4! = 24 permutations of these, but choose just 8 of them as follows:

Identity E1234
A4123
B3412
C2341
D4321
F2143
G1432
H3214

If we combine these by composition, we get:


EABCDFGH
EEABCDFGH
AABCEHGDF
BBCEAFDHG
CCEABGHFD
DDGFHEBAC
FFHDGBECA
GGFHDCAEB
HHDGFACBE

How do we know these permutation things are actually groups? Because

1. The elements are functions (permutations are bijective functions), and the operation is composition, and we know the composition of functions is associative, so (h•g)•f = h•(g•f)

2. There is an identity element, namely the permutation e where x→x for all x, so that f•e = e•f= f for all f

3. Each element has an inverse, because each element f has the inverse function f-1 as its inverse (and a bijective function always has an inverse). If f maps x→y, f-1 maps y→x. So f-1 •f maps x →y→x, or x→x, and so f-1 •f = e.

Alternating groups

An alternating group is a group the elements of which are even permutations. The alternating group of even permutations of n objects is usually written as An.

Leave a comment