Problem
Proof with induction that $n^2+n$ is even when $n \in \mathbb{N}$
Attempt to solve
$n^2+n$ is even when it satisfies: $$ n^2+n \mod 2 = 0 $$ meaning it's divisible by 2. I can begin to proof that this statement holds when $n \in \mathbb{N}$.
Base case
the statement holds when $n=0$
$$ 0^2+0 \mod 2 = 0 $$
Which is true since $0$ divided any $n\in \mathbb{N}$ is $0$.
Inductive step
Assume statement holds when $n=k$ (induction hypothesis)
$$ k^2+ k \mod 2 = 0 $$
then let $n = k+1$
$$ (k+1)^2 + (k+1) \mod 2 = 0 $$ $$ \iff k^2+2k+1+k+1 \mod 2 = 0 $$ $$ \iff k^2+k + 2k + 2 \mod 2 = 0 $$
Based on induction hypothesis $k^2+k \mod 2 = 0$. Which implies we can deduce our statement to
$$ \implies 2k + 2 \mod 2 = 0 $$ Which is true for $\forall k \in \mathbb{N}$ since any $k\in \mathbb{N}$ multiplied by 2 is divisible by 2. Adding 2 to this does not alter the divisibility since 2 is also divisible by 2.
Q.E.D
Is my proof correct?