I was trying to solve the summation:
$${\sum_{k=1}^n k\binom{n}{k} = n2^{n-1}}$$
I started something like:
$${\sum_{k=0}^n \binom{n}{k} = 2^n}$$ $${\Rightarrow \sum_{k=1}^n \binom{n}{k} = 2^n - 2^0 \qquad(1)}$$ Similarly, $${\Rightarrow \sum_{k=2}^n \binom{n}{k} = 2^n - 2^1 \qquad(2)}$$ $${\vdots}$$ $${\Rightarrow \sum_{k=n}^n \binom{n}{k} = 2^n - 2^{n-1} \qquad(n)}$$
On adding the above n equations, we get, $${\sum_{k=1}^n k\binom{n}{k} = n2^n - (2^0 + 2^1 + \cdots + 2^{n-1})}$$ As the expression inside brackets on RHS is a GP, the sum comes up as, $${S_n = 2^0\left(\frac{2^n - 1}{2-1}\right) = 2^n - 1}$$ $${\Rightarrow \sum_{k=1}^n k\binom{n}{k} = n2^n - 2^n + 1 \neq n2^{n-1}}$$
I've checked my solution many times and have searched for similar solutions here and here, but there was no answer using this method. What I am doing wrong?
In each step you are saying that $\sum_{k=0}^{m}{n\choose k}=2^m$ which is not true! What is true is that $\sum_{k=0}^{m}{m\choose k}=2^m$. Be careful, note the difference.
The way to do it is using $k{n\choose k}=n{n-1\choose k-1}$. So at the end your sum is equal to $$\sum_{k=1}^nn{n-1\choose k-1}=n\sum_{j=0}^{n-1}{n-1\choose j}=n2^{n-1}$$