0

For natural numbers $m\geq2$ and $n\geq1$, prove with induction that $\sum\limits_{i=0}^n m^i=\frac{m^{n+1}-1}{m-1}$.

My first intuition is to prove that $n+1,m$ is true, then $n,m+1$, then possibly $n+1,m+1$, though I'm uncertain whether the last is needed in general.

Proving $n+1,m$ holds was not difficult, but now I'm having trouble with $n,m+1$.

wts: $$\sum_{i=0}^n (m+1)^i=\frac{(m+1)^{n+1}-1}{(m+1)-1}=\frac{(m+1)^{n+1}-1}{m}$$

I expanded the summation, but that didn't help much to rearrange to the above.

1 Answers1

2

You should work on$n$ $$p_1 \to n=1 \to \sum_{i=0}^1 m^i=\frac{m^{1+1}-1}{m-1} \checkmark$$ $$p_k \to n=k \to \sum_{i=0}^k m^i=\frac{m^{k+1}-1}{m-1} \checkmark$$ $$p_{k+1} \to n=1 \to \sum_{i=0}^{k+1} m^i=\frac{m^{k+1+1}-1}{m-1} ?$$ form $p_k$,$p_{k+1}$ we have $$\sum_{i=0}^{k+1} m^i=\sum_{i=0}^{k} m^i+(m^{k+1})\\= \frac{m^{k+1}-1}{m-1}+(m^{k+1})=\\ \frac{m^{k+1}-1+(m-1)m^{k+1}}{m-1}=\\ \dfrac{m^{k+2}-1}{m-1}\checkmark$$

Khosrotash
  • 24,922