Hockey-stick identity

From HandWiki
Short description: Recurrence relations of binomial coefficients in Pascal's triangle
Pascal's triangle, rows 0 through 7. The hockey stick identity confirms, for example: for n=6, r=2: 1+3+6+10+15=35.

In combinatorial mathematics, the hockey-stick identity,[1] Christmas stocking identity,[2] boomerang identity, Fermat's identity or Chu's Theorem,[3] states that if [math]\displaystyle{ n \geq r \ge 0 }[/math] are integers, then

[math]\displaystyle{ \binom{r}{r} + \binom{r+1}{r} + \binom{r+2}{r} + \cdots + \binom{n}{r} = \binom{n+1}{r+1}. }[/math]

The name stems from the graphical representation of the identity on Pascal's triangle: when the addends represented in the summation and the sum itself are highlighted, the shape revealed is vaguely reminiscent of those objects (see hockey stick, Christmas stocking).

Formulations

Using sigma notation, the identity states

[math]\displaystyle{ \sum^n_{i=r}{i\choose r}={n+1\choose r+1} \qquad \text{ for } n,r\in\mathbb{N}, \quad n\geq r }[/math]

or equivalently, the mirror-image by the substitution [math]\displaystyle{ j\to i-r }[/math]:

[math]\displaystyle{ \sum^{n-r}_{j=0}{j+r\choose r}=\sum^{n-r}_{j=0}{j+r\choose j}={n+1\choose n-r} \qquad \text{ for } n,r\in\mathbb{N}, \quad n\geq r. }[/math]

Proofs

Generating function proof

Let [math]\displaystyle{ X=1+x }[/math]. Then, by the partial sum formula for geometric series, we find that

[math]\displaystyle{ X^r + X^{r+1} + \dots + X^{n} = \frac{X^r-X^{n+1}}{1-X} = \frac{X^{n+1}-X^r}{x} }[/math].

Further, by the binomial theorem, we also find that

[math]\displaystyle{ X^{r + k} = (1+x)^{r + k} = \sum_{i = 0}^{r + k} \binom{r + k}{i} x^{i} }[/math].

Note that this means the coefficient of [math]\displaystyle{ x^r }[/math] in [math]\displaystyle{ X^{r + k} }[/math] is given by [math]\displaystyle{ \binom{r + k}{r} }[/math].

Thus, the coefficient of [math]\displaystyle{ x^r }[/math] in the left hand side of our first equation can be obtained by summing over the coefficients of [math]\displaystyle{ x^r }[/math] from each term, which gives

[math]\displaystyle{ \sum_{k = 0}^{n-r} \binom{r + k}{r} }[/math]

Similarly, we find that the coefficient of [math]\displaystyle{ x^r }[/math] on the right hand side is given by the coefficient of [math]\displaystyle{ x^{r + 1} }[/math] in [math]\displaystyle{ X^{n+1} - X^r }[/math], which is

[math]\displaystyle{ \binom{n + 1}{r + 1} - \binom{r}{r + 1} = \binom{n + 1}{r + 1} }[/math]

Therefore, we can compare the coefficients of [math]\displaystyle{ x^r }[/math] on each side of the equation to find that

[math]\displaystyle{ \sum_{k = 0}^{n-r} \binom{r + k}{r} = \binom{n + 1}{r + 1} }[/math]

Inductive and algebraic proofs

The inductive and algebraic proofs both make use of Pascal's identity:

[math]\displaystyle{ {n \choose k}={n-1\choose k-1}+{n-1\choose k}. }[/math]

Inductive proof

This identity can be proven by mathematical induction on [math]\displaystyle{ n }[/math].

Base case Let [math]\displaystyle{ n=r }[/math];

[math]\displaystyle{ \sum^n_{i=r} {i\choose r} = \sum^r_{i=r}{i\choose r}={r\choose r} = 1 = {r+1\choose r+1} = {n+1\choose r+1}. }[/math]

Inductive step Suppose, for some [math]\displaystyle{ k\in\mathbb{N}, k \geqslant r }[/math],

[math]\displaystyle{ \sum^k_{i=r}{i\choose r}={k+1\choose r+1} }[/math]

Then

[math]\displaystyle{ \sum^{k+1}_{i=r} {i\choose r} = \left(\sum^k_{i=r} {i\choose r} \right) + {k+1\choose r}={k+1\choose r+1}+{k+1\choose r}={k+2\choose r+1}. }[/math]

Algebraic proof

We use a telescoping argument to simplify the computation of the sum:

[math]\displaystyle{ \begin{align} \sum_{t=\color{blue}0}^n \binom{t}{k} =\sum_{t=\color{blue}k}^n\binom tk &= \sum_{t=k}^n\left[ \binom {t+1}{k+1}-\binom {t}{k+1}\right]\\ &=\sum_{t=\color{green}k}^{\color{green}n}\binom {\color{green}{t+1}}{k+1} - \sum_{t=k}^n \binom t{k+1}\\ &=\sum_{t=\color{green}{k+1}}^{\color{green}{n+1}}\binom {\color{green}{t}}{k+1} - \sum_{t=k}^n \binom t{k+1}\\ &=\binom{n+1}{k+1}-\underbrace{\binom k{k+1}}_0&&\text{by telescoping}\\ &=\binom{n+1}{k+1}. \end{align} }[/math]

Combinatorial proofs

Proof 1

Imagine that we are distributing [math]\displaystyle{ n }[/math] indistinguishable candies to [math]\displaystyle{ k }[/math] distinguishable children. By a direct application of the stars and bars method, there are

[math]\displaystyle{ \binom{n+k-1}{ k-1} }[/math]

ways to do this. Alternatively, we can first give [math]\displaystyle{ 0\leqslant i\leqslant n }[/math] candies to the oldest child so that we are essentially giving [math]\displaystyle{ n-i }[/math] candies to [math]\displaystyle{ k-1 }[/math] kids and again, with stars and bars and double counting, we have

[math]\displaystyle{ \binom{n+k-1}{ k-1}=\sum_{i=0}^n\binom{n+k-2-i}{k-2}, }[/math]

which simplifies to the desired result by taking [math]\displaystyle{ n' = n+k-2 }[/math] and [math]\displaystyle{ r=k-2 }[/math], and noticing that [math]\displaystyle{ n'-n = k-2=r }[/math]:

[math]\displaystyle{ \binom{n'+1}{ r+1}=\sum_{i=0}^n \binom {n'-i}r = \sum_{i=r}^{n'} \binom {i}r . }[/math]

Proof 2

We can form a committee of size [math]\displaystyle{ k+1 }[/math] from a group of [math]\displaystyle{ n+1 }[/math] people in

[math]\displaystyle{ \binom{n+1}{k+1} }[/math]

ways. Now we hand out the numbers [math]\displaystyle{ 1,2,3,\dots,n-k+1 }[/math] to [math]\displaystyle{ n-k+1 }[/math] of the [math]\displaystyle{ n+1 }[/math] people. We can then divide our committee-forming process into [math]\displaystyle{ n-k+1 }[/math] exhaustive and disjoint cases based on the committee member with the lowest number, [math]\displaystyle{ x }[/math]. Note that there are only [math]\displaystyle{ k }[/math] people without numbers, meaning we must choose at least one person with a number in order to form a committee of [math]\displaystyle{ k+1 }[/math] people. In general, in case [math]\displaystyle{ x }[/math], person [math]\displaystyle{ x }[/math] is on the committee and persons [math]\displaystyle{ 1,2,3,\dots, x-1 }[/math] are not on the committee. The rest of the committee can then be chosen in

[math]\displaystyle{ \binom{n-x+1}{k} }[/math]

ways. Now we can sum the values of these [math]\displaystyle{ n-k+1 }[/math] disjoint cases, and using double counting, we obtain

[math]\displaystyle{ \binom{n+1}{k+1} = \binom n k + \binom {n-1} k + \binom{n-2} k + \cdots + \binom{k+1} k+ \binom k k. }[/math]


See also


References

  1. CH Jones (1996) Generalized Hockey Stick Identities and N-Dimensional Block Walking. Fibonacci Quarterly 34(3), 280-288.
  2. W., Weisstein, Eric. "Christmas Stocking Theorem" (in en). http://mathworld.wolfram.com/ChristmasStockingTheorem.html. 
  3. Merris, Russell (2003). Combinatorics (2nd ed.). Hoboken, N.J.: Wiley-Interscience. pp. 45. ISBN 0-471-45849-X. OCLC 53121765. https://www.worldcat.org/oclc/53121765. 

External links