Lesson Mathematical Induction

Algebra ->  Algebra  -> Proofs -> Lesson Mathematical Induction      Log On

Ad: Algebra Solved!™: algebra software solves algebra homework problems with step-by-step help!
Ad: Algebrator™ solves your algebra problems and provides step-by-step explanations!

   

This Lesson (Mathematical Induction) was created by by richard1234(5244) About Me : View Source, Show
About richard1234: MIT undergrad next year, part time mathematics tutor. Participated in USAMO and ARML.

In the following lessons we will learn some basic proof techniques beyond the two-column proof (such as induction, contradiction, bijection, etc.) and use these to solve advanced problems.
My personal opinion with the two-column proof is that it can be very difficult to express a lengthy proof that might require unusual theorems or logic. For example, if I was solving a geometry problem and mapped all the points to points in the complex plane -- how would I denote that in a two-column proof? This is why I refrain from using two-column proofs when I solve proof questions, and instead write out the proofs in essay style.
==Induction==
Induction works well when you want to prove some equation or identity satisfies for all numbers. The basic idea of induction is to show that a base case (for example, n = 1) satisfies. Then, assume that the identity holds for some arbitrary integer k and try to show that k+1 must satisfy. If it does, then it works for all numbers.
Let's say that in a certain city in a certain universe, if it rains one day, it will always rain the following day. By a simple induction argument, if it rains today, then it will rain tomorrow, and the day after that, etc.
We'll start with a simple induction problem.

Example 1:
Prove that for all n > 0, sum%282%5Ei%2C+i+=+0%2C+n%29+=+2%5E%28n%2B1%29+-+1.
The base case n = 1 satisfies, as 2%5E0+%2B+2%5E1+=+2%5E2+-+1. Now, suppose that the identity satisfies for some arbitrary n = k. In other words, if
sum%282%5Ei%2C+i+=+0%2C+k%29+=+2%5E%28k%2B1%29+-+1,
we want to show that the case n = k + 1 satisfies. If we assume that
sum%282%5Ei%2C+i+=+0%2C+k%29+=+2%5E%28k%2B1%29+-+1, and add 2%5E%28k%2B1%29 to both sides, we obtain
sum%282%5Ei%2C+i+=+0%2C+k%2B1%29+=+2%5E%28k%2B1%29+-+1+%2B+2%5E%28k%2B1%29+=+2%282%5E%28k%2B1%29%29+-+1+=+2%5E%28k%2B2%29+-+1
This is the same result we would have obtained if we plugged in n = k+1. Hence the induction works, and we are done.

The next example is a more challenging problem that also uses mathematical induction.

Example 2:
Prove that for every positive integer n there exists an n-digit number divisible by 5%5En whose digits are all odd (USAMO, 2003).
Solution:
We can check and see that the base cases n = 1, 2, 3, 4 work (producing 5, 75, 375, 9375). In general, we will prove that, using induction:
If 5%5En divides sum%28a%5Bi%5D10%5Ei%2C+i=0%2C+n%29, then
5%5E%28n%2B1%29 divides sum%28a%5Bi%5D10%5Ei%2C+i=0%2C+n%2B1%29 where a%5Bi%5D are odd digits.
Proof: Let sum%28a%5Bi%5D10%5Ei%2C+i=0%2C+n-1%29+=+k5%5En for some k (The upper bound is n-1 because a 4 digit number has maximum exponent 10%5E3, etc.). It is clear that sum%28a%5Bi%5D10%5Ei%2C+i=0%2C+n%29+=+sum%28a%5Bi%5D10%5Ei%2C+i=0%2C+n-1%29+%2B+a%5Bn%5D10%5E%28n%29+=+k5%5En+%2B+a%5Bn%5D10%5E%28n%29. Now, we wish to show that k5%5En+%2B+a%5Bn%5D10%5E%28n%29 is divisible by 5%5E%28n%2B1%29, which is equivalent to showing that k+%2B+a%5Bn%5D2%5En is divisible by 5 (by dividing by 5%5En.
When a%5Bn%5Dk%28-3%5En%29 (mod 5) then k+%2B+a%5Bn%5D2%5Enk+%2B+k%28-6%5En%29≡0 (mod 5). Since 3%5En covers all residues modulo 5, we can easily show that there is an odd digit that satisfies the identity, since the odd digits (1, 3, 5, 7, 9) also cover all residues modulo 5. Hence the induction is complete.



Here are a few induction problems for you to try on your own:
1. For any positive integer n, show that sum+%28i%5E3%2C+i+=+1%2C+n%29+=+%28sum%28i%2C+i+=+1%2C+n%29%29%5E2.
2. Prove that the sum of the numbers in row n of Pascal's triangle is equal to 2%5En.
3. Prove that cos+%28x%29+cos+%282x%29+cos+%284x%29...cos+%282%5E%28n-1%29x%29+=+%28sin+%282%5E%28n%29+x%29%29%2F%28%282%5En%29sin+%28x%29%29 for all n > 1 (Assume sin (x) is not equal to zero).



This lesson has been accessed 1182 times.