permutation
A permutation is a bijection from a set to itself:
Notation
Cauchy's two line notation maps each element of
Example
Let
We can write
If we view each mapping of
\documentclass[tikz]{standalone}
\usetikzlibrary{arrows.meta}
%
\begin{document}
\begin{tikzpicture}
\foreach \x in {1,2,3,4,5,6} {
\node (\x) at (\x,0) {$\x$};}
\begin{scope}[-Latex]
\draw (1) edge[bend left] (2);
\draw (2) edge[bend left] (6);
\draw (6) edge[bend left] (1);
\draw (3) edge[bend left] (5);
\draw (5) edge[bend left] (3);
\end{scope}
\end{tikzpicture}
\end{document}
we can reorder the list to convey disjoint cycles:
\documentclass[tikz]{standalone}
\usetikzlibrary{arrows.meta}
%
\begin{document}
\begin{tikzpicture}
\foreach \x/\y in {1/1,2/2,3/4,4/6,5/5,6/3} {
\node (\x) at (\y,0) {$\x$};}
\begin{scope}[-Latex]
\draw (1) edge[bend left] (2);
\draw (2) edge[bend left] (6);
\draw (6) edge[bend left] (1);
\draw (3) edge[bend left] (5);
\draw (5) edge[bend left] (3);
\end{scope}
\end{tikzpicture}
\end{document}
which we call decomposition into disjoint cycles, and in cycle notation we would write
where any element
Composition
Example
Let $$\sigma=\begin{pmatrix}
1 & 2 & 3 & 4 & 5 \
2 & 3 & 4 & 1 & 5
\end{pmatrix}
, \gamma=\begin{pmatrix}
1 & 2 & 3 & 4 & 5 \
3 & 1 & 5 & 4 & 2
\end{pmatrix}$$
Then $$\gamma\circ\sigma=\begin{pmatrix}
1 & 2 & 3 & 4 & 5 \
1 & 5 & 4 & 3 & 2
\end{pmatrix}$$
is the composition of