I'm trying to apply an induction proof to show that $((n+1) 2^n - 1 $ is the sum of $(i 2^{i-1})$ from $0$ to $n$.
- the base case: L.H.S = R.H.S
- we assume that $(k+1) 2^k - 1 $ is true.
- we need to prove that $(k+2) 2^{k+1} - 1$
My try to prove 3 is as follows:
$(k+2) 2^{k+1} - 1$
$(k+2) (2^k * 2) - 1$ , from 2: $2^k = 1/(k+1)$
$(k+2) (2 / (k+1)) - 1$
$(k+1) 2 - 1$
My question is, how could I get to $2^k$ from the last line to prove this formula is right?