Induction let’s us define objects and prove statements.

If we want to prove that a predicate is true for all natural numbers , i.e. , we can do the following:

  1. Check (the statement is true for )
  2. Check (if the statement is true for , it is also true for ; implication)

It may be, that something holds only for a subset of .
For example if something only holds only if is bigger than some , i.e. , we just:

  1. Check
  2. Check

Statement:

Induction basis:
Hypothesis: Suppose basis is true:
We need to show that

Statement:

Summing the first odd numbers
Induction basis:
Hypothesis: Suppose basis is true:
We need to show that:

Transclude of strong-induction

In words: To prove a property holds for all natural numbers :
: Prove the base case, that holds for the smallest .
: Prove the inductive step, that for any arbitrary , if holds for , then it also holds for .
Then you can conclude holds for all .

Link to original

Transclude of predicate-logic#^8c3317

Induktion in der Form funktioniert nur auf den natürlichen Zahlen or at least nicht in

Allgemeinerer Ramen:

Transclude of transfinite-induction

References

See TU Wien Mathematisches Arbeiten für mehr übungsbeispie.

http://mathfoundations.lti.cs.cmu.edu/class2/induction.html

Defining addition, subtraction, etc. via induction: See number theory, arithmetic, algebra.