Pinu7 said:
No, the statement is true for n<10. This is because the statement, P(n) states that
"(n^3)=< 2^n OR n<=9"
You didn't say that the first time, Pinu7, and the original poster most certainly did not specify the problem this way.
Doing this is being overly pedantic. There's nothing wrong with starting induction with a base case
n that is not one and there is no reason to invent such a connective predicate in such cases.
In any case, we aren't helping the original poster one iota with this quibbling.
invisible_man said:
how can i connect (n+1) n+1 to 2 n+1.
You don't. Post #2 by hgfalling was mislead by your problem statement where you said
invisible_man said:
Given the title of the thread and later statements in the original post, it is fairly obvious that you made a typo in that problem statement. The problem is to prove that n^3 \le 2^n \,\forall n \ge 10.
So, how to proceed?
First, establish that the proposition is true for some base case
n0. Here the base case is
n0=10; you need to show that 10^3 \le 2^{10}. Is this true?
Next you assume the proposition is true for some
n≥
n0 (the induction hypothesis) and show that given this assumption that the proposition also holds for
n+1. In this case, you need to show that if n^3 \le 2^n for some n\ge 10 then (n+1)^3 \le 2^{n+1}.
Hints:
- Use the fact that if a≤b and b≤c then a≤c because '≤' is transitive.
If you can find some intermediate expression bn such that (n+1)3≤bn and bn≤2n+1 then (n+1)3≤2n+1.
- Use the fact that multiplying both sides of an inequality by a positive number does not change the inequality.
Try multiplying both sides of n3≤2n by 2. This should suggests an intermediate value to use in the proof.