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

Weak Induction

College Depth 74 in the knowledge graph I know this Set as goal
439topics build on this
355prerequisites beneath it
See this on the map →
Introduction to Mathematical InductionMathematical Induction+1 moreStrong Induction and Well-Ordering Principle
proof induction mathematical induction

Core Idea

Weak induction (or standard induction) proves a statement P(n) for all natural numbers by: (1) proving the base case P(1) or P(0), and (2) proving that if P(k) is true, then P(k+1) is true. The inductive step assumes P(k) for one value k and derives P(k+1). Weak induction is sufficient for most inductive proofs.

How It's Best Learned

Work through several inductive proofs with clear base cases and inductive steps. Practice formulating the inductive hypothesis clearly.

Common Misconceptions

Explainer

Think of induction as a domino argument. You have infinitely many dominoes standing in a line, labeled 1, 2, 3, ... You want to show they all fall. The strategy: (1) knock down domino 1 (the base case), and (2) verify that whenever domino k has fallen, domino k+1 also falls (the inductive step). If both conditions hold, every domino falls — because domino 1 falls, which knocks down domino 2, which knocks down domino 3, and so on forever. Weak induction is just this argument made precise.

In formal terms, weak induction proves a predicate P(n) holds for all natural numbers n ≥ n₀. Your work with predicates and quantified statements prepared you for exactly this: P(n) is a predicate, and we want ∀n ≥ n₀, P(n). The proof has two parts. The base case establishes P(n₀) directly — usually by substitution and simple calculation. The inductive step assumes P(k) for an arbitrary fixed k (this is the inductive hypothesis) and then derives P(k+1). The derivation must actually use the assumption P(k); if it doesn't, something is wrong.

A classic example: prove that 1 + 2 + ... + n = n(n+1)/2. Base case: n=1 gives 1 = 1(2)/2 = 1. ✓. Inductive step: assume the formula holds for k, so 1 + 2 + ... + k = k(k+1)/2. Now consider the sum up to k+1: it equals k(k+1)/2 + (k+1) = (k+1)[k/2 + 1] = (k+1)(k+2)/2, which is the formula with n = k+1. ✓. The key move was taking the assumed result for k and building up to k+1 by adding the next term — the domino step.

The most common error is circular reasoning in the inductive step: students sometimes use P(k+1) to prove P(k+1), which proves nothing. The inductive hypothesis is P(k) — a statement about k — and you must derive P(k+1) from it using valid algebra or logic. A secondary pitfall is treating verification by examples as induction. Checking that the formula holds for n = 1, 2, 3, 4, 5 is not an inductive proof; it establishes only finitely many cases. Induction is powerful precisely because the inductive step is a universal claim — it works for *every* k — and combining it with the base case yields the result for all n at once.

Practice Questions 5 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 InductionWeak Induction

Longest path: 75 steps · 355 total prerequisite topics

Prerequisites (3)

Leads To (1)