This article examines different notations for the composition of permutations with each other and with vectors.
Permutations are bijections from a set to itself, and the set does not need to have an order.
They can also be described as operations that move things from one set of places to another set of places — which is the natural mental image when the permutation is, e.g., a rotation of a cube.
In the end it does not matter what kind of mental image is used to understand what a permutation is or does, as long as there is no ambiguity about what result a formula will yield.
When a permutation is interpreted as moving objects from starting places to other places, there are two ways to describe it.
Visualisations of as an active permutation
Arrow diagram of
Matrix representations of
Left (prefix)
Right (postfix)
Map
Cycle
There are two ways to assign a matrix to a permutation, corresponding to the two ways of multiplying permutations.
There are two ways to draw arrows in the chosen matrix, one similar to two-line and the other to cycle notation. (The former is used in the blue boxes 14 and 15, the latter in the rest of the article.)
The usual way is as an active permutation or map or substitution:
moves an object from place to place . In an arrow diagram, the one-line notation denotes where the arrows go.
In this case, the result of applying to a vector is .
may also be represented as the result of applying it to the natural order. This is called a passive permutation[1] or (re)arrangement or ordering:
replaces an object in position by that in position . In an arrow diagram, the one-line notation denotes where the arrows come from.
In this case the result of applying to a vector is .
Confusing these two interpretations will lead to confusing permutations with their inverses. Active and passive transformations seem to be a related concept.
(In the Python examples in this article (P*Q)(2) = 2^P^Q = Q(P(2)). The result is R(2) = 4).
In its graphics this article shows all possible interpretations, including the passive ones.
To avoid confusion, however, the accompanying calculations use only active right notation, which is the notation used by SymPy and Wolfram.
vectors of the same length with arbitrary elements (green boxes 12 and 16)
vectors of arbitrary length with elements from the same range, i.e., maps with the same codomain as the permutation, but bijectivity is not required (blue boxes 14 and 15)
scalars from the same range (red boxes 13 and 17, compare blue box 14)
The variables used in the main examples are
the permutations and
the vector (in the graphics simply )
the vector
In the Wolfram calculations, the 1-based equivalents are used.
Permutations of four elements are identified by their index numbers in RevCoLex order, i.e., as the -th finite permutation. is denoted where it appears among other permutations of only four elements. (See box 19, compare with box 1.)
(Equivalents for the permutations of five elements would be , and [2], but only the letters are used.)
Box 0 Initialisation for the computations
Python:
Permutations in SymPy should be interpreted as AR (the documentation states that "p*q means first apply p, then q").
But the results do not discourage the interpretation as PL.
The simple function before gives the same results.
The result of using it on the non-bijective map suggests the interpretation as AR,
but that of permuting the vector suggests the interpretation as PL.
from sympy.combinatorics import Permutation
def before(positions, sequence):
return [sequence[i] for i in positions]
def inv(perm):
length = len(perm)
if sorted(perm) != list(range(length)):
print('Inverse not possible!')
else:
inverse = [0] * length
for key, val in enumerate(perm):
inverse[val] = key
return inverse
p = [1, 3, 0, 2, 4]
q = [4, 3, 2, 1, 0]
r = before(p, q)
P = Permutation(p)
Q = Permutation(q)
R = P * Q
v = ['0', '1', '2', '3', '4']
e = [0, 0, 4, 2, 3, 2]
Wolfram:
Permutations in Mathematica are 1-based:
p = {2,4,1,3,5}
q = {5,4,3,2,1}
v = {v1,v2,v3,v4,v5}
e = {1,1,5,3,4,3}
A simple rule to avoid passive permutations: If the rows of a permutation matrix are labelled, the cycles must go clockwise (AR). If the columns are labelled, the cycles must go anticlockwise (AL).
Box 1 Ambiguity of
Passive (PL):
Active (AR):
If it is only required, that , and no one intends to permute vectors, there is no need to choose an interpretation.
In other terms: It only matters that the 1s in the permutation matrices are at , and the question if the arrows go clockwise (AR) or anticlockwise (PL) is irrelevant.
If on the other hand it is only required that a permutation permutes the vector into , it does dot matter if it is labelled or .
In other terms: As long as the arrow goes from 0 to 3, it does not matter if it is labelled 3 (AR) or 0 (PR).
While the permutations on the left and right have the same labels and do different things, the permutations below do exactly the same as those above them, but are labelled differently.
(Compare box 19, showing the same for 4-element permutations.)
Box 1a Ambiguity of
Active (AL):
Passive (PR):
In these matrices the 1s are in the positions . They are exactly as those above, except that rows instead of columns are labelled.
The following examples show with arrow diagrams what the composed permutations actually do, and how this can be interpreted as a product in two different ways, corresponding to two different matrix multiplications.
The two arrangements of matrices are symmetric to each other, including the direction of the arrows in the matrices.
In other terms: The matrix image on the left and on the right show exactly the same thing in a different way.
The arrows in both arrangements of matrices are the same as in the arrow diagram to their left.
In prefix notation (left action) means . In postfix notation (right action) means .
Obviously and are just different ways to say the same thing.
In Cayley graphs postfix notation is common. One may find it more natural here, because this way the product read from left to right corresponds to the path from the identity vertex to the vertex of the permutation. (E.g. the path from to in the example below is first through the arrow and then through the edge .) A source that uses this convention is Visual Group Theory by Nathan Carter.
permutohedron section, cycle graph, Cayley table
ocagonal section of the permutation of S4 corresponding to this subgroup
Cycle graph (Formulas on the left correspond to the Cayley graph in the middle.)
Box 18 Cayley graphs
The three Cayley graphs below show how each element of the group can be displayed as a product of two different elements.
The formulas are in postfix (AR) notation, i.e. an arrow representing goes from to . An undirected edge is shorthand for arrows in both directions.
This section uses prefix notation, because here the permutations are connected to 2×2 signed permutation matrices describing linear maps. E.g. the matrices of , and are rotation matrices. Linear maps and their matrices are usually concatenated like funcions, i.e. in prefix notation.
permutations as linear maps
Cayley tables
The rotations of the square form the cyclic group C4. The 2×2 matrices of the linear maps are a subgroup of SL(2,3), and within that of the quaternion group.
The Cayley table above contains , so it fits the row above, and it contains , so its transpose would fit the row below.
As above (box 1) the permutations on the left and right have the same labels and do different things, while the permutations below do exactly the same as those above them, but are labelled differently.
as permutation matrix and arrow diagram in Wolfram Alpha
Wolfram Alpha displays permutations in a way that resembles PL representation in this article,
which – if only permutation concatenation is concerned – is the same as AR. (See boxes 1 and 19.)
is shown as , but in the arrow diagram and the permutation matrix the arrow from 1 goes to 3 — not to 2.
Wolfram does not accept the element 0, so the examples are converted to 1-based permutations:
A blogpost from 2011 shows that back then the list notation with curly braces was the inverse of the one-line notation.
But in the calculations shown in this article (done in Mathematica Online in December 2016) the permutation p = {2,4,1,3,5} corresponds to Cycles[{{1,2,4,3}}].
Apparently in the meantime a notation people found confusing was dropped in favour of a more mainstream one.
Permute[a, b] with permutations a, b behaves like InversePermutation[PermutationProduct[InversePermutation[a], b]] = PermutationProduct[InversePermutation[b], a].
Confusingly the result of Permute[q, p] changes to {4,2,5,3,1} when the Combinatorica package is used (Needs["Combinatorica`"]),
i.e. Permute[a, b] with permutations a, b now behaves like PermutationProduct[b, a].
The result of Permute[p, q] is {5,3,1,4,2} in both cases because q is self-conjugate —
thus PermutationProduct[q, p] = PermutationProduct[InversePermutation[q], p].
The composite of two permutations p*q means first apply p, then q, so i^(p*q) = (i^p)^q which is i^p^q according to Python precedence rules.
SymPy has two operators for permutations: Multiplication (*) and what could be called exponentiation (^). The latter seems to be intended only to access elements of a permutation, but can be used to combine two combinations. The result of a^b is the same as ~b*a*b (see Python script), which is a permutation in the same conjugacy class.
Negative results for ~p(i)
Inverse permutations behave strangely when accessed from the right. should behave exactly like . While i^~p15 behaves as expected, ~p15(i) gives negative results:
p15 = Permutation([3, 0, 2, 1]), p20 = Permutation([1, 3, 2, 0])
The two permutations are inverses: p20 == ~p15 = True [i^~p15 for i in range(4)] = [1, 3, 2, 0] [~p15(i) for i in range(4)] = [-4, -1, -3, -2]
These numbers would work to access the values of a list with four elements in Python - e.g. a[-1] = a[3] is the last element of a. [-4, -1, -3, -2] converted accordingly is [0, 3, 1, 2], which is permutation .
Doing the same for all permutations of four elements (see Python script) shows the following result:
Where the expected permutation is , the converted permutation is with .
Here the expected permutations is , and the converted permutation is , because .
In TAoCP Knuth states that in his book permutations are always multiplied from left to right, and gives the following example:
SymPy
>>> from sympy.combinatorics import Permutation
>>> a = Permutation(0, 2)(1, 5, 3)
>>> b = Permutation(0, 5)(1, 4)(2, 3)
>>> a * bPermutation(0, 3, 4, 1)(2, 5)
>>> b * a
Permutation(0, 3)(1, 4, 5, 2)
>>> Permutation.print_cyclic = False
>>> a
Permutation[2, 5, 0, 1, 4, 3]
>>> b
Permutation[5, 4, 3, 2, 1, 0]
>>> a * bPermutation[3, 0, 5, 4, 1, 2]
>>> b * a
Permutation[3, 4, 1, 0, 5, 2]
The left permutation sees the argument first:
Notice that the image of 1 under is , etc.
SymPy: (1^a)^b = 5^b = 0
This is not to be confused with right to left multiplication of permutations, i.e. the way functions are composed:
[...] traditional functional notation, in which one writes , makes it natural to think that should mean .
SymPy: a(b(1)) = a(4) = 4
Knuth, Donald (1973). The art of computer programming. Reading, Mass: Addison-Wesley Pub. Co. ISBN 0201896850.
— Chapter 7.2.1.2. Generating all permutations
Cameron decribes the active form of a permutation as a one-to-one mapping from to itself, and the passive form as the ordered n-tuple .
I wrote for the result of applying the function to the element .
[...] In order that the result of applying first and then can be called , it is more natural to denote the image of under as .
[Footnote:] We say that permutations act on the right if they compose according to this rule.
What Cameron calls the passive permutation is simply the one-line or word representation of an (active) permutation, not a passive permutation in the sense of this article.
Cameron, Peter J. (1994), Combinatorics: Topics, Techniques, Algorithms, Cambridge University Press, ISBN0-521-45761-0
— Chapter 3.5 Permutations (p. 29)
Grimaldi defines as the left rotation of a triangle and as the reflection that leaves the right base angle in place.
Their product is the reflection about the vertical axis.
Grimaldi, Ralph (2004). Discrete and combinatorial mathematics : an applied introduction. Reading, Mass: Addison-Wesley Longman. ISBN 0321211030.
— Example 16.7 (p.749)
↑Some authors – see Cameron (1994) – call a permutations one-line notation the passive form. But this article calls a permutation passive when its one-line notation denotes where the arrows in its arrow diagram come from — as opposed to where they go. In the 19th century passive permutations were called permutations, while permutations in the modern sense were called substitutions.