0

Is there a way to simplify : $\sum_{i=1}^{n} {n \choose i} {m \choose i}$?

Nathan
  • 79

2 Answers2

3

prove with induction that we get $$\sum_{i=1}^n\binom{n}{i}\binom{m}{i}={\frac { \left( m+1 \right) \left( n+m \right) !}{ \left( m+1 \right) !\,n!}}-1 $$

1

When $n\leq m$ then $\sum_{k=0}^n \binom nk \binom m{k}$ counts all the ways to swap items between piles of $n$ and $m$ items; by doing counting selections of items in each pile to swap for each swap size ($k\in \{0..n\}$).   Also when $n>m$ it counts the same by the convention that $\binom {m}{r}=0$ for all $r>m$.

We could do this by gathering all the items into one pile of $n+m$ and count ways to sort them back into piles of $n$ and $m$ items.   This is $\binom {n+m}m$

Eg $\binom{5}2=10$

Thus as the count of ways to perform the same task must be the same:

$$\sum_{k=0}^n \binom n k\binom m k~=~ \binom {n+m}n ~=~ \binom {m+n}m ~=~ \sum_{k=0}^m \binom m k\binom n k$$

$~\\~\\~\\~\\~$


NB: Your series is indexed $1$, so does not include the term $\binom n0\binom m0$ which is 1.

$$\sum_{k=1}^n \binom n k\binom m k~=~ \binom {n+m}n-1 ~=~ \binom {m+n}m -1~=~ \sum_{k=1}^m \binom m k\binom n k$$

Graham Kemp
  • 129,094