It's been a while since I've done induction, and I feel like I'm missing something really simple. What I have is this:
Base Case: $n=1$ $$3^n \geq n^2 \implies 3 \geq 1$$
Inductive Hypothesis
For all integers $1 \leq n < n+1$: $$3^n \ge n^2$$
Inductive Step
$$3^{n+1} \geq \left( n+1\right) ^2 \implies 3\cdot 3^n \geq n^2+2n+2$$
This is as far as I got. Is it acceptable to say $2\cdot 3^n \geq 2n+2$ and then prove that? Or is there an easier way?
Sort of. I prefer to do it in a single chain of inequalities though.
Inductive Hypothesis: Assume that the desired inequality holds for all $n' \in \{1, \ldots, n\}$, where $n \geq 2$ (you'll need to do an extra base case for $n = 2$).
It remains to prove that the desired inequality holds for $n' = n + 1$. Indeed, observe that: \begin{align*} 3^{n+1} &= 3(3^n) \\ &\geq 3(n^2) &\text{by the inductive hypothesis}\\ &= n^2 + (n)n + (n)^2 \\ &\geq n^2 + (2)n + (n)^2 &\text{since }n \geq 2\\ &> n^2 + (2)n + (1)^2 &\text{since }n \geq 2 > 1\\ &= (n + 1)^2 \end{align*} as desired.