Permutations without Repetition#
Definition: Permutation
A permutation of a set \(S\) is a bijection \(f: S \to S\) between \(S\) and itself.
Intuition
A permutation of \(S\) is just a way to arrange all its elements.
Notation
Permutations are usually denoted by \(\sigma\).
Finite Permutations#
When \(S\) is finite, a permutation of \(S\) is an \(n\)-tuple which contains every element of \(S\) exactly once.
Example: Permutations of Finite Sets
Suppose \(S = \{A, B, C, D\}\). The following are permutations of \(S\):
The following are not permutations of \(S\):
Theorem: Number of Permutations
If \(S\) is a finite set, then the total number of permutations \(S\) is the following:
Notation
Proof
TODO
Theorem: The Symmetric Group
If \(X\) is a finite set, then the set \(\mathcal{S}\) of all permutations of \(X\) forms a group \((\mathcal{S}, \circ)\) under composition.
Definition: The Symmetric Group
We call \((\mathcal{S}, \circ)\) the symmetric group on \(X\).
Notation
Proof
TODO
Parity#
Theorem: Sign via Inversions
Let \(X\) be a totally ordered finite set and let \(\sigma\) be a permutation of \(X\).
Definition: Inversion
An inversion of \(\sigma\) are any \(i, j \in X\) such that \(i \lt j\) and \(\sigma(i) \gt \sigma(j)\).
If \(N(\sigma)\) is the total number of inversions of \(\sigma\), then the sign of \(\sigma\) is given by
Proof
TODO
Permutations with Repetition#
Definition: Permutation with Repetition
Let \(S\) be a multiset with cardinality \(k\).
A permutation with repetition of \(S\) is a \(k\)-tuple of elements from \(S\) in which each element \(s_i\) is present as many times as its multiplicity \(k_i\).
Example
Let \(S = \{3, 3, 4, 5, 5, 5\}\).
Some permutations with repetition of \(S\) are
Theorem: Total Number of Permutations with Repetition
If \(S = \{s_1, \dotsc, s_n\}\) is a multiset with cardinality \(k\), then the total number of permutations with repetition \(S\) can be calculated via \(k\) and the multiplicity \(k_i\) of each element as follows:
Notation
Since this number depends only on the cardinality \(k\) and multiplicities \(k_i\) but does not depend on the elements themselves, we call the above number the total number of permutations with repetition of class \(k\) and denote it by
Proof
TODO