I am solving a proof by induction example. But I ended up with my hypothesis
$$ a_{n-1} \geq \frac{2^n}{2}+n^2-2n+1 $$
and my inductive step
$$ a_{n-1} \geq \frac{2^n}{2}+\frac{n^2}{2}-\frac{n}{2}. $$
How can I show that if I am assuming that my hypothesis is true then my inductive step is also true?
It seems to me that I can compare both equation's right hand sides as
$$ \frac{2^n}{2}+n^2-2n+1 \geq \frac{2^n}{2}+\frac{n^2}{2}-\frac{n}{2} \Leftrightarrow -\frac{n^2}{2}-\frac{3}{2} n \geq -1 \Leftrightarrow -n^2-3n \geq -2. $$
But now I just ended up with a neq inequality that I have to proof?
Edit
I am proving that $a_n \geq 2^n + n^2$ for all natural numbers. $a_n$ is defined by the recursive definition $$ a_n = \begin{cases} 1 & n=0 \\ n+2 a_{n-1} & n \geq 1 \end{cases} $$
First of all to prove the induction step from your hypothesis note that $2(n-1)^2\geq n(n-1)$ for all $n\geq 2$
To prove the problem, note that
$\begin{align}a_{n+1}-2^{n+1}-(n+1)^2-a_n+2^n+n^2 & =\left(a_{n+1}-a_n\right)-2^n-2n-1\\&=a_n+(n+1)-2^n-2n-1\\&=a_n-2^n-n>0\end{align}$
Which is true if you assume that $a_n>2^n+n^2$.