I searched for $a^n > n^2$ but didn't find anything relevant.
This is Exercise $3 (b)$ from page $43$ of Analysis I by Amann and Escher.
Exercise:
Verify using induction that if $a \in \mathbb N$ with $a \geq 3$, then $a^n > n^2$ for all $n \in \mathbb N$.
More information:
In this book we use $\mathbb N = \{ 0, 1, 2, \dots \}$.
My attempt:
Base case: It's clearly true that $a^0 > 0^2$.
Inductive step: Assume the result is true for $n$. Then for $n + 1$ we get
\begin{align*} a^{n+1} &= a^n \cdot a\\ &> an^2\\ &\geq 3n^2. \end{align*}
I need to show that $3n^2 \geq n^2 + 2n + 1 = (n + 1)^2$. This is equivalent to showing that $2n^2 \geq2n + 1$. My problem is that this is not true for any $n \in \mathbb N$.
How do I rescue this? There is probably something simple I'm overlooking. I appreciate any help.