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?