MTH3003 Lecture 1

Simon Smith

Waggle your eyebrows

A Permutation of a set is simply a bijection from to - a rearrangement of itself.

Interestingly, we can use these to describe all groups, and hence all of group theory, but not without some simplified notation…

Permutation Notation

Given that a Permutation is given by rearranging a set, or a bijection, we can use arrow notation to show each individual mapping:

We can then denote the set (later proven to be a group) of all permutations of one of these sets, i.e. , as . If is just then we write by convention - important to remember, as it’ll tell us how what elements are in the set.

What is the size of ?

By understanding that we initially have choices to rearrange the set, and then after that choice, and so on, we can prove inductively that the modulus of the set (for finite ) .

However, this notation is needlessly complicated, and takes out an important property of permutations: permutations can always decompose into cycles. If we used that notation instead - cycle notation -, we can convert our arrow-mapping notation:

Into the following three disjoint cycles…

\begin{document}
\begin{tikzpicture}[
  every node/.style={circle, draw, thick, minimum size=7mm},
  every path/.style={->, thick}
]
 
% Left 1-cycle
\node (one) at (-3,0) {1};
\draw (-3,0.6) arc[start angle=90,end angle=450,radius=0.6];
 
% Right 5-cycle
\node (five) at (3,0) {5};
\draw[->] (3,0.6) arc[start angle=90,end angle=450,radius=0.6];
 
% Middle 5-cycle (2 4 3 6 7)
\node (two) at (0,1.8)  {2};
\node (four) at (-1,0.9){4};
\node (three) at (-0.6,-0.9){3};
\node (six) at (0.6,-0.9){6};
\node (seven) at (1,0.9){7};
 
\draw[->,bend left=15] (two)   to (four);
\draw[->,bend left=15] (four)  to (three);
\draw[->,bend left=15] (three) to (six);
\draw[->,bend left=15] (six)   to (seven);
\draw[->,bend left=15] (seven) to (two);
 
\end{tikzpicture}
\end{document}

Again, this is quite large notation, even if it’s more useful, but we can take this and simplify it even further, just: , for the permutation . As mentioned before however, if we know that then we can exclude the one-cycles for simplicity: . Note that this is exactly the same as if shifted the cycle along by one in the brackets, but we normally start with the lowest number by convention to make comparison easier.

Formal Definition

Let be distinct elements of a set . Then, is the permutation of sending , and fixing all elements in . Such a permutation is called an -cycle, or a cycle of length .

Reading this cycle notation, we read right to left, just like function composition. This will be useful for the next step - finding the products of permutations!

Products of Permutations

First, a Product of Permutations is almost identical to a function composition (or other bijections), except we use notation instead of to differentiate the two. Just like a function composition, as previously stated, we read right to left.

This means, for the product of permutations and , , then we first calculate and then . Some mathematicians follow different convention (the complete opposite!), but this is the commonest.

Maybe explore this difference in convention? Is there a pattern to who uses which convention?

Calculating these products is quite simple, too. For example, if we have and in , then we can iterate the elements in first through , and then through , to find all the new mapping cycles:

And so on, until you complete a cycle, then you continue with the next smallest number. In this example, you would get - try it yourself!

Normally, we do this process mentally, too, so it looks a lot like just writing out the answer immediately - just feed the numbers through the cycles.

Products of permutations are not commutative - this is provable the same way as function composition - unless disjoint, as this is like the identity element; unchanging.

The Order of a Permutation

The Order of a Permutation , denoted , is the smallest such that , the identity element, if such an exists; if not then the order of is infinite.


Rough-Lecture Notes from University Notes

Didn’t have access to lecture notes beforehand, so did rough notes during instead of pre-lecture notes - enjoy the yapping!