$\newcommand{\binomial}[2]{\left( \begin{array}{c} #1 \\ #2 \end{array} \right)}$
I have the following sum : $\displaystyle \sum_{k=1}^{n} \binomial{n}{k} = n2^{n-1}$
The $\binomial{n}{k}$ is a binomial coefficient with n over k. I must do a proof by induction of this.
I know that I must first show that if I set n=1, then it must be true. But after that what do I do ?
Assume that the identity is true for $n$ .We'll prove it for $n+1$ .
Use the Pascal identity to split the sum : $$\sum_{k=1}^{n+1} k \binom{n+1}{k}=\sum_{k=1}^{n+1}k \left (\binom{n}{k}+\binom{n}{k-1} \right )=\sum_{k=1}^{n} k \binom{n}{k}+\sum_{k=0}^{n} (k+1) \binom{n}{k}=n 2^{n-1}+\sum_{k=0}^{n} k \binom{n}{k}+\sum_{k=0}^{n} \binom{n}{k}=n 2^{n-1}+n 2^{n-1}+2^n=(2n+2)2^{n-1}=(n+1)2^n$$ so the identity holds for all $n$ (for $n=1$ is obvious)