1

Prove the identity $ \sum_{i=0}^n {n \choose i} i = n2^{n-1} $ using combinatorial proof.

2 Answers2

2

Hint. Consider the following counting problem:

How many ways do you have of choosing a non-empty subset of $S_n:=\{1,2,\dots,n\}$ and then an element of this subset?

You can choose a subset of $i$ elements in $\binom{n}{i}$ ways (note that $\sum_{i=0}^n \binom{n}{i}$ gives you all the subsets of $S_n$ that is $2^n$) then you pick one of the $i$ element of this subset in $i$ ways. Hence the total number is $$\sum_{i=1}^n {n \choose i} i,$$ that is the left-hand side of your identity.

What about the right-hand side?

Another approach: note that $$\sum_{i=1}^n {n \choose i} i=\sum_{i=1}^n \frac{n}{i}\cdot {n-1 \choose i-1} i=n\cdot\sum_{i=1}^n {n-1 \choose i-1}=n\sum_{j=0}^{n-1} \cdot {n-1 \choose j}=n2^{n-1}.$$.

Robert Z
  • 145,942
1

$\binom ni$ is the number of ways to pick $i$ items out of $n$, and in your sum there is an extra factor $i$. So we can count all the ways to draw $i$ items and paint one of them red. This is the same as painting one item red and picking $i-1$ white ones in all possible ways.