\({n+1 \choose k} = \sum_{i=0}^n {i \choose k-1}\)
In words, the above equation says that instead of choosing k things out of n+1 things, we will choose k-1 things out of a bunch of i things. Vary i from 0 to n, and add up all the \( {i \choose k-1} \). Somehow this summation also counts the number of ways of picking k things from n+1 things.
#Combinatorial #proof time!
The LHS is the number of ways of picking k things out of n+1 things. To get the RHS, we'll count the same thing but in a long-winded way. First, let the n+1 things be the numbers {1, 2, ..., n, n+1}. We'll condition on the largest number π that gets picked, and then count the number of ways to pick the remaining k-1 things from all remaining smaller numbers. If π=1, then we have 0 smaller numbers and need to pick k-1 out of them βΆ \( {0 \choose k-1} \). If π=2, then we only have 1 smaller number and need to pick πβ1 numbers. As π varies from 1 to π+1, the terms being added vary as \( {i \choose k-1} \) where π=πβ1.
Each of these ways is an independent way of picking k things, so by the sum rule, we get the RHS as the number of ways of picking k things from n-1.
Note that the same proof idea gives a really nice counting based proof for the formula for the sum of the first n natural numbers.