4

In my work I ran across the following binomial coefficient sum:

$$ S=\sum_{a=0}^{n-1-l} (-1)^a \binom{n}{l+1+a} \binom{l+a}{l} $$

where $n\geq 0$ and $0\leq l \leq n-1$.

I browsed the web and found (thanks to this question) the formula (5.24) in „Concrete Mathematics“ which looks like this:

$$ \sum_k \binom{l}{m+k} \binom{s+k}{n} (-1)^k = (-1)^{l+m} \binom{s-m}{n-l}$$

I went ahead and thought about the summation index. If $a<0$ then $\binom{l+a}{l}=0$ and if $a>n-1-l$ then $\binom{n}{l+1+a}$. So the summation should not be a problem. Using the formula on $S$ gives me

$$ S = (-1)^{n+l+1}\binom{l - (l+1)}{l-n}.$$

Since $l<n$ this would mean $S=0$. But numericals experiments and giving the sum to Mathematica resulted in $S=1$. What am I missing here?

Edit: Do I have to consider $a < -l$, because then $\binom{l+a}{l}\neq 0$ again?

Stefan Hante
  • 2,616

2 Answers2

1

For $a=-\ell-1$ you would have a term

$$(-1)^{-\ell-1}\binom{n}0\binom{-1}\ell=(-1)^{\ell+1}\frac{(-1)^{\underline\ell}}{\ell!}=-1\;.$$

This term is included in the summation in $(5.24)$ from Concrete Mathematics but not in your summation, and it accounts for the difference.

Brian M. Scott
  • 616,228
0

Suppose we seek to evaluate $$S = \sum_{q=0}^{n-l-1} (-1)^q {n\choose l+1+q} {l+q\choose q}$$ where $l\lt n.$

Introduce the integral $${n\choose l+1+q} = {n\choose n-l-1-q} = \frac{1}{2\pi i} \int_{|z|=\epsilon} \frac{(1+z)^n}{z^{n-l-q}} \; dz.$$

This integral is zero when $q\ge n-l$ so we may let $q$ go to infinity.

This yields for the sum $$\frac{1}{2\pi i} \int_{|z|=\epsilon} \frac{(1+z)^n}{z^{n-l}} \sum_{q\ge 0} {l+q\choose l} (-1)^q z^q\; dz \\= \frac{1}{2\pi i} \int_{|z|=\epsilon} \frac{(1+z)^n}{z^{n-l}} \frac{1}{(1+z)^{l+1}} \; dz \\= \frac{1}{2\pi i} \int_{|z|=\epsilon} \frac{(1+z)^{n-l-1}}{z^{n-l}} \; dz.$$

This is $$[z^{n-l-1}] (1+z)^{n-l-1}$$ which evaluates to one by inspection.

Marko Riedel
  • 61,317
  • Thanks for your direct proof, but where did that scary integral come from? Is it in the book I mentioned, too? Is the identity you use to get rid of the sum well known? – Stefan Hante Jul 20 '15 at 21:15