Prove that $$\sum_{i=n}^{2n}i=\frac{3}{2}n(n+1)$$ usind induction.
Base step: for $n=1$ we have $\sum_{i=1}^{2\cdot1}i=1+2=3$, and $\frac{3}{2}1(1+1)=\frac322=3$, so it is true for $n=1$.
My problem starts when trying to prove the inductive step: $$\sum_{i=h}^{2h}i=\frac{3}{2}h(h+1)\implies\sum_{i=h+1}^{2(h+1)}i=\frac{3}{2}(h+1)(h+2).$$ I have read that it has to be: \begin{align}\sum_{i=h+1}^{2(h+1)}i&=\sum_{i=h+1}^{2h+2}i\\ &=\underbrace{\sum_{i=h}^{2h}(i)}_{\text{Hypothesis}}+\underbrace{\sum_{i=1}^{2}}_{(*)}\\ &=\frac{3}{2}h(h+1)+\underbrace{\sum_{i=1}^{2}}_{(*)}\\ &=\frac{3}{2}h(h+1)+\bigl((h+1)+2(h+1)\bigr)\\ &=\cdots\\ &=\frac32h^2+\frac92h+3\\ &=\frac32(h+1)(h+2)\end{align}
but I think $(*)$ has no sense.
But I am not able to write it in a nice way because I think it has to be: $$(*)=\sum_{i=h+1}^{2}(2i+2)=\bigl(2(h+1)+2\bigr)+\bigl(2(2(h+1)+2)\bigr),$$ which is not right.
So my questions are:
- Is $(*)$ correct? What has to be inside the summation i.e. $\sum_{i=1}^2\square$? Why the initial value is $i=1$ but not $i=h+1$?
- Where is my mistake?
Thanks!!
\begin{align*} \sum_{i=h+1}^{2h+2}i & = \sum_{i=h+1}^{2h}i+\underbrace{(2h+1)+(2h+2)}_{\text{ the } 2h+1 \, \& \, 2h+2 \, \text{terms}} \\ & = \color{red}{h}+\sum_{i=h+1}^{2h}i+(2h+1)+(2h+2)\color{blue}{-h}\\ & = \underbrace{\sum_{i=\color{red}{h}}^{2h}i}_{\text{hypothesis expression}}+(2h+1)+(2h+2)\color{blue}{-h}\\ &=\frac{3}{2}h(h+1)+3h+3. \end{align*} Now you can finish off.