Mathematics.

logic and proof

Geometric Proof

Geometry30 minDifficulty3 out of 10

You should know: triangles

Overview

A geometric proof is a deductive argument establishing that a geometric statement must be true, built from previously established axioms, definitions, and theorems using accepted rules of logical inference. Unlike checking a statement in many specific examples (inductive/empirical evidence), a valid proof guarantees the statement holds in every possible case. Classical geometric proofs are usually written as a chain of statements, each justified by a definition, postulate, previously proved theorem, or a valid rule of logic — the two most common formats being two-column proofs (statement/reason table) and paragraph proofs (flowing prose).

Intuition

Think of a proof as a bridge built one plank at a time: each plank (statement) can only be placed if it's nailed down by something already solid — a definition, an axiom, or an earlier theorem. You're not allowed to simply declare the far bank is reachable; you must lay every plank in order. Geometric proofs are especially visual: a diagram lets you see the given information and track what's newly established at each step, but the diagram itself is never the proof — only the logical chain of justified statements is.

Interactive Graph

Build a triangle congruence proof step by step with a live diagram

Loading visualization…

Formal Definition

Definition

A proof establishes a conditional statement 'if P then Q' by a finite chain of implications, each licensed by an axiom, definition, or previously proved theorem. A classic example of proof by contradiction (reductio ad absurdum), used since antiquity to show a claimed construction or ratio is impossible, is the irrationality of √2: assume for contradiction that √2 is rational and can be written in lowest terms, then derive a contradiction:

2=ab,gcd(a,b)=1\sqrt{2} = \frac{a}{b}, \quad \gcd(a,b) = 1
Assumption for contradiction: √2 rational in lowest terms
2b2=a2    a is even    a=2k    2b2=4k2    b2=2k2    b is even2b^2 = a^2 \implies a \text{ is even} \implies a = 2k \implies 2b^2 = 4k^2 \implies b^2 = 2k^2 \implies b \text{ is even}
Both a and b turn out even
gcd(a,b)=1 contradicts both a,b even\gcd(a,b) = 1 \text{ contradicts both } a, b \text{ even}
Contradiction — the assumption must be false

Notation

NotationMeaning
\thereforeTherefore — introduces the conclusion drawn from prior statements
\congCongruent (equal in shape and size)
\simSimilar (equal in shape, proportional in size)
\blacksquare'Quod erat demonstrandum' — marks the end of a proof

Properties

Two-column proof

A table pairing each statement with its justification (definition, postulate, or theorem).\text{A table pairing each statement with its justification (definition, postulate, or theorem).}

Paragraph proof

The same logical chain written as connected prose rather than a table.\text{The same logical chain written as connected prose rather than a table.}

Proof by contradiction

Assume the negation of the claim, derive a logical contradiction, conclude the claim must be true.\text{Assume the negation of the claim, derive a logical contradiction, conclude the claim must be true.}

Direct proof

Chain hypotheses forward through valid inferences straight to the conclusion.\text{Chain hypotheses forward through valid inferences straight to the conclusion.}

Applications

Formal verification and automated theorem proving apply the same axiom-and-inference-rule structure used in classical geometric proofs to verify software correctness.

Worked Examples

  1. Given: in △ABC and △DEF, ∠A ≅ ∠D and ∠B ≅ ∠E.

    A=D, B=E\angle A = \angle D, \ \angle B = \angle E
  2. By the triangle angle-sum theorem, each triangle's angles sum to 180°.

    A+B+C=180=D+E+F\angle A + \angle B + \angle C = 180^\circ = \angle D + \angle E + \angle F
  3. Substitute the given congruences and subtract equal quantities.

    C=180AB=180DE=F\angle C = 180^\circ - \angle A - \angle B = 180^\circ - \angle D - \angle E = \angle F

Answer: ∠C ≅ ∠F, proved directly from the angle-sum theorem.

Practice Problems

Difficulty 3/10

Prove that the base angles of an isosceles triangle are congruent.

Difficulty 3/10

Prove that the sum of the exterior angles of any triangle (one per vertex) is 360°.

Common Mistakes

Common Mistake

Treating a diagram as proof by itself ('it looks equal, so it must be').

A diagram is only an illustration of the given information — every claim, including ones that 'look obviously true,' must be justified by a definition, postulate, or previously proved theorem.

Common Mistake

Assuming what you're trying to prove (circular reasoning) partway through a proof.

Every statement must follow from what was previously established (givens, definitions, prior theorems) — never from the conclusion itself, even implicitly.

Summary

  • A geometric proof is a finite chain of statements, each justified by a definition, axiom, or previously proved theorem.
  • Common formats: two-column proof (statement/reason table) and paragraph proof (flowing prose).
  • Proof by contradiction assumes the negation of the claim and derives a logical impossibility.
  • A diagram illustrates a proof but never substitutes for the logical justification of each step.
  • Proof underlies not just geometry but all of mathematics, and directly parallels formal software verification.

References