I'm not entirely sure if I'm going about proving $n^2+n$ is even for all the natural numbers correctly.
$P(n): = n^2+n$
$P(1) = 1^2+1 = 2 = 0$ (mod $2$), true for $P(1)$
Inductive step for $P(n+1)$:
$\begin{align}P(n+1) &=& (n+1)^2+(n+1)\\ &=&n^2+2n+1+n+1\\ &=&n^2+n+2(n+1)\end{align}$
Does this prove $n^2+n$ is even as it's divisible by $2$? Thanks!