.
prove that n^2 ≤ n! for all n ≥ 4 using mathematical induction
~~~~~~~~~~~~~~~
Proof (from https://people.cs.umass.edu/~barring/cs240/induction_sol.pdf )
Note first that:
if n = 0, then 02 = 0 and 0! = 1.
if n = 1, then 12 = 1 and 1! = 1.
if n = 2, then 22 = 4 and 2! = 2.
if n = 3, then 32 = 9 and 3! = 6.
We prove by induction on n that ≤ n! for all n ≥ 4.
Basis step :
= 16 and 4! = 24
Inductive hypothesis :
Assume for some integer k ≥ 4 that ≤ k!
Inductive step :
(k + 1)! = (k + 1)k!
≥
=
≥
=
≥
≥
= .
According to the method of Mathematical induction, the proof is completed.
Solved.