0

I wanted to know if my solution for the following math induction problem is ok:

$\forall n ∈ \mathbb N \wedge n ≥ 4: 2^n ≥ n^2$

My solution

Is it well justified? In case this is wrong, I would like to know why

From already thank you very much.

mndv
  • 5
  • 1

1 Answers1

1

Prove: $\forall n \in \mathbb{N}, n\geq 4, 2^n \geq n^2 $

Base case: $n=4$, $2^4 \geq 4^2 \rightarrow 16 \geq 16. $


Inductive step:

Let's assume for $\forall n \in \mathbb{N}, n\geq 4,2^n \geq n^2$; Prove $2^{n+1} \geq {(n+1)}^2$

We know that $2^n\cdot 2 \geq 2n^2$

$(n-1)(n+1)>2n$ because $n+1 > n \ $ and $n-1>2$.

$n^2-1 > 2n$

$n^2 > 2n+1$

$2n^2 > n^2 + 2n+1$

$ 2n^2 > (n+1)^2$

$\therefore 2^{n+1} \geq (n+1)^2$

Therefore, $2^n \geq n^2$ for $\forall n \in \mathbb{N}, n\geq 4 $ $\blacksquare$