Please help me providing a direction on how to prove this. I can prove by randomly finding value of n that makes n! greater than 5^n. But can someone help me prove mathematically.
Asked
Active
Viewed 962 times
2 Answers
1
Use induction.
If 5^n < n!
and 5 <= n+1
, then 5^(n+1) == 5 * 5^n < (n+1) * n! == (n+1)!
.

comingstorm
- 25,557
- 3
- 43
- 67
-
How we can assume 5 <= n+1. n can be 1 or 2 or 3. Also if we assume 5 <= n+1 then 5^n will be <= n!. But we want to prove 5^n < n! – Hanusri Jan 30 '16 at 01:35
-
It's not true for `n<4` anyway. Start with whatever value you randomly find that does make `n! > 5^n`. Asymptotic analysis means you get to choose any starting value you want! – comingstorm Jan 30 '16 at 01:38