Induction on P(x) for x = m to n

  • Thread starter Thread starter e(ho0n3
  • Start date Start date
  • Tags Tags
    Induction Type
AI Thread Summary
The discussion centers on a specific type of induction concerning integer statements P(x) for x ranging from m to n. It clarifies that this method is essentially a form of mathematical induction, which is commonly recognized in mathematics. Participants note that while terms like "finite induction" and "strong induction" exist, the described induction method is equivalent to standard induction. The conversation emphasizes that both regular and strong induction can imply each other, reinforcing their equivalence. Additionally, transfinite induction is mentioned as an extension applicable to well-ordered sets.
e(ho0n3
Messages
1,349
Reaction score
0
What do you call this type of induction (if it even exists):

Let P(x) be some statement concerning the integer x. If

- P(m) is true, and
- P(k) is true implies P(k + 1) is true, where m ≤ k < n,

then P(x) is true for all integers x = m, ..., n.
 
Mathematics news on Phys.org
It's just induction.
 
I've been googling around but I haven't found a single website that mentions this sort of induction. I'll take your word for it.
 
The only two terms for induction I've ever heard about are finite induction and mathematical induction.
 
e(ho0n3 said:
I've been googling around but I haven't found a single website that mentions this sort of induction. I'll take your word for it.

In the context of mathematics it's just plain induction but if you're googling then obviously you'll do better to use the full name "mathematical induction" because outside of Math the term "induction" has lots of other applications.
 
I didn't just google "induction". I tried "finite induction types" and variations thereof.
 
In this sense of the word, there is essentially only one form of induction.

Whilst we may use the terms 'induction' and 'strong induction' for two different things they are entirely equivalent notions (i.e. each one implies the other), and your notion of induction in post 1 falls between the two. It is a simple exercise to show that your description is equivalent to ordinary induction.
 
"Strong induction" asserts:

If P(1) is true and
whenever P(n) is true for all n\le k, then P(k+1) is true

Then P(n) is true for all P

It is "Strong" because the hypotheses are easier- you only have to show P(k+1) is true when P(n) is true for all n\le k so you have "more information". It is easy to see that "strong induction" implies regular induction: if P(k+1) is true whenever P(k) is true then it is certainly the case that P(k+1) is true whenever P(n) is true for all n less than or equal to k.

The remarkable thing is that regular induction implies strong induction:

Suppose P(n) is a statement such that:
P(1) is true and
whenever P(n) is true for all n less than or equal to k, P(k+1) is true.

Let Q(n) be the statement "P(m) is true for all m less than or equal to n".

Q(1) is the statement "P(m) is true for all m less than or equal to 1". But the only natural number "less than or equal to 1" is 1 itself. Q(1) just says P(1) is true- and that's true.

Now suppose Q(k) is true. That means P(m) is true for all m less than or equal to k and so, by the induction hypothesis, P(k+1) is true. But since we already have that P(m) is true for all m less than or equal to k, we now know that P(m) is true for all k less than or equal to k+1: Q(k+1) is true. Therefore, by regular induction, Q(n) is true for all n. But Q(n) says P(m) is true for all m less than or equal to n. If Q(n) is true for all n, then P(n) is true for all n.

The statement given in the first post looks like "strong" induction restricted to n greater than or equal to m. As everyone else has said, it is equivalent (as long as n is larger than or equal to m) to regular induction.
 
  • #10
Werg22 said:
The only two terms for induction I've ever heard about are finite induction and mathematical induction.

there is also Transfinite Induction which is an extension to well-ordered sets

http://en.wikipedia.org/wiki/Transfinite_induction
 
Back
Top