Permutation notation

From testwiki
Revision as of 12:04, 17 October 2023 by imported>ShakespeareFan00
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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 P as an active permutation
Arrow diagram of P
Matrix representations of P
Left (prefix)
M(π(i),i)=1
Right (postfix)
M(i,π(i))=1
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 i to place π(i). In an arrow diagram, the one-line notation denotes where the arrows go.
In this case, the result of applying π to a vector (x1,,xn) is (xπ1(1),,xπ1(n)).

π 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 i by that in position π(i). In an arrow diagram, the one-line notation denotes where the arrows come from.
In this case the result of applying π to a vector (x1,,xn) is (xπ(1),,xπ(n)).

Confusing these two interpretations will lead to confusing permutations with their inverses.
Active and passive transformations seem to be a related concept.


Composition of permutations is associative, but not commutative.

With prefix notation or left action, πσ(x)=π(σ(x)).

πσ can be thought of as πafterσ, and πx as πofx
This notation corresponds to the usual way of writing function compositions.

With postfix notation or right action, πσ(x)=xπσ=σ(π(x)).

πσ can be thought of as πbeforeσ, and xπ as (image of) xunderπ.
This notation is common in group theory.
(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.


Notations

α=(123312),β=(123213),v=(v1,v2,v3),α1=(123231)

Active

If permuting v by α gives (vα1(1),vα1(2),vα1(3))=(v2,v3,v1) the permutation is active.

Active left

Active right

AR

If αβ=(123312)(312321)=(123321) the notation should be seen as active right. *

αβ means αbeforeβ and can be written β(α).      α(1) can be written 1α.

Permuting v by α may be written in different ways: vα1=v(α1)=v.α=α1v      (Compare box 12a.)

The abbreviation with the dot corresponds to the function permute in Wolfram. With two permutations it means: α.β=(α1β)1=β1α

Passive

If permuting v by α gives (vα(1),vα(2),vα(3))=(v3,v1,v2) the permutation is passive.

Passive left should be seen as a misunderstanding of active right, and passive right should be seen as a misunderstanding of active left. *


*   (Unless permuting a vector proofs otherwise.)

Examples with 5-element permutations

Permutations can be combined with

  • other permutations (boxes 1 to 11)
  • 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 P=(0123413024)=(0132) and Q=(0123443210)=(04)(13)
  • the vector V=(V0,,V4) (in the graphics simply 04)
  • the vector E=(0,0,4,2,3,2)

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 n-th finite permutation.
P=(0132) is denoted 10 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 Q=119, R=109 and S=83 [2], but only the letters are used.)


Active vs. passive

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

Left vs. right

Box 2 Ambiguity of PQ with active permutations
Left (AL):     PafterQ=S Right (AR):     PbeforeQ=R
File:5-el perm; active; composition; S; prefix.svg
File:5-el perm; active; composition; R; postfix.svg
File:5-el perm; active; R.svg

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 αafterβ. In postfix notation (right action) βα means βbeforeα.
Obviously αafterβ and βbeforeα are just different ways to say the same thing.

Active


Box 7 R
File:5-el perm; active; R.svg
First doing P and then doing Q is the same as doing R.
AL:     QafterP=R
File:5-el perm; active; composition; R; postfix.svg
AR:     PbeforeQ=R

Passive


Vectors, scalars and non-bijective maps

Active

Box 12 Permuting a vector
File:5-el perm; active; R.svg

Passive

Examples with permutations of the square

The dihedral group Dih4 is the group of symmetries of the square. It has 8 elements and is not abelian - therefore order of operation matters.

Active right (Cayley tables)

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 e to ab in the example below is first through the arrow a and then through the edge b.) A source that uses this convention is Visual Group Theory by Nathan Carter.

Active left (linear maps)

This section uses prefix notation, because here the permutations are connected to 2×2 signed permutation matrices describing Template:Ws. E.g. the matrices of 10, 13 and 23 are rotation matrices. Linear maps and their matrices are usually concatenated like funcions, i.e. in prefix notation.

permutations as linear maps

Active vs. passive

Left vs. right

Active

Box 20 7
AL:     10after2=7
AR:     2before10=7

Passive

Languages

Wolfram

Template:Multiple image

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

P is shown as (1234524135)=(1243), 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:

P = (1243)(5)   = 2 4 1 3 5  http://www.wolframalpha.com/input/?i=permutation+(1+2+4+3)(5)
Q = (15)(24)(3) = 5 4 3 2 1  http://www.wolframalpha.com/input/?i=permutation+(1+5)(2+4)(3)
R = (1435)(2)   = 4 2 5 3 1  http://www.wolframalpha.com/input/?i=permutation+(1+4+3+5)(2)
S = (1523)(4)   = 5 3 1 4 2  http://www.wolframalpha.com/input/?i=permutation+(1+5+2+3)(4)

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.

This article uses three binary Wolfram functions:

PermutationProduct[a, b, c] gives the product of permutations a, b, c.     (box 5b)

PermutationReplace[expr, perm] replaces each part in expr by its image under the permutation perm.     (boxes 13a, 15a, 17a)

Permute[l, p] permutes list l according to permutation p.     (boxes 12a, 16a)


SymPy

http://docs.sympy.org/dev/modules/combinatorics/permutations.html

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.

Permutations 023

Example:    15=(031)
(a,b)=ab

Example:    615=9
(a,b)=ab=b1ab       (details on file page)

Example:    615=151615=20615=2



Sources

There appear to be no sources that actually use the passive interpretation of permutations, so the sources below are active left and active right.

Left

Aigner 2007

We read a product always from right to left, thus for

σ=(123456234165),   τ=(123456134526),

we have

τσ=(123456345162)   and   στ=(123456241635).


We call σ=σ(1)σ(2)σ(n) the word representation of σ.

Template:Cite bookWord Representation (p. 27 ff)

Knuth 1973

In TAoCP Knuth states that in his book permutations are always multiplied from left to right, and gives the following example:

αβ=(012345250143)(012345543210)=(012345250143)(250143305412)=(012345305412)

αβ=(02)(153)(05)(14)(23)=(0341)(25)

The left permutation sees the argument first:

Notice that the image of 1 under αβ is 1(αβ)=(1α)β=5β=0, 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 α(1)=5, makes it natural to think that αβ(1) should mean α(β(1))=α(4)=4.

SymPy: a(b(1)) = a(4) = 4

Template:Cite book — Chapter 7.2.1.2. Generating all permutations


Cameron 1994

Cameron decribes the active form of a permutation as a one-to-one mapping from X={x1,,xn} to itself, and the passive form as the ordered n-tuple (π(x1),,π(xn)).

I wrote π(x) for the result of applying the function π to the element x.
[...] In order that the result of applying first π1 and then π2 can be called π1π2, it is more natural to denote the image of x under π as xπ.
[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.

Template:Citation — Chapter 3.5 Permutations (p. 29)

Grimaldi 2004

Illustrations of π1 and r1 as in the book, illustration of π1r1 added

Grimaldi defines π1=(123312) as the left rotation of a triangle and r1=(123213) as the reflection that leaves the right base angle in place.
Their product π1r1=(123321)=r3 is the reflection about the vertical axis.

Template:Cite book — Example 16.7 (p.749)


References

Template:Reflist

  1. 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.
  2. Compare this list of the first 40320 finite permutations: https://oeis.org/A198380/a198380_1.txt (1-based)