1/15
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced | Call with Kai |
|---|
No analytics yet
Send a link to your students to track their progress
Induction Principle
Prove P(n) for all natural numbers:
Base case: prove P(0).
Inductive case: prove P(n') ⇒ P(S n').
Creates proof chain: P(0) ⇒ P(1) ⇒ P(2) ⇒ … for all numbers.
induction Tactic Syntax
plusnO Induction Proof
Inductive Hypothesis Power
plus_assoc Proof
minusnn Proof
Helper Lemma plusnSm
plus_comm Proof
Helper Lemma Strategy
assert Tactic
plus_rearrange with assert
plus_swap Proof
Choosing Induction Variable
Induction vs Case Analysis
Induction Proof Structure
Common Induction Patterns