If I were to prove $2\mid n^2+n$ for all integers $n$, would the following proof by induction be valid?
Base: $2\mid 1^2+1 = 2$, so this is obviously true.
Hypothesis: $2 \mid (k^2+k) \to 2 \mid ((k+1)^2+(k+1))$
Induction: \begin{align} &2 \mid k^2 + k \to 2 \mid (k+1)^2 + (k+1)\\ &2 \mid k^2+k\\ &2 \mid 2 \quad \therefore 2 \mid 2(k+1) \quad \because 2 \mid a \to 2 \mid ac \quad \text{for all integers} \ c \ \text{(in this case} \ a=2, c=k+1)\\ &(2 \mid 2k+2) \wedge (2 \mid k^2+k)\\ &2 \mid k^2+k+2k+2 \quad \because (2 \mid a) \wedge (2 \mid b) \to (2 \mid a+b)\\ &2 \mid k^2+3k+2\\ &2 \mid k^2 +2k+1+(k+1)\\ &2 \mid (k+1)^2+(k+1)\\ \end{align} Therefore, by the principle of mathematical induction we conclude that $2 \mid n^2+n$.
I think it all makes sense, but I'm not sure if it properly qualifies as induction. Please let me know if I'm missing any steps/made any incorrect assumptions.