SOLUTION: prove that n^2 ≤ n! for all n ≥ 4 using mathematical induction

Algebra ->  Proofs -> SOLUTION: prove that n^2 ≤ n! for all n ≥ 4 using mathematical induction      Log On


   



Question 1183367: prove that n^2 ≤ n! for all n ≥ 4 using mathematical induction
Found 2 solutions by ikleyn, math_helper:
Answer by ikleyn(52777) About Me  (Show Source):
You can put this solution on YOUR website!
.
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%5E2 ≤ n!  for all  n ≥ 4.


Basis step : 

    4%5E2 = 16 and 4! = 24


Inductive hypothesis : 

    Assume for some integer k ≥ 4 that  k%5E2 ≤ k!


Inductive step :


       (k + 1)! = (k + 1)k! 

     ≥ %28k+%2B+1%29k%5E2

     = k%5E2%2Ak+%2B+k%5E24%5E2%2Ak+%2B+k%5E2

     = 15k+%2B+k+%2B+k215k+%2B+1+%2B+k%5E22k+%2B+1+%2B+k%5E2

     = %28k+%2B+1%29%5E2.


According to the method of Mathematical induction, the proof is completed.

Solved.



Answer by math_helper(2461) About Me  (Show Source):
You can put this solution on YOUR website!

Base case: n=4: 4%5E2+=+16+ and 4%21+=+24, 16+%3C=+24+ so the base case holds.
Hypothesis: Assume n%5E2+%3C=+n%21 for n=k+, k%3E=4 (*)
Step case: Let n=k+1:
+%28k%2B1%29%5E2+ <=(?) +%28k%2B1%29%21+
(where (?) is provided to show that we need to resolve this inequality)
+%28k%2B1%29%28k%2B1%29+ <=(?) +%28k%2B1%29%28k%21%29+
divide both sides by k+1:
+%28k%2B1%29+ <=(?) +%28k%21%29+
Since +%28k%2B1%29+%3C+k%5E2+, and we have +k%5E2+%3C=+k%21+ by (*), we can
write +k%2B1+%3C+k%5E2+%3C=+k%21+ therefore +%28k%2B1%29%5E2+%3C=+%28k%2B1%29%21+ and that completes the proof.