mathlib documentation

data.​list.​nat_antidiagonal

data.​list.​nat_antidiagonal

The antidiagonal of a natural number n is the list of pairs (i,j) such that i+j = n.

Equations
@[simp]

A pair (i,j) is contained in the antidiagonal of n if and only if i+j=n.

@[simp]

The length of the antidiagonal of n is n+1.

@[simp]

The antidiagonal of 0 is the list [(0,0)]

The antidiagonal of n does not contain duplicate entries.