Demonstrate by induction: $3^{2n} + 7 = 4k$ is true, for any $n\in \mathbb N$. I need to demonstrate this using the induction principle.
So far I have:
$n = 1$
$$3^{2\cdot 1} + 7 = 4\cdot k $$ $$9 + 7 = 4k$$ $$16 = 4k$$ $$k = 4$$
So it checks for $n=1$.
$n = h$
$$3^{2\cdot h} + 7 = 4\cdot k$$
$n = h +1$
$$3^{2\cdot (h + 1)} + 7 = 4\cdot k'$$
(I use $k'$ to note that it's not the same $k$ as in $n = h$)
And I don't know how to continue.
Be careful not to assume what you're trying to prove. After the induction hypothesis, i.e., $$3^{2h} + 7 = 4k \quad \textrm{for some } k,\tag1$$ you can't jump to $$3^{2(h+1)} + 7 = 4k' \quad \textrm{for some } k',\tag2$$ because that's what you must prove. Instead, start with just the left-hand side of $(2)$, and manipulate it so that you can use what you know from the hypothesis in $(1)$: $$ \begin{align} 3^{2(h+1)} + 7 &= 3^{2h+2} + 7\\ &= 3^2 3^{2h} + 7\\ &= 9\cdot 3^{2h} + 7\\ &= 8\cdot 3^{2h} + \color{maroon}{3^{2h} + 7}\\ \end{align}$$
Can you take it from here?