04 - Families of Groups

We have a few families of groups so far (just to review):

  1. (ZnZ) (see Z over nZ - The Integers Modulo n)
    1. Finite of order n
    2. Cyclic, ie: generated by a signle element usually 1, so it's abelian
  2. D2n the Dihedral Groups of order 2n
    1. Finite (order 2n)
    2. Not cyclic, but it can be generated by two elements namely D2n=r,s
    3. It's not abelian (n3), ex: srrs
  3. SX is the symmetric group on the set X
    1. Elements are permutations of X
    2. The notation: σ=(1 3 2)(4 5)
    3. Usually X={1,,n} (we can always number the elements) and then write Sn.
    4. |Sn|=n!
    5. I'ts not cyclic when n3, but it has some nice sets of generators
    6. Not abelian for n3.

Let's talk about Matrix Groups! There's another one which we won't cover in too much detail but are used a lot outside:

Fields

We haven't really defined Field's yet, but this will be a lot like that definition.

Suppose F is a Field like Q, R, C, or ZpZ (where p is prime). Then:
Mat(m,n;F)={m×n matrices with entries in F}
where m is the number of rows, and n is the number of columns. We have matrix addition (by just adding corresponding entries), have the zero matrix 0 as the identity, and the inverse is just the matrix with negative entries. This satisfies the Group definition, so then this is a valid group. Notably, this is an infinite Abelian Group.

If you drop it down to square matrices:
Mat(n,n;F)
where we consider matrix multiplication, then:

  • It's still associative (annoying but possible to verify)
  • The identity matrix I is the identity
  • However, not all matrices have an inverse!
    So this is almost a group, but not quite. You can extend the idea to throw away the duds that don't have inverses, using the following notation:
    $
    (\text{Mat}(n,n; \mathbb{F}))^{\times} := { \text{ invertible n×n matrices with entries in F} }
    $
    We call this the general linear group of degree n. Instead of using the above we use:
    GL(n,F)
    You can drop the F if the field is known from context.

Some considerations:

  • It's not an Abelian Group (for n2) since matrix multiplication isn't commutative (ex: (A+B)2=A2+B2+AB+BAA2+B2+2AB)
  • It's infinite if F is infinite.
  • Finite if F is finite.

You may recall that the determinant is a function:
det:Mat(n,n;F)F
Where if the determinant is 0 then there's no inverse, while if it isn't then there is an inverse:
det(M)0M invertible
So you could rewrite:
GL(n,F):={MMat(n,n;F)|det(M)0}

There's a motivation which helps setup the definition.

Consider the set:
G:={zC|z4=1}

Here G={1,1,i,i}=i. This is a Group under complex multiplication. Furthermore it's an Abelian Group.

We can generalize this process for various powers of z. Namely the quaternions is generated from the set:
Q8={1,1,i,i,j,j,k,k}
where the key relations are:

  • i2=j2=k2=1 (notice that then they are all order 4 elements)
  • ijk=1 (notice that implies that i=kj, and other formulas)
    To go in more detail, let's find more products that are formed from these relations.
ij

Let's find ij:
ijk=1(ijk)k=1k(ij)k2=kij(1)=1kij(1)=k(1)ij=k

ji

Let's find ji:
ijk=1i2jk=i1jk=ijk=ij2k=jik=ji

Product Result
ij k
ik j
jk i
ji k
ki j
kj i
Some takeaways: