Proofs Involving Quantifiers
Learning objectives
- Prove universally quantified statements by letting the variable be arbitrary
- Prove existentially quantified statements by exhibiting a witness
- Disprove universal statements by providing a counterexample
- Combine quantifier strategies with other proof techniques
How do you prove a statement about every integer when there are infinitely many of them? You take one — any one — and run an argument that uses no special property of that integer beyond its integer-hood. How do you prove that something exists when the universe is enormous? You build it or pick it. These two moves — arbitrary-element for , exhibit-a-witness for — are the entire quantifier toolkit. Almost every theorem you will encounter has at least one quantifier in its statement, and the strategy for each comes straight from the truth condition of the quantifier itself.
Proving a universal: let the variable be arbitrary
To prove :
- Begin: "Let be arbitrary."
- Use only the fact that (no special values, no extra assumptions).
- Derive .
- Conclude: "Since was arbitrary, ."
The word "arbitrary" is doing a lot of work. It is a promise to the reader that you will not secretly assume is special. Once introduced, is a placeholder representing any possible element of ; whatever you derive about it must follow only from .
Proving an existential: exhibit a witness
To prove :
- Produce a specific (the witness).
- Verify by computation or argument.
- Conclude: "Therefore ."
Sometimes the witness is obvious ("take "). Sometimes finding it is the entire challenge of the proof — the witness might be the root of an equation, the limit of a sequence, or a clever construction. Once you have it, verification is usually mechanical.
There is also a non-constructive existence proof: argue that some object must exist without producing it, typically by contradiction. Non-constructive proofs are perfectly valid but leave the witness implicit.
Disproving a universal: find a counterexample
The negation tells you how to disprove a universal: exhibit a single element where the property fails. To disprove "every continuous function is differentiable," produce . One counterexample beats infinitely many supporting examples — this is the asymmetry between proving universals (you must handle every case) and disproving them (one is enough).
Nested quantifiers: peel from outside in
For a goal like , peel quantifiers in order:
- Let be arbitrary.
- Now, depending on , produce a witness (possibly different for each ).
- Verify .
The order of nested quantifiers is critical. is true in (take ). is false (no single works for every ). When proving, your witness for may legitimately depend on if the comes first. If the is outermost, the witness must be one fixed that handles every .
When quantifiers combine with conditionals
The very common form — "every with property also has property " — peels into: (1) let be arbitrary; (2) assume ; (3) derive . This is the bread-and-butter shape of subset proofs (), divisibility lemmas, and most "if-then for all" theorems in analysis and algebra.
Pause and think: To prove , what is your witness allowed to depend on? Is your witness one specific number, or a formula in ? Try writing it.
Try it
- Identify the quantifier shape, then write only the FIRST line of the proof: (a) "Every odd integer is the sum of an even integer and an odd integer." (b) "There exists a real with ." (c) "."
- Predict and verify: is true? What witness do you propose, and what universal property does it satisfy?
- Spot the flaw: "Claim: . Proof: let be arbitrary. Take . Then . So the claim holds for arbitrary ." Where is the error, and is the claim even true?
- Disprove or prove: . If false, give a counterexample; if true, prove it.
- Skeleton: write the first sentence and the conclusion sentence of a proof that "for every set , ." (Hint: peel the and then peel the implication inside the subset definition.)
A trap to watch for
The most common quantifier error is the silent specialisation of an arbitrary variable. A student writes "let be arbitrary" and three lines later writes "since ..." with no justification. You can only assume what you have established. If your argument needs a case split (e.g., even vs odd), you must say so explicitly and handle both cases. The opposite error is also common: trying to prove an existential by an argument that no such object exists is unreasonable rather than by producing one. "Surely there is a prime between 100 and 110" is not a proof — and and and are. Always verify the witness.
What you now know
You can prove by introducing an arbitrary and arguing without using any special property of it. You can prove by exhibiting and verifying a witness (which may depend on outer -bound variables). You can disprove a universal with a single counterexample and unpack any nested quantifier statement by peeling from the outside in. Quantifier proofs combine naturally with the conditional strategies of the previous section: most real theorems have an outer , an inner implication, and require both moves in sequence.
References
- Velleman, D. J. (2019). How to Prove It: A Structured Approach (3rd ed.). Cambridge University Press, §3.3.
- 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, ch. 8.
- Bloch, E. D. (2011). Proofs and Fundamentals. Springer, ch. 2 (Quantifiers).
- The Univalent Foundations Program (2013). Homotopy Type Theory: Univalent Foundations of Mathematics, ch. 1.11 (Propositions as types).