I tried proving that $7^{2n}-9$ is divisible by 2 in the following way:
Base case: When $n=1$,
$$7^{2}-9\equiv 0\;(\text{mod}\,2)$$
Induction step: Assume $n=k$,
$$7^{2k}-9\equiv 0\;(\text{mod}\,2)$$
We want to prove that it is true for $n=k+1$,
$$7^{2(k+1)}-9=7^{2k+2}-9=49\cdot7^{2k}-9$$
$$=49\cdot7^{2k}-9=49\cdot[0\;(\text{mod}\,2)+9]-9.$$
Since I couldn't continue, I used the following instead:
Induction step: Assume $n=k$,
$$7^{2k}-9=2a$$
For $n=k+1$,
$$7^{2(k+1)}-9=7^{2k+2}-9=49\cdot7^{2k}-9$$
$$=49\cdot7^{2k}-9=49\cdot(2a+9)-9=2(49a+216)=2b.$$
Can anyone show me how to prove this by modulo instead?
Yet another proof:
$7^{2n}-9 \pmod 2$ is the difference of two squares — $(7^n+9)(7^n-9)$. Both brackets are even (prove it!), so the original expression is not just even, it is divisible by $4$ (Robert Z)!