Documentation

Mathlib.Combinatorics.Young.YoungDiagram

Young diagrams #

A Young diagram is a finite set of up-left justified boxes:

□□□□□
□□□
□□□
□

This Young diagram corresponds to the [5, 3, 3, 1] partition of 12.

We represent it as a lower set in ℕ × ℕ in the product partial order. We write (i, j) ∈ μ to say that (i, j) (in matrix coordinates) is in the Young diagram μ.

Main definitions #

Notation #

In "English notation", a Young diagram is drawn so that (i1, j1) ≤ (i2, j2) means (i1, j1) is weakly up-and-left of (i2, j2). This terminology is used below, e.g. in YoungDiagram.up_left_mem.

Tags #

Young diagram

References #

https://en.wikipedia.org/wiki/Young_tableau

structure YoungDiagram :

A Young diagram is a finite collection of cells on the ℕ × ℕ grid such that whenever a cell is present, so are all the ones above and to the left of it. Like matrices, an (i, j) cell is a cell in row i and column j, where rows are enumerated downward and columns rightward.

Young diagrams are modeled as finite sets in ℕ × ℕ that are lower sets with respect to the standard order on products.

  • cells : Finset ( × )

    A finite set which represents a finite collection of cells on the ℕ × ℕ grid.

  • isLowerSet : IsLowerSet self.cells

    Cells are up-left justified, witnessed by the fact that cells is a lower set in ℕ × ℕ.

theorem YoungDiagram.ext {x y : YoungDiagram} (cells : x.cells = y.cells) :
x = y
@[simp]
@[simp]
theorem YoungDiagram.mem_mk (c : × ) (cells : Finset ( × )) (isLowerSet : IsLowerSet cells) :
c { cells := cells, isLowerSet := isLowerSet } c cells
theorem YoungDiagram.up_left_mem (μ : YoungDiagram) {i1 i2 j1 j2 : } (hi : i1 i2) (hj : j1 j2) (hcell : (i2, j2) μ) :
(i1, j1) μ

In "English notation", a Young diagram is drawn so that (i1, j1) ≤ (i2, j2) means (i1, j1) is weakly up-and-left of (i2, j2).

Equations
@[simp]
@[simp]
Equations
@[simp]
@[simp]
@[simp]
theorem YoungDiagram.not_mem_bot (x : × ) :
x
Equations
  • One or more equations did not get rendered due to their size.
@[reducible, inline]

Cardinality of a Young diagram

Equations

The transpose of a Young diagram is obtained by swapping i's with j's.

Equations

Transposing Young diagrams is an OrderIso.

Equations
  • One or more equations did not get rendered due to their size.

Rows and row lengths of Young diagrams. #

This section defines μ.row and μ.rowLen, with the following API: 1. (i, j) ∈ μ ↔ j < μ.rowLen i 2. μ.row i = {i} ×ˢ (Finset.range (μ.rowLen i)) 3. μ.rowLen i = (μ.row i).card 4. ∀ {i1 i2}, i1 ≤ i2 → μ.rowLen i2 ≤ μ.rowLen i1

Note: #3 is not convenient for defining μ.rowLen; instead, μ.rowLen is defined as the smallest j such that (i, j) ∉ μ.

The i-th row of a Young diagram consists of the cells whose first coordinate is i.

Equations
theorem YoungDiagram.mk_mem_row_iff {μ : YoungDiagram} {i j : } :
(i, j) μ.row i (i, j) μ
theorem YoungDiagram.exists_not_mem_row (μ : YoungDiagram) (i : ) :
∃ (j : ), (i, j)μ

Length of a row of a Young diagram

Equations
theorem YoungDiagram.rowLen_anti (μ : YoungDiagram) (i1 i2 : ) (hi : i1 i2) :

Columns and column lengths of Young diagrams. #

This section has an identical API to the rows section.

The j-th column of a Young diagram consists of the cells whose second coordinate is j.

Equations
theorem YoungDiagram.mk_mem_col_iff {μ : YoungDiagram} {i j : } :
(i, j) μ.col j (i, j) μ
theorem YoungDiagram.exists_not_mem_col (μ : YoungDiagram) (j : ) :
∃ (i : ), (i, j)μ.cells

Length of a column of a Young diagram

Equations
theorem YoungDiagram.colLen_anti (μ : YoungDiagram) (j1 j2 : ) (hj : j1 j2) :

The list of row lengths of a Young diagram #

This section defines μ.rowLens : List, the list of row lengths of a Young diagram μ.

  1. YoungDiagram.rowLens_sorted : It is weakly decreasing (List.Sorted (· ≥ ·)).
  2. YoungDiagram.rowLens_pos : It is strictly positive.

List of row lengths of a Young diagram

Equations

Equivalence between Young diagrams and lists of natural numbers #

This section defines the equivalence between Young diagrams μ and weakly decreasing lists w of positive natural numbers, corresponding to row lengths of the diagram: YoungDiagram.equivListRowLens : YoungDiagram ≃ {w : List ℕ // w.Sorted (· ≥ ·) ∧ ∀ x ∈ w, 0 < x}

The two directions are YoungDiagram.rowLens (defined above) and YoungDiagram.ofRowLens.

The cells making up a YoungDiagram from a list of row lengths

Equations
def YoungDiagram.ofRowLens (w : List ) (hw : List.Sorted (fun (x1 x2 : ) => x1 x2) w) :

Young diagram from a sorted list

Equations
theorem YoungDiagram.mem_ofRowLens {w : List } {hw : List.Sorted (fun (x1 x2 : ) => x1 x2) w} {c : × } :
c ofRowLens w hw ∃ (h : c.1 < w.length), c.2 < w[c.1]
theorem YoungDiagram.rowLens_length_ofRowLens {w : List } {hw : List.Sorted (fun (x1 x2 : ) => x1 x2) w} (hpos : xw, 0 < x) :

The number of rows in ofRowLens w hw is the length of w

theorem YoungDiagram.rowLen_ofRowLens {w : List } {hw : List.Sorted (fun (x1 x2 : ) => x1 x2) w} (i : Fin w.length) :
(ofRowLens w hw).rowLen i = w[i]

The length of the ith row in ofRowLens w hw is the ith entry of w

The left_inv direction of the equivalence

theorem YoungDiagram.rowLens_ofRowLens_eq_self {w : List } {hw : List.Sorted (fun (x1 x2 : ) => x1 x2) w} (hpos : xw, 0 < x) :

The right_inv direction of the equivalence

def YoungDiagram.equivListRowLens :
YoungDiagram { w : List // List.Sorted (fun (x1 x2 : ) => x1 x2) w xw, 0 < x }

Equivalence between Young diagrams and weakly decreasing lists of positive natural numbers. A Young diagram μ is equivalent to a list of row lengths.

Equations
  • One or more equations did not get rendered due to their size.
@[simp]
theorem YoungDiagram.equivListRowLens_symm_apply (ww : { w : List // List.Sorted (fun (x1 x2 : ) => x1 x2) w xw, 0 < x }) :