A topic in the Open Knowledge Graph — a free, open map of 15,290 topics and the order to learn them in.

Mathematical Induction

College Depth 73 in the knowledge graph I know this Set as goal
3,127topics build on this
354prerequisites beneath it
See this on the map →
Introduction to Mathematical InductionProof by Cases (Proof by Exhaustion)Big-O Notation and Asymptotic AnalysisBinary Operations and Algebraic Structures+36 more
induction proof recursion

Core Idea

Mathematical induction proves statements about natural numbers by (1) proving the base case (n=1), and (2) proving that if true for n=k, then true for n=k+1. This establishes a logical chain covering all natural numbers.

Explainer

Mathematical induction is one of the most elegant proof techniques in mathematics because it lets you prove a statement about *infinitely many* cases with a finite argument. The idea is a logical domino effect: prove that the first domino falls (base case), and prove that each domino knocks over the next (inductive step). Together, these two facts guarantee that every domino in an infinite row will eventually fall.

More precisely, suppose you want to prove a statement P(n) for all natural numbers n ≥ 1. The proof has two parts. First, the *base case*: verify directly that P(1) is true. Second, the *inductive step*: assume P(k) is true for some arbitrary k (this assumption is called the *inductive hypothesis*), and then use that assumption to prove P(k+1) is true. If both parts succeed, you have proven P(n) for all n.

The inductive hypothesis is what makes induction feel different from ordinary proof. You are *assuming* the very thing you want to prove — but only for a single arbitrary case k, not for all n. You are not being circular; you are setting up a conditional. "IF P(k) is true THEN P(k+1) is true" is a perfectly valid implication to prove, and once you have it, you apply it starting from k=1: since P(1) is true, P(2) is true; since P(2) is true, P(3) is true; and so on forever.

A standard first example is the sum formula: 1 + 2 + 3 + ... + n = n(n+1)/2. Base case: n=1 gives 1 = 1(2)/2 = 1 ✓. Inductive step: assume 1+2+...+k = k(k+1)/2. Then 1+2+...+k+(k+1) = k(k+1)/2 + (k+1) = (k+1)(k/2 + 1) = (k+1)(k+2)/2, which is the formula with k+1 substituted. Both steps work, so the formula holds for all n ≥ 1. Notice how the inductive hypothesis was the essential tool in the algebra.

Because you have already studied proof by cases, you know that proving something for all cases requires covering every case. Induction is a way to cover infinitely many cases systematically. The connection to recursion is also worth noting: recursive algorithms often work precisely because they do a small amount of work and then call themselves on a smaller input — and induction is the proof technique that verifies such recursive reasoning is sound. You will use induction again when you study sequences, series, divisibility, and data structures.

Practice Questions 3 questions

Prerequisite Chain

Understanding ZeroThe Number ZeroCounting to FiveCounting to 10Counting to 20Counting a Set of Objects Up to 20Cardinality: The Last Number CountedMatching Numerals to QuantitiesSubitizing Small QuantitiesAddition Within 10Number Bonds to 10Addition Within 20Doubles and Near DoublesDoubles Facts Within 10Near Doubles Facts Within 20Mental Math Strategies for AdditionMental Math: Adding and Subtracting TensAddition Within 100Repeated Addition as MultiplicationMultiplication as Equal GroupsMultiplication: ArraysBasic Multiplication Facts (0s, 1s, 2s, 5s, 10s)Multiplication Facts Within 100Division as Equal SharingDivision as Grouping (Measurement Division)Division: Grouping (Repeated Subtraction) ModelDivision: Fair Sharing ModelDivision as Equal SharingDivision as GroupingBasic Division FactsDivision Facts Within 100Multiplication and Division Fact FamiliesRelationship Between Multiplication and DivisionDivision Facts as Inverse of MultiplicationRemainders and Quotients in DivisionDivision Word ProblemsMulti-Step Word ProblemsSolving Multi-Step Word ProblemsMultiplication Word ProblemsDivision Word ProblemsIntroduction to Long DivisionFactors and MultiplesPrime and Composite NumbersEquivalent FractionsRelating Fractions and DecimalsDecimal Place ValueIntegers and the Number LineComparing and Ordering IntegersAbsolute ValueAdding IntegersSubtracting IntegersMultiplying IntegersIntroduction to ExponentsOrder of OperationsInteger Order of OperationsVariable ExpressionsThe Distributive PropertyVariables and Expressions ReviewIntroduction to PolynomialsAdding and Subtracting PolynomialsMultiplying PolynomialsFactorialPermutationsCombinationsCounting Principles: Addition and Multiplication RulesIntroduction to Graph TheoryPropositional Logic FoundationsLogical EquivalencesSet Operations: Union, Intersection, and ComplementProof by CasesProving by Cases and ExhaustionVacuous Truth and Trivial CasesProof by Cases (Proof by Exhaustion)Mathematical Induction

Longest path: 74 steps · 354 total prerequisite topics

Prerequisites (2)

Leads To (38)