Can someone look at my proof. I am supposed to prove by induction. The question is to prove the following:
$$\sum _{i=0}^{n}{i} =\frac { n\left( n+1 \right) }{ 2 } .$$
If $n=1$ Then
$$1=\sum_{i=1}^1{i}=\frac{1(1+1)}{2}=1$$
Now assume $n=k$. Thus
$$\sum_{i=1}^k{i}=\frac{k(k+1)}{2}=1$$
If now $n=k+1$
$$\sum_{i=1}^{k+1}{i}=\sum_{i=1}^k{i}+(k+1)= \frac{(k+1)(k+2)}{2}$$
Is there anything more that I have to do, or is this it?