1

$$ \sum_{i=0}^n {n \choose i} i = n2^{n-1} $$

I am having trouble formulating a combinatorial proof.

An algebraic proof is quite simple, where one expands $(1 + x)^{n}$ and then takes the derivative. Any help with the combinatorial proof would be greatly appreciated.

Anne Bauval
  • 34,650
Zee
  • 393

2 Answers2

5

Hint: Say there're $n$ people and you want to choose a group of $i$ and from that group a leader. So the number of ways is $\binom{n}{i}i.$ Instead you could choose a leader first, out of $n$ people, then choose other $i-1$ members for the group (leader is of course a member of the group). What's the number of ways for doing so? can you conclude the result then?

0

Enumerate the list of all $2^n$ subsets of $n$ objects. For each of the $n$ objects, the number of subsets it appears in is $2^{n-1}$, so the total number of {subset, subset member} pairs is $n2^{n-1}$. On the other hand, each of the $\binom{n}{i}$ subsets of size $i$ contributes $i$ {subset, subset member} pairs.

angryavian
  • 89,882
  • This is also a really good alternate explanation, just a little harder to grasp than the one mentioned above. – Zee Dec 04 '14 at 05:41