Basisfall
Basisfall, commonly called the base case, is the starting point of a proof by mathematical induction. When proving a statement P(n) for all integers n in a given range, one first confirms that P(n) holds for the smallest n in that range. This verification anchors the argument; without a valid base case, the inductive step alone cannot establish the result.
After establishing the base case, the inductive step shows that if the statement holds for some n,
Sometimes multiple base cases are required, for example when the domain starts at a value greater than
Examples: Prove that the sum of the first n natural numbers equals n(n+1)/2 for all n≥1. Base
Basisfall is distinct from the inductive step; both are needed. In computer science, the base case is