Problem Statement
I recently came across the following equation that I want to prove:
$$ \sum_{i=1}^{n} \left[ \binom{n+i}{m}-\binom{n-i}{m} \right] \binom{2n}{n-i} = \sum_{i=1}^{m}\binom{n+i}{m}\binom{2n}{n-i} $$
My Attempt
Simply subtracting RHS from LHS and using $\binom{2n}{n-i}=\binom{2n}{n+i}$, I got the following equation:
$$ \sum_{i=m+1}^{n}\binom{n+i}{m}\binom{2n}{n+i} - \sum_{i=1}^{n}\binom{n-i}{m}\binom{2n}{n-i} = 0 $$
Say we wish to color $2n$ distinct balls such that $m$ of them are pink, some of them (can be none) are white, and the rest (can be none) black. The terms on LHS are, respectively (without the negative sign)
- The number of colouring such that at least $n+1$ of the balls are black
- The number of colouring such that at most $n-m-1$ of the balls are white
These two are equal, so their difference is zero and the equation is proved.
Question
Looking for help to verify this proof. Also, is there a more elegant proof e.g. with another combinatorial proof, induction, generating functions, etc.?
We show the following is valid for $0\leq m<n$ \begin{align*} \color{blue}{\sum_{i=m+1}^n\binom{n+i}{m}\binom{2n}{n+i}=\sum_{i=1}^n\binom{n-i}{m}\binom{2n}{n-i}}\tag{1} \end{align*}
Comment:
In (2) we note that $\binom{p}{q}=0$ if $0\leq p < q$ so that $n-i\geq m$ from which $i\leq n-m$ follows.
In (3) we shift the index to start with $m+1$.
In (4) we use the binomial identity \begin{align*} \binom{n+m-i}{m}\binom{2n}{n+m-i}&=\frac{(n+m-i)!}{m!(n-i)!}\,\frac{(2n)!}{(n+m-i)!(n-m+i)!}\\ &=\frac{(n+i)!}{m!(n-i)!}\,\frac{(2n)!}{(n+i)!(n-m+i)!}\\ &=\binom{n+i}{m}\binom{2n}{n+i} \end{align*}