Inequality proof by induction of $n!>2^n+3^n$

89 Views Asked by At

Give a proof by induction: $\forall n\ge n_0 \in \mathbb{N}$ we have $n!>2^n+3^n$.

Attempt:

Base case: $n_0=7$

Induction step:

$k!>2^k+3^k$

Prove $(k+1)!>3^{k+1}+2^{k+1}$

We know $(k+1)!>(k+1)(2^k+3^k)$

as $(k+1)>6 \because k\ge 7$:

$(k+1)!>6(2^k+3^k)$

$(k+1)!>3*2^{k+1}+2*3^{k+1}$

as $3*2^{k+1}+2*3^{k+1}>3*2^{k+1}+2*3^{k+1}-2*2^{k+1}-3^{k+1}$

$(k+1)!>2^{k+1}+3^{k+1}$

still getting my head around this method of induction with inequalities.

Any help is greatly appreciated, thank you!

1

There are 1 best solutions below

0
On

From here for $k> 2$ we have

$$(k+1)!\stackrel{I.H.}>(k+1)(2^k+3^k)=(k+1)2^k+(k+1)3^k>2\cdot 2^k+3\cdot 3^k=2^{k+1}+3^{k+1}$$

and this prove the induction step.