Mathematics Lecture 7: Induction and Recursion Study Guide
Principles and Motivation of Mathematical Induction
The concept of mathematical induction is often illustrated through the analogy of climbing an infinite ladder. To successfully reach every rung of an infinite ladder, two conditions must be met. First, one must be able to reach the first rung of the ladder. Second, there must be a rule stating that if a particular rung can be reached, then the subsequent rung (the next one up) can also be reached. By starting at the first rung and repeatedly applying the second rule, one can eventually reach the second rung, then the third, and so on, reaching any specific rung no matter how high it is positioned. This logical progression serves as the foundation for proof by mathematical induction.
To formally prove that a proposition is true for all positive integers , the Principle of Mathematical Induction requires two distinct steps. The Basis Step involves showing that the proposition is true. The Inductive Step involves showing that the conditional statement is true for all positive integers . During the inductive step, we assume the inductive hypothesis, which is the assumption that holds for an arbitrary integer , and then demonstrate that must necessarily be true based on that assumption. In the ladder analogy, the Basis Step corresponds to reaching the first rung, and the Inductive Step corresponds to the physical ability to move from rung to rung . If both are verified, we conclude that we can reach every rung on the ladder.
Structural and Logical Properties of Induction
Mathematical induction is fundamentally a rule of inference where the domain is the set of positive integers. It can be expressed symbolically as . It is critical to understand that a proof by induction does not involve assuming that is true for all positive integers at the outset. Instead, we show that if the assumption is made for a single arbitrary integer , the truth of the subsequent integer is guaranteed. Furthermore, while many proofs begin at the integer , induction can start at any integer . In such instances, the basis step begins by proving is true rather than .
The validity of mathematical induction is derived from the well-ordering property, which states that every nonempty subset of the set of positive integers contains a least element. The proof of induction's validity proceeds by contradiction. Suppose that holds and the implication is true for all , but there exists at least one positive integer for which is false. We can then define a set consisting of all positive integers for which is false. Since is non-empty, the well-ordering property dictates it must have a least element, denoted as . We know cannot be because is true. Because is the smallest element in and m > 1, the integer must not be in , meaning is true. However, since the conditional holds for all integers, the truth of implies the truth of . This creates a contradiction because was defined as an element of (where the proposition is false). Therefore, no such set of counterexamples can exist, and must be true for all positive integers.
Another helpful visualization of induction is an infinite sequence of standing dominoes labeled . If the first domino is knocked down (Basis Step, ) and the distance between dominoes is such that whenever the domino falls, it knocks over the domino (Inductive Step, ), then all dominoes in the sequence will eventually fall. This implies is true for every positive integer .
Applications in Summation and Divisibility
Mathematical induction is a powerful tool for proving summation formulas. Consider the formula for the sum of the first positive integers: . To prove this, the Basis Step shows is true because . For the Inductive Step, we assume the inductive hypothesis: . We then add to both sides of the equation to show that the sum up to equals . Once a conjecture like this is formed, induction serves to verify its correctness definitively.
A similar process is used for conjecturing and proving the sum of the first positive odd integers. By examining initial cases—, , and —one can conjecture that . To prove this using induction, the Basis Step confirms since . In the Inductive Step, we assume holds: . Adding the next odd integer, , to both sides yields , which factors into , completing the proof.
Induction is also used for divisibility results. For example, to prove that is divisible by for every positive integer , we define as the proposition of divisibility. The Basis Step is true because , which is divisible by . For the Inductive Step, we assume is divisible by . We then examine , which expands to . Reorganizing terms gives . By the inductive hypothesis, the first part is divisible by , and the second part is clearly divisible by as it is a multiple of . The sum of two integers divisible by is also divisible by , thus proving the claim for all positive integers .
Recursively Defined Functions and Sequences
A recursive or inductive definition of a function involves two steps. First, the Basis Step specifies the value of the function at zero or its starting point. Second, the Recursive Step provides a rule for finding the function's value at an integer based on its values at smaller integers. This process is equivalent to defining a sequence using recurrence relations. For example, if a function is defined as and , the values can be found sequentially: , , , and so on. Similarly, the factorial function can be defined recursively with the basis step and the recursive step . Summation of terms can also be defined recursively where the sum of the first terms is and the sum to is the sum to plus .
Fibonacci Numbers and Strong Induction
The Fibonacci numbers are a classic example of a recursively defined sequence where the first two terms are fixed and subsequent terms are the sum of the two preceding terms. The definition is given by , , and for . This sequence generates values such as , , , , and so on. Fibonacci numbers were originally described by Fibonacci himself to model the population growth of rabbits. The study of these numbers often requires strong induction, a variant of induction where the inductive hypothesis assumes the proposition is true for all integers up to and including to prove the case for .
An example of a result concerning Fibonacci numbers is the inequality f_n > ext{α}^{n-2} for , where . To prove this, we use strong induction. The basis step must check two initial cases: holds because and 2 > ext{α}^{3-2} ext{≈} 1.618; holds because and 3 > ext{α}^{4-2} ext{≈} 2.618. For the inductive step, we assume that the inequality f_j > ext{α}^{j-2} holds for all integers such that . To show it holds for , we use the definition . By the inductive hypothesis, f_{k+1} > ext{α}^{k-2} + ext{α}^{k-3}. Factoring out gives . Since is a solution to the quadratic equation , we know that . Substituting this back into the expression, we get . Because , it is shown that f_{k+1} > ext{α}^{(k+1)-2}, completing the strong induction proof.