Download C241 Homework 7: Mathematical Induction Due Wednesday, 10/24/07

Survey
yes no Was this document useful for you?
   Thank you for your participation!

* Your assessment is very important for improving the workof artificial intelligence, which forms the content of this project

Document related concepts

Sieve of Eratosthenes wikipedia , lookup

Mathematical economics wikipedia , lookup

Mathematical physics wikipedia , lookup

Transcript
C241 Homework 7: Mathematical Induction
Due Wednesday, 10/24/07
PLEASE DO THIS ASSIGNMENT ON A SEPARATE PIECE OF PAPER.
1) The following are mistakes that often show up in numerical induction
proofs. Clearly describe what is wrong with each one.
a)
Pn+1
i=0
i2 =
Pn
2
i=0 i
+ (n + 1)
b) (n + 2)! = n! + 2!
c)
Pn
2
i=0 i
=
Pn
2
i=0 i
+ (n + 1)2
d)(2n)2 = 2n2
e) (n+1)2n
+ n3 (n + 1)2 =
6
(n+1)(n+2)
6
can be simplified to:
2n
6
+ n3 =
(n+2)
6
f) Prove: All numbers are prime.
Base Case: n = 1. 1 is a prime number, so the base case holds.
Induction Step: Let’s assume n is a prime number (this is our induction
hypothesis), then we need to show that this implies n+1 is also prime. Since n
= 1, 1 + 1 = 2, and 2 is prime, the induction step holds. Thus all numbers are
prime.
Note: Please explain how the technique used in this proof is incorrect; don’t just
offer a counter-example.
1
2) Use numerical induction to prove:
Pn
3) Use numerical induction to prove:
Pn
i=0 i
=
2
i=0 i
=
n
X
3
4) Use mathematical induction to prove:
i=0
2
n(n+1)
2
n(n+1)(2n+1)
6
i =
n(n + 1)
2
2
5) Use mathematical induction to prove: 2n > 2n + 1 for n ≥ 3. (Your base
case here will be n = 3. You can use any basic properties of inequalities).
6) Use mathematical induction to prove: 2n > n2 for n ≥ 5. (Your base
case here will be n = 5, and the result in (6) may be useful. You can use
any basic properties of inequalities).
7) Use mathematical induction to prove:
Pn
i=1 i(i!)
= (n + 1)! − 1
8) Use mathematical induction to prove that for all natural numbers n,
6 evenly divides n3 − n. (In other words, show that for any integer n,
n3 − n = 6m, for some integer m.)
3
9) (Bonus) Explain carefully and clearly why math is not actually broken.
4