Principle2.1First Principle of Mathematical Induction
Let be a statement about integers for and suppose is true for some integer If for all integers with implies that is true, then is true for all integers greater than or equal to
π The CoCalc Library - books, templates and other resources
Important: to view this notebook properly you will need to execute the cell above, which assumes you have an Internet connection. It should already be selected, or place your cursor anywhere above to select. Then press the "Run" button in the menu bar above (the right-pointing arrowhead), or press Shift-Enter on your keyboard.
ParseError: KaTeX parse error: \newcommand{\lt} attempting to redefine \lt; use \renewcommand
Suppose we wish to show that
for any natural number This formula is easily verified for small numbers such as 2, 3, or 4, but it is impossible to verify for all natural numbers on a case-by-case basis. To prove the formula true in general, a more generic method is required.
Suppose we have verified the equation for the first cases. We will attempt to show that we can generate the formula for the th case from this knowledge. The formula is true for since
If we have verified the first cases, then
This is exactly the formula for the th case.
This method of proof is known as . Instead of attempting to verify a statement about some subset of the positive integers on a case-by-case basis, an impossible task if is an infinite set, we give a specific proof for the smallest integer being considered, followed by a generic argument showing that if the statement holds for a given case, then it must also hold for the next case in the sequence. We summarize mathematical induction in the following axiom.
Let be a statement about integers for and suppose is true for some integer If for all integers with implies that is true, then is true for all integers greater than or equal to
For all integers Since
the statement is true for Assume that for Then But
since is positive. Hence, by induction, the statement holds for all integers
Every integer is divisible by 9 for For
is divisible by 9. Suppose that is divisible by 9 for Then
is divisible by 9.
We will prove the binomial theorem using mathematical induction; that is,
where and are real numbers, and
is the binomial coefficient. We first show that
This result follows from
If the binomial theorem is easy to verify. Now assume that the result is true for greater than or equal to 1. Then
We have an equivalent statement of the Principle of Mathematical Induction that is often very useful.
Let be a statement about integers for and suppose is true for some integer If imply that for then the statement is true for all integers
A nonempty subset of is if contains a least element. Notice that the set is not well-ordered since it does not contain a smallest element. However, the natural numbers are well-ordered.
Every nonempty subset of the natural numbers is well-ordered.
The Principle of Well-Ordering is equivalent to the Principle of Mathematical Induction.
The Principle of Mathematical Induction implies that is the least positive natural number.
Let Then Assume that Since it must be the case that Therefore, Consequently, if then must also be in and by the Principle of Mathematical Induction, and
The Principle of Mathematical Induction implies the Principle of Well-Ordering. That is, every nonempty subset of contains a least element.
We must show that if is a nonempty subset of the natural numbers, then contains a least element. If contains 1, then the theorem is true by LemmaΒ 2.7. Assume that if contains an integer such that then contains a least element. We will show that if a set contains an integer less than or equal to then has a least element. If does not contain an integer less than then is the smallest integer in Otherwise, since is nonempty, must contain an integer less than or equal to In this case, by induction, contains a least element.
Induction can also be very useful in formulating definitions. For instance, there are two ways to define the factorial of a positive integer
The explicit definition:
The inductive or recursive definition: and for
Every good mathematician or computer scientist knows that looking at problems recursively, as opposed to explicitly, often results in better understanding of complex issues.