Is This Mathematical Induction Proof Correct for Factorials and Exponents?

  • Thread starter Thread starter nastygoalie89
  • Start date Start date
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
19 replies · 4K views
nastygoalie89
Messages
17
Reaction score
0

Homework Statement


For all integers n=>1, n! <= n^n


Homework Equations





The Attempt at a Solution


Let p(n) be the inequality n! <= n^n, for all integers n=>1.
Base case: p(1) = 1! <=1^1 1<=1 check
IHOP: Assume p(k), that is assume k!<=k^k for some integer k.
Show p(k+1): show (k+1)! <= (k+1)^(k+1)
It can be rewritten as k!(k+1) <= (k+1)^k (k+1)
divide both sides by (k+1)
which leaves k! <= (k+1)^k


Is this correct or so I beg the question/ mess up my simple math?
 
Physics news on Phys.org
Logically, it's a bit muddled. You're starting with what you want to prove and showing it leads to a true statement and therefore concluding what you started with is true. That's not logically correct. What you want to do is start with known true statements and show that what you're trying to prove follows. In other words, you want to show p implies q, but what you did was show q implies p.

Start with (k+1)! = k! (k+1). Use the induction hypothesis and manipulate the RHS a bit more to show it's less than (k+1)(k+1).
 
so it would be: k!<=k^k
multiply by (k+1) on both sides
(k+1)! = k!(k+1)<= (k+1)^k (k+1)
since k is an integer k+1 is an integer
am I closer?
 
You have the induction hypothesis, k! ≤ kk, which you assume is true with k≥1. Then it follows that

(k+1) k! ≤ (k+1) kk

from the normal rule about multiplying an inequality by a positive quantity, k+1.

Now show that (k+1) kk is less than or equal to (k+1)k+1. Try starting with the fact that k ≤ k+1.
 
how do you get (k+1) k^k? isn't it (k+1)(k+1)^k?
 
1. k!< k^k
2. multiply by (k+1) to get k!(k+1) < (k+1)k^k
3. k!(k+1) < (k+1)k^k < (k+1)^(k+1)
4. therefore, k!(k+1) < (k+1)^(k+1)
I feel I am begging the question at step 3 here
 
1. k!< k^k
2. multiply by (k+1) to get k!(k+1) <= (k+1)k^k
3. (k+1)k^k <= (k+1)^(k+1) multiply by k to get (k+1)k^(k+1)<=(k+1)k^(k+1)
therefore, k!(k+1) <= (k+1)k^(k+1), divide by (k+1)
k! <= (k+1)^k
 
ah i have no idea how to prove that without starting with 'q'
 
i think i have it.
k! < k^k, multiply by (k+1)
k!(k+1)= (k+1)! < (k+1)k^k
and since k<= k+1, multiply by (k+1)^k
this gives us (k+1)k^k < (k+1)^(k+1)
we proved (k+1)! < (k+1)k^k < (k+1)^(k+1)
therefore, (k+1)! < (k+1)^(k+1)
 
nastygoalie89 said:
i think i have it.
k! < k^k, multiply by (k+1)
k!(k+1)= (k+1)! < (k+1)k^k
and since k<= k+1, multiply by (k+1)^k
this gives us (k+1)k^k < (k+1)^(k+1)
This would give you k(k+1)k ≤ (k+1)k+1, not (k+1)kk < (k+1)k+1.
 
No, the first post isn't correct. A lot of students write a "proof" like that, and some graders let it slide in introductory classes, but it's wrong. It's close. Most of the pieces are there, but they have to be arranged in the right way to make a correct proof.
 
how do I get to k(k+1)k ≤ (k+1)k+1 from k<k+1, without multiplying (k+1)^k?
 
nastygoalie89 said:
how do I get to k(k+1)k ≤ (k+1)k+1 from k<k+1, without multiplying (k+1)^k?
That's not really the point. You've gotten to k!(k+1)≤(k+1)kk in your proof, and you can certainly multiply k≤k+1 by (k+1)k to get k(k+1)k≤(k+1)k+1. The problem is, that doesn't help you because you don't know how k(k+1)k compares to (k+1)kk. To put it in simpler terms, it's like you know a<b and c<d. Without knowing how b and c compare, you can't conclude a<d.

What you want to do is turn the lefthand side of k≤k+1 into kk(k+1) and, by doing the same things to the righthand side, turn it into (k+1)k+1. Let me write it even more suggestively. You want to go from

k ≤ k+1

to

(k+1) kk ≤ (k+1) (k+1)k.
 
I just don't see how to get from k to (k+1)k^k