I'm reading a book(concrete Mathematics) and it uses a lot the concept of 'Math induction'. Thought I've been reading tutorials and examples about it, I'm still unable to understand it, the last 'basic' example I was reading is(my questions are the ones highlighted):
Prove $1+2+...+n=\frac{n(n+1)}{2}$
Then it indicates:
- Step 1: Show is valid for n=1: $1=\frac{1(1+1)}{2}=\frac{2}{2}=1$
- Step 2: Inductive step, assume is valid for n=k:
$1+2+...+k=\frac{k(k+1)}{2}$ //why do I need to substitute n by k? to me is exactly the same as doing nothing, I could work with n+1 instead
- Step 3: Prove is valid for $n=k+1$, and the demo is:
$1+2+...+\color{red}{(k+1)}=(1+2+...+k)+\color{red}{(k+1)}$
= $\frac{k(k+1)}{2}+k+1$
= $\frac{k(k+1)+2(k+1)}{2}$
= $\frac{(k+1)(k+2)}{2}$//How is getting this from the previous equation???????
= $\frac{(k+1)[(k+1) + 1]}{2}$
Any help is appreciated, this 'basic thing' is driving me nuts.