Inversion (discrete mathematics)


In computer science and discrete mathematics, a sequence has an inversion where two of its elements are out of their natural order.

Definitions

Inversion

Let be a permutation. If and, either the pair of places or the pair of elements is called an inversion of.
The inversion is usually defined for permutations, but may also be defined for sequences:
Let be a sequence. If and, either the pair of places or the pair of elements is called an inversion of.
For sequences inversions according to the element-based definition are not unique, because different pairs of places may have the same pair of values.
The inversion set is the set of all inversions. A permutation's inversion set according to the place-based definition is that of the inverse permutation's inversion set according to the element-based definition, and vice versa, just with the elements of the pairs exchanged.

Inversion number

The inversion number is the cardinality of inversion set. It is a common measure of the sortedness of a permutation or sequence.
It is the number of crossings in the arrow diagram of the permutation, its Kendall tau distance from the identity permutation, and the sum of each of the inversion related vectors defined below.
It does not matter if the place-based or the element-based definition of inversion is used to define the inversion number, because a permutation and its inverse have the same number of inversions.
Other measures of sortedness include the minimum number of elements that can be deleted from the sequence to yield a fully sorted sequence, the number and lengths of sorted "runs" within the sequence, the Spearman footrule, and the smallest number of exchanges needed to sort the sequence. Standard comparison sorting algorithms can be adapted to compute the inversion number in time.

Inversion related vectors

Three similar vectors are in use that condense the inversions of a permutation into a vector that uniquely determines it. They are often called inversion vector or Lehmer code.
This article uses the term inversion vector like Wolfram. The remaining two vectors are sometimes called left and right inversion vector, but to avoid confusion with the inversion vector this article calls them left inversion count and right inversion count. Interpreted as a factorial number the left inversion count gives the permutations reverse colexicographic, and the right inversion count gives the lexicographic index.
Inversion vector :
With the element-based definition is the number of inversions whose smaller component is.
Left inversion count :
With the place-based definition is the number of inversions whose bigger component is.
Right inversion count, often called Lehmer code:
With the place-based definition is the number of inversions whose smaller component is.
Both and can be found with the help of a Rothe diagram, which is a permutation matrix with the 1s represented by dots, and an inversion in every position that has a dot to the right and below it. is the sum of inversions in row of the Rothe diagram, while is the sum of inversions in column. The permutation matrix of the inverse is the transpose, therefore of a permutation is of its inverse, and vice versa.

Example: All permutations of four elements

The following sortable table shows the 24 permutations of four elements with their place-based inversion sets, inversion related vectors and inversion numbers.
It can be seen that and always have the same digits, and that and are both related to the place-based inversion set. The nontrivial elements of are the sums of the descending diagonals of the shown triangle, and those of are the sums of the ascending diagonals.
The default order of the table is reverse colex order by, which is the same as colex order by. Lex order by is the same as lex order by.
3-element permutations for comparison

Weak order of permutations

The set of permutations on n items can be given the structure of a partial order, called the weak order of permutations, which forms a lattice.
The Hasse diagram of the inversion sets ordered by the subset relation forms the skeleton of a permutohedron.
If a permutation is assigned to each inversion set using the place-based definition, the resulting order of permutations is that of the permutohedron, where an edge corresponds to the swapping of two elements with consecutive values. This is the weak order of permutations. The identity is its minimum, and the permutation formed by reversing the identity is its maximum.
If a permutation were assigned to each inversion set using the element-based definition, the resulting order of permutations would be that of a Cayley graph, where an edge corresponds to the swapping of two elements on consecutive places. This Cayley graph of the symmetric group is similar to its permutohedron, but with each permutation replaced by its inverse.

Presortedness measures