What is mathematical induction

In summary, mathematical induction is a method of proving mathematical statements labeled by natural numbers. It involves proving a base case and then showing that if the statement holds for a certain number, it holds for the next number as well. This process continues until it is proven that the statement is true for all natural numbers greater than or equal to the base case. This method is useful for proving statements involving natural numbers, such as the example of proving a certain equation is a natural number for all values of n. There is also another type of induction called Forward Backward Induction, which is less commonly used. Although induction lacks rigour, it can be accepted as an axiom or part of the definition of natural numbers. Additionally, transfinite induction is a
  • #1
19,439
10,013
Definition/Summary

Mathematical Induction is a method of proving a series of mathematical statement labelled by natural numbers.

This method usually involves two steps. First one proves the base case, then one shows that if the statement holds for some natural number, it holds for the next.

It follows from these two proofs that the statement is true for all natural numbers greater than or equal to the base case.

In symbols: if P(1) is true, and if "P(m-1) is true implies P(m) is true for any m > 1" is true, then P(n) is true for any n [itex]\ge[/itex] 1.

This works because P(1) is true, and P(1) proves P(2), and P(2) proves P(3), and so on for all the natural numbers.

Equations



Extended explanation

Induction

For example, if we want to prove that:

[tex]
\frac{n^5}{5} + \frac{n^3}{3} + \frac{7n}{15}
[/tex]

is a natural number for all [itex]n \in N[/itex].

First, we formalize the statement:

[tex]
P(n): \frac{n^5}{5} + \frac{n^3}{3} + \frac{7n}{15}~~\mbox{is a natural number}
[/tex]

[tex]
P(1): \frac{1}{5} + \frac{1}{3} + \frac{7}{15} = \frac{15}{15} = 1
[/tex]

So, P(1) is true.

Next, we hold an assumption that P(m) is true, for any arbitrary 'm':

[tex]
P(m): \frac{m^5}{5} + \frac{m^3}{3} + \frac{7m}{15}~~\mbox{is a natural number}
[/tex]

Now, we need to show that P(m + 1) is true as well. While doing so, we will use the fact that P(m) holds true. Hence, the statement for each natural number will assert the validity of the statement for the next natural number.

[tex]
P(m + 1): \frac{(m + 1)^5}{5} + \frac{(m + 1)^3}{3} + \frac{7(m + 1)}{15}
[/tex]

This equals:

[tex]
= \frac{1}{5}(m^5 + 5m^4 + 10m^3 + 5m + 1) + \frac{1}{3}(m^3 + 3m^2 + 3m + 1) + \frac{7}{15}m + \frac{7}{15}
[/tex]

[tex]
= \left(\frac{m^5}{5} + \frac{m^3}{3} + \frac{7}{15}m\right) + (m^4 + 2m^3 + 3m^2 + 2m) + \left(\frac{1}{5} + \frac{1}{3} + \frac{7}{15}\right)
[/tex]

All the three terms separated by brackets are natural numbers in themselves. The last bracket adds up to 1, and hence is a natural number. For the second bracket, all powers of natural numbers and their products with other natural numbers are natural numbers. As for the first bracket, we know that it is a natural number from our assumption that P(m) is true. And hence, since the sum of natural numbers is a natural number, P(m + 1) holds true, as long as P(m) holds true.

Do note here that we did not directly prove P(m) to be true. The validity of P(m - 1) asserts that P(m) is true. As such, we proved that P(1) is true, which asserts P(2) to be true, which asserts P(3) to be true and so on.

The abovementioned example was cited from the following mentioned textbook: 'Mathematics, Class XI', by R.D. Sharma published by Dhanpat Rai Publication'


Strong Induction

Occasionally, one will need to use more than the fact that P(m-1) is true in order to prove P(m). Indeed, one may need the truth of all the P(i) from the base case, to m-1. This is called strong induction. It is easy to see this is equivalent to the basic principle of induction.


Least counter example

An equivalent method is that of assuming there is a counter example to the assertion. If there is, then since they are labelled by the natural numbers, there is a least such counter example. Now one demonstrates that this implies that there is a smaller counter example. This together with the proof of the base case is sufficient.

Lack of insight

A not unreasonable view held by some mathematicians is that induction, whilst being very powerful, does not necessarily help you understand why something is true. For example, one can prove that

[tex] 9^n \equiv 4n(n-1) +1\ (64)[/tex]

easily with induction. But one can more constructively show it is true by considering the fact that 9=8+1.



Toppling Domino Analogy

An analogy to help understand Mathematical Induction is the Toppling Domino Analogy. Imagine that a number of Dominoes are aligned one after the other such that if one Domino topples, it topples the next one with it.

Here, the condition that a Domino will topple asserts that the Domino next to it will topple as well. However, no assertion is made on the toppling of that particular Domino. As such, we just need to ensure that the first Domino is toppled, which asserts, in a nutshell that all other Dominoes in line will be toppled as well.

* This entry is from our old Library feature. If you know who wrote it, please let us know so we can attribute a writer. Thanks!
 
  • Like
Likes FactChecker
Mathematics news on Phys.org
  • #2
There is another type of induction, although much lesser used known as Forward Backward Induction as developed by Cauchy.

Generally you prove the P(2k) and then the P(k-1) or the reverse. It is used as a proof for generalized AM GM Inequality (not the weighted one).
 
  • #3
Greg Bernhardt said:
This works because P(1) is true, and P(1) proves P(2), and P(2) proves P(3), and so on for all the natural numbers.
Although this is a good motivation, it lacks rigour. More formally, one can accept induction as an axiom schema or as part of the definition of the natural numbers, as in https://en.wikipedia.org/wiki/Natural_number#Von_Neumann_ordinals
 
  • Like
Likes Stephen Tashi
  • #4
That is a good explanation. It might be a step to far, but you might consider mentioning transfinite induction. That might open a can of worms that you wouldn't want to include here, but it would be good for an aspiring mathematician to be aware of it.
 
Last edited:
  • #5
Why are we reviving four year old threads?
 
  • Like
Likes fresh_42
  • #6
Citan Uzuki said:
Why are we reviving four year old threads?
Good question, the more as
Greg Bernhardt said:
* This entry is from our old Library feature. If you know who wrote it, please let us know so we can attribute a writer. Thanks!
Thread closed.
 

What is mathematical induction?

Mathematical induction is a method of proof used in mathematics to show that a statement is true for every natural number. It is often used to prove properties of functions or number sequences.

How does mathematical induction work?

Mathematical induction works by showing that a statement is true for the first natural number or base case, and then proving that if the statement is true for any given natural number, it must also be true for the next natural number. This process is repeated until it can be shown that the statement is true for all natural numbers.

What are the steps of mathematical induction?

The steps of mathematical induction are:
1. Prove that the statement is true for the first natural number or base case.
2. Assume that the statement is true for any arbitrary natural number, called the induction hypothesis.
3. Use the induction hypothesis to prove that the statement is true for the next natural number.
4. Repeat this process until it can be shown that the statement is true for all natural numbers.

When is mathematical induction used?

Mathematical induction is used when trying to prove statements that involve natural numbers, such as properties of functions or number sequences. It is also commonly used in combinatorics and number theory.

Is mathematical induction the only way to prove a statement?

No, mathematical induction is not the only way to prove a statement. There are other methods of proof, such as direct proof, proof by contradiction, and proof by contrapositive. However, mathematical induction is a useful and commonly used method for proving statements about natural numbers.

Similar threads

  • General Math
Replies
10
Views
1K
Replies
5
Views
2K
  • General Math
Replies
4
Views
1K
Replies
13
Views
1K
Replies
5
Views
887
  • General Math
Replies
4
Views
1K
Replies
4
Views
919
  • Calculus and Beyond Homework Help
Replies
6
Views
927
Replies
7
Views
3K
Back
Top