I have tried using the principle of mathematical induction. The base case is simple, but I am having trouble with the induction step. Any help would be great, thanks !
2 Answers
Although a MI method may be used, a Combinatorial argument is much more simple. We assume that we want to select n distinct objects of a total of m objects. We can always select them directly and get RHS.Alternatively, we can separate the m objects into two groups, one of n and the other of m-n.
Now assume we take 0 from the group with n, we must choose n from the group with m-n. If we take 1 from the group with n, we must Take (n-1) from the group with (m-n). We continue repeating this & sum up the result, and we get RHS.

- 31
Another way of proving this is by comparing the coefficients of $x$ in
$$(1+x)^m = (1+x)^n(1+x)^{m-n}$$
i.e. $$\sum_{k=0}^m \binom{m}{k} x^k = \sum_{l=0}^n \binom{n}{a}x^l\sum_{l=0}^{m-n} \binom{m-n}{l}x^l$$
Where the product of two series $∑a_nx^n, ∑b_nx^n$ has coefficients $c_n = ∑_{k+l=n}a_kb_{n-l}$.

- 34,903
I think I just am on the wrong track. I want to somehow use the fact that $\sum_{k=0}^n {n \choose k}{m-n \choose n-k} = {m \choose n}$, I'm just not sure how.
– Lgate8 Sep 25 '15 at 00:18