Proof by induction: n^3 < n for n >=6

  • Thread starter Thread starter 1MileCrash
  • Start date Start date
  • Tags Tags
    Induction Proof
Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
3 replies · 2K views
1MileCrash
Messages
1,338
Reaction score
41

Homework Statement


Show that n^3 < n! for all n >= 6.

Homework Equations

The Attempt at a Solution



We see that for the base case of n = 6, the claim holds.

Suppose that k^3 < k! for some natural number k >= 6.

Consider that:
(k+1)^3
= k^3 + 3k^2 + 3k + 1
< k! + 3k^2 + 3k + 1 [By induction hypothesis]

What's a neat way to finish this? I'm a bit rusty, apparently.[/B]
 
Physics news on Phys.org
1MileCrash said:

Homework Statement


Show that n^3 < n! for all n >= 6.

Homework Equations

The Attempt at a Solution



We see that for the base case of n = 6, the claim holds.

Suppose that k^3 < k! for some natural number k >= 6.

Consider that:
(k+1)^3
= k^3 + 3k^2 + 3k + 1
< k! + 3k^2 + 3k + 1 [By induction hypothesis]

What's a neat way to finish this? I'm a bit rusty, apparently.[/B]

Factor a ##k^3## out of ##k^3+3k^2+3k+1##. Then use ##k^3 \le k!## and ##(k+1)!=k!(k+1)##.
 
Alright. And then, what remains after being factored has its largest value at k=6, and its value is smaller than any (k+1), and so I may write < k!(k+1), completing the induction.
 
1MileCrash said:
Alright. And then, what remains after being factored has its largest value at k=6, and its value is smaller than any (k+1), and so I may write < k!(k+1), completing the induction.

Sounds ok.