Question: For which values of n, $n^2 \leq 2^n$ holds? Prove it by simple induction.
This is what I have done so far:
We know that all natural numbers other than 3 works. So I will make the claim that $\forall n \in \mathbb{N}, n \neq 3: n^2 \leq 2^n$
Now to prove this:
Proof method: Simple induction
Let P(n) be that $\forall n \in \mathbb{N}, n \neq 3: n^2 \leq 2^n$.
Basic Step:
$5^2 = 25 \leq 2^5 = 32$
Then P(5) is true, because $5^2 \leq 2^5$
Inductive Step:
Assume $\forall k \in \mathbb{N}, k \neq 3: k^2 \leq 2^k$
Want to show that $P(k) \implies P(k+1)$
So, $k^2 \leq 2^k$
$2k^2 \leq 2(2^k)$
$2k^2 \leq 2^{k+1}$
$k^2 + k^2 \leq 2^{k+1}$
This is where I got stuck, trying to change the left hand side to $(k+1)^2$, I've tried working with the idea that $(k+1)^2 = k^2 + 2k + 1$, but wasn't able to really get anything out of it.
Any help will really be appreciated.
For your base case, I recommend you show that $n^2 \le 2^n$ works for $n=1$, $n=2$, and $n=4$ as well. If you show $n=4$, showing $n=5$ is unnecessary (since your induction step will take care of that).
About your inductive step, you ended with:
$$2k^2 \le 2^{k+1}$$
You now need to show $(k+1)^2 \le 2k^2$, which implies that $(k+1)^2 \le 2^{k+1}$, which is what you want to show. Then we see that:
$$4 \le k$$ $$1+\sqrt{2} \le k$$ $$2 \le (k-1)^2$$ $$2k+1 \le k^2$$ $$k^2+2k+1 \le 2k^2$$ $$(k+1)^2 \le 2k^2$$ $$(k+1)^2 \le 2^{k+1}$$