q-Binomial coefficients and Theorem 6.6 #
Main results #
QBinomial.qBinom_pascal— Lemma 6.5: the q-binomial Pascal recurrence.QBinomial.rankGenPoly_eq_qBinom— Theorem 6.6: the rank-generating polynomial of L(m,n) equals[m+n choose m]_q.
References #
- Stanley, Algebraic Combinatorics, Chapter 6.
The q-analogue of a natural number: [n]_q = 1 + q + q² + ⋯ + q^{n-1}.
Instances For
The q-factorial: [n]!_q = [1]_q · [2]_q · ⋯ · [n]_q.
Instances For
The q-binomial coefficient [k choose j]_q, defined recursively via the
Pascal recurrence.
Instances For
Rank-generating polynomial and Theorem 6.6 #
The rank-generating polynomial of L(m,n):
F(L(m,n)) = ∑_{λ ∈ L(m,n)} q^{|λ|} where |λ| is the sum of parts.
Instances For
theorem
QBinomial.rankGenPoly_succ_succ
(m n : ℕ)
:
rankGenPoly (m + 1) (n + 1) = rankGenPoly (m + 1) n + Polynomial.X ^ (n + 1) * rankGenPoly m (n + 1)
The rank-generating polynomial recurrence from the first-part decomposition.
Theorem 6.6. The rank-generating polynomial of L(m,n) equals [m+n choose m]_q.