I know it is a supposedly trivial proof and that of course there are a lot of similar topics, but I'm unclear about whether I could logically exhausts the demonstration (I'm also not very clear about the process of proving by induction, say, if I took the steps properly). So I'm showing my demonstration and asking for critiques on it, hoping you won't find it annoying to have someone asking this again here. It goes like that:
Proposition: $1 + 2 + 3 + \dotsb+ n = \frac{n(n + 1)}{2}$
Proof:
Verifying the expression for the base case $n = 1$: $$\frac{1(1 + 1)}{2} = 1$$ which is correct. So we can assume the proposition is true for any $k \leq n$. Now let's verify if it holds for $n + 1$: $$\sum_{i=1}^{n+1} i = \frac{(n + 1)[(n + 1) + 1]}{2} = \frac{(n + 1)(n + 2)}{2} = \frac{n^2 + 3n + 2}{2}.$$
Now, subtracting $(n + 1)$ from both sides of the equation yields $$\sum_{i=1}^{n} i = \frac{n^2 + 3n + 2 - 2n - 2}{2} = \frac{n^2 - n}{2} = \frac{n(n + 1)}{2}$$ which is true and confirms the hypothesis for $n+1$ also.