I derived this sum from a problem I have been working on. Somehow I don't know how to proceed. I only know some basics like $\sum\limits_{k=0}^{n}\dbinom{n}{k} = 2^n$. Meanwhile I am reading the related topics trying to derive a formula. But it's like shooting in the dark.
-
1@NajibIdrissi Hmmmm. How can I search with Latex Symbol? Seems the search bar doesn't have the ability to do this. – Xiaohong Deng Oct 08 '14 at 08:41
-
I actually didn't search via the search bar (as you say, it's very hard with latex). What I did was going to the [tag:combinatorics] tag page and go to the frequently asked questions tab. Then I looked for a similar question. – Najib Idrissi Oct 08 '14 at 08:48
-
Thank you. I guess this only works for those hottest questions. :) – Xiaohong Deng Oct 08 '14 at 09:00
3 Answers
Consider differentiating $(1+x)^n=\sum_{k=0}^{n}\binom{n}{k}x^k$ with respect to x, then substituting in a suitable value of x.
Alternatively, consider having a group of n people and forming a committee of k people with 1 chairman:
We can do this first by choosing the k people out of the initial n, and from those people choosing a chairman. Adding up the committee sizes where k=1 and k=n, this evaluates to: $\sum_{k=1}^n k \binom{n}{k}=\sum_{k=0}^{n}k\binom{n}{k}$ (note that we are effectively adding 0 to the sum)
This can also be done by first choosing the chairman from the n people- n ways. We then have (n-1) people left, who can either be in the committee or not, so the total number of committees with a chairman formed is: $n2^{n-1}$.
Since they are just two different ways of counting the same thing:
$\sum^n_{k=0}k \binom{n}{k}=n2^{n-1}$

- 1,908
$k\dbinom{n}{k} = n\dbinom{n-1}{k-1}$ follows directly from the definition of $\dbinom{n}{k}$ for $k > 0$.
$\sum\limits_{k=0}^{n}{k\dbinom{n}{k}} = \sum\limits_{k=1}^{n}{k\dbinom{n}{k}} = \sum\limits_{k=1}^{n}{n\dbinom{n-1}{k-1}} = n\sum\limits_{k=0}^{n-1}{\dbinom{n-1}{k}} = n*2^{n-1}$.

- 2,838
The Binomial theorem tells us that $$(1+x)^n = \sum_{k=0}^n{n\choose k}x^k,$$ so that $$n(1+x)^{n-1}=\sum_{k=0}^nk{n\choose k}x^{k-1}.$$ Now let $x=1$. Then $$n2^{n-1}=\sum_{k=0}^nk{n\choose k}.$$

- 10,565