Permutation

A Permutation of a set is a bijection from to , or more simply, a rearrangement of itself.

There are various notations to show permutations, but we’ll use three main ways: two graphical, one normal. In order of their importance…

  1. Cycle notation: , read right-to-left.
  2. Bijection notation:
  3. Drawn cycle notation:
\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}

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 .

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 ) .

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.

Quick Inverse Proposition

Let be a set and suppose . We know that we can write as a product of disjoint cycles, , hence:

  1. The inverse of any cycle is , and
  2. .

This can be proven directly.