I'm attempting to understand in how to get from step1 to step2 :
Step 1. $1+2+\cdots+n = n(n+1)/2 $
Step 2. Need to show $1+2+\cdots+(n+1)= (n+1)(n+2) / 2$
How is $(n+1)(n+2) / 2$ derived from replacing $n$ in step 1 with $(n+1)$ ?
I'm attempting to understand in how to get from step1 to step2 :
Step 1. $1+2+\cdots+n = n(n+1)/2 $
Step 2. Need to show $1+2+\cdots+(n+1)= (n+1)(n+2) / 2$
How is $(n+1)(n+2) / 2$ derived from replacing $n$ in step 1 with $(n+1)$ ?
The $(n+1)(n+2)/2$, or the right-hand side, is derived by using the induction hypothesis.
You assume $$ 1+2+\cdots+n=\frac{n(n+1)}{2} $$ is true for some $k\geq 1$. You need to use this assumption, called the induction hypothesis, in your derivation.
For example, you have the following \begin{align} 1+2+\cdots+k+(k+1) &= \underbrace{\frac{k(k+1)}{2}}_{1+2+\cdots+k=\frac{k(k+1)}{2}\;\text{(induction hypothesis)}}+(k+1)\\[1em] &= \frac{k(k+1)+2(k+1)}{2}\qquad\text{(common denominator)}\\[1em] &= \frac{(k+1)(k+2)}{2}\qquad\text{(desired expression)} \end{align} Do you see how this worked?