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

Natural Deduction for Propositional Logic

College Depth 74 in the knowledge graph I know this Set as goal
926topics build on this
372prerequisites beneath it
See this on the map →
Proof Structure and TerminologyPropositional Logic Syntax+6 moreDeductive ReasoningIntroduction to Intuitionistic Logic+6 more
natural-deduction proof-rules introduction-elimination derivation

Core Idea

Natural deduction is a proof system designed to mirror human reasoning, with introduction and elimination rules for each connective. Each connective has a rule for introducing it into a conclusion (e.g., ∧-introduction: from φ and ψ, conclude φ ∧ ψ) and a rule for eliminating it from a hypothesis (e.g., ∧-elimination: from φ ∧ ψ, conclude φ). Proofs are structured as derivation trees or Fitch-style columns where assumptions can be introduced and later discharged. The system was designed by Gentzen and Prawitz to make the logical structure of proofs transparent.

How It's Best Learned

Write proofs in Fitch notation column by column, justifying every line with a rule name and the line numbers used. Start with ∧ and →, then add ¬ via proof by contradiction and ∨ via case analysis.

Common Misconceptions

Explainer

When you learned propositional syntax, you saw how to build well-formed formulas from atomic propositions and connectives — but syntax says nothing about which formulas are *provable*. Natural deduction is a proof system that fills that gap by giving you a specific set of rules: one pair (introduction + elimination) for each connective. The goal is a proof system that feels like careful human reasoning rather than a mechanical symbol-manipulation game.

The style most commonly used today is Fitch notation, where proofs run as a vertical column of numbered lines. Each line states a formula and a justification: either it is a premise, it is an assumption you are temporarily introducing, or it is derived from earlier lines by citing a rule and the line numbers it uses. The ∧-introduction rule, for example, says: if line *m* contains φ and line *n* contains ψ, you may write φ ∧ ψ on a new line, citing ∧-intro, m, n. This is completely mechanical once you know which rule to apply.

The subtlety — and the most important thing to internalize — is assumption discharge. When you want to prove a conditional φ → ψ, you open a *subproof*: you indent, write φ as an assumption, and then derive ψ within that indented block. When you close the block and write φ → ψ on the outer level (citing →-intro), the assumption φ is *discharged*: it is gone, no longer available. This models the informal argument pattern "suppose φ; then we can show ψ; therefore φ → ψ," where the "suppose" does not carry over after the argument closes. Forgetting that assumptions go out of scope is the single most common error in natural deduction proofs.

Negation and disjunction require slightly more care. To derive ¬φ, you assume φ, derive a contradiction (⊥), and then discharge the assumption (¬-intro). To use a disjunction φ ∨ ψ to derive some conclusion χ, you open *two* subproofs — one assuming φ, one assuming ψ — and show χ in each; then ∨-elimination closes both and gives you χ on the outer level. This is case analysis: you know one disjunct must hold, so showing χ in every case is enough.

Natural deduction is not just an academic exercise: the Curry-Howard correspondence tells us that proofs in natural deduction *are* programs (in a typed lambda calculus), and proof normalization corresponds to program evaluation. Understanding intro/elim rules here will give you direct leverage on type theory, intuitionistic logic, and the foundations of proof assistants like Lean and Coq.

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 InductionNatural Deduction for Propositional Logic

Longest path: 75 steps · 372 total prerequisite topics

Prerequisites (8)

Leads To (8)