More Examples of Proofs

Chapter 3: Proofs

Learning objectives

  • Apply multiple proof techniques within a single proof
  • Prove statements about even/odd numbers, divisibility, and set containment
  • Select the most appropriate proof strategy for a given problem
  • Write clear, complete proofs that combine direct, contrapositive, contradiction, and case analysis methods
Proof Tree BuilderInteractive figure — enable JavaScript to interact.

You have now seen every proof strategy in Chapter 3 in isolation. Real mathematical proofs almost never use a single strategy — they layer them, peel quantifiers, drop into cases, switch to contrapositive partway through, and recombine. This section is the gym: a curated collection of theorems where the right strategy is not labelled on the box, and the proof requires combining two or three of the moves you have learned. Treat each example as a small puzzle: identify the goal's logical form, choose the outermost strategy, see what new goal emerges, choose the next strategy, and continue until the gap closes.

The strategy decision guide

Refer to this table as you tackle the examples:

Goal PQP \Rightarrow Q → direct (or contrapositive if ¬Q\neg Q unpacks; contradiction if ¬Q\neg Q collides with a given). Goal xD,P(x)\forall x \in D, P(x) → let xx be arbitrary; prove P(x)P(x). Goal xD,P(x)\exists x \in D, P(x) → exhibit a witness and verify. Goal PQP \wedge Q → prove PP; prove QQ; conclude. Goal PQP \vee Q → prove one disjunct, or assume ¬P\neg P and prove QQ. Goal PQP \Leftrightarrow Q → prove both directions. Goal ¬P\neg P → assume PP and derive a contradiction. Goal !x,P(x)\exists! x, P(x) → prove existence; prove uniqueness. Given PQP \vee Q → case analysis.

Every theorem in this section starts with one of these forms. Match the form to the strategy and the proof begins to write itself.

Proofs about sets — the recurring shape

Set-theory proofs are the most common compound proofs in undergraduate mathematics. The key reductions:

ABA \subseteq B: let xAx \in A be arbitrary, show xBx \in B — a universal-then-conditional. • A=BA = B: prove ABA \subseteq B AND BAB \subseteq A — a conjunction of two subset proofs. • xABx \in A \cup B: show xAxBx \in A \vee x \in B — a disjunction. • xABx \in A \cap B: show xAxBx \in A \wedge x \in B — a conjunction. • xABx \in A \setminus B: show xAxBx \in A \wedge x \notin B. • xAx \notin A: negation — usually proved by contradiction.

Every set-equality proof you will encounter for the rest of Chapter 3 reduces to combinations of these. A typical mid-difficulty proof is 4 to 6 strategy applications nested inside each other.

Proofs about divisibility — the recurring shape

Divisibility statements unpack the same way every time: aba \mid b means b=akb = ak for some integer kk. Almost all divisibility proofs in this chapter follow the pattern:

  1. Unpack the given divisibility into b=akb = ak.
  2. Compute / manipulate to get the conclusion in the form c=a(integer)c = a \cdot (\text{integer}).
  3. Re-pack: conclude aca \mid c.

Number-theory proofs about parity, primes, and modular arithmetic are all special cases of this template.

How to choose between competing strategies

When two strategies seem plausible, pick the one that gives the most concrete starting material. Direct proof is concrete when the hypothesis unpacks ('nn is even' gives n=2kn = 2k). Contrapositive is concrete when the negated conclusion unpacks better. Contradiction is concrete when the negated goal will clash with a structural fact. If both look equally hard, just start one — you can pivot if it stalls.

Pause and think: Given the statement "if AB=A \cap B = \emptyset, then x,xAxB\forall x, x \in A \Rightarrow x \notin B," peel the strategies in order. What is your outermost strategy? Your next? When do you switch to contradiction?

Try it

  • Strategy planning — for each, name the OUTERMOST and NEXT strategy (do not actually write the proof): (a) "A(AB)=AA \cap (A \cup B) = A," (b) "for all integers nn, if n2+1n^2 + 1 is odd then nn is even," (c) "there exist x,yQx, y \in \mathbb{Q} with x2+y2=2x^2 + y^2 = 2."
  • Spot the strategy: read the proof "Let xA(AB)x \in A \cap (A \cup B). Then xAx \in A and xABx \in A \cup B. So xAx \in A." Identify each move — arbitrary, conjunction unpacking, conclusion.
  • Write the skeleton (first sentence of each move) of a proof that "for all sets A,BA, B, ABAA \setminus B \subseteq A." Do not fill in the middle.
  • Two-direction challenge: write the topic sentences for both directions of "an integer nn is divisible by 6 iff nn is divisible by 2 AND by 3." Which direction needs gcd(2,3)=1\gcd(2,3) = 1?
  • Combined techniques: prove "if n2n^2 is irrational, then nn is irrational" (where nn is a real number). Which strategy is cleanest? Why?

A trap to watch for

The most common error in compound proofs is losing the thread — starting with a universal, dropping into a case split, switching to contradiction, and forgetting where the original quantifier or implication left off. Every time you apply a strategy, the goal transforms; the proof is only complete when the LAST goal is established and every transformation's closing claim is asserted ('since xx was arbitrary,' 'in both cases the conclusion holds,' 'this contradicts our assumption,' etc.). A well-organised proof signposts each transition. Treat the proof like a tree: each strategy opens a sub-branch, and you must close every branch before declaring victory. If you cannot point at the place where the original goal is finally asserted, the proof is incomplete.

What you now know

You have the full Chapter 3 toolkit: direct, contrapositive, contradiction, arbitrary-element for universals, witness for existentials, case analysis for disjunctions, two-direction for biconditionals, and existence-plus-uniqueness for !\exists!. You can compound these to handle proofs about sets, divisibility, number theory, and abstract algebra. The next chapters will use these strategies as building blocks: induction (Chapter 6) is itself a strategy that decomposes a universal-over-N\mathbb{N} into a base case plus an inductive step, both proved with the techniques you just learned. The same will be true of relations and functions in later chapters. Every advanced proof is a compound of these primitives.

References

  • Velleman, D. J. (2019). How to Prove It: A Structured Approach (3rd ed.). Cambridge University Press, §3.7.
  • Polya, G. (1957). How to Solve It: A New Aspect of Mathematical Method. Princeton University Press.
  • Hammack, R. (2018). Book of Proof (3rd ed.). Open-source textbook, chs. 4–8.
  • Solow, D. (2014). How to Read and Do Proofs (6th ed.). Wiley, ch. 13 (Putting it all together).
  • Pierce, B. C. et al. (2018). Software Foundations, Vol. 1: Logical Foundations. Online textbook (Coq), ch. 'Tactics' (composing tactics).

This page is prerendered for SEO and accessibility. The interactive widgets above hydrate on JavaScript load.