Proofs Involving Conjunctions and Biconditionals
Learning objectives
- Prove a conjunction by proving each conjunct separately
- Prove a biconditional by proving both directions
- Use conjunctive givens by extracting individual parts
- Organize multi-part proofs clearly
How do you prove two things at once? You prove them one at a time. The strategy for a conjunction is the simplest in this chapter — split the goal into independent sub-proofs — but it underpins every "iff" theorem in mathematics. Biconditionals are conjunctions in disguise (), so they too split. The discipline you learn here — signposting each part, handling them independently, then concluding — is what keeps multi-part proofs from collapsing into incoherent mush, especially when each direction needs a different proof technique.
Proving a conjunction
To prove :
- Prove .
- Prove .
- Conclude .
Signpost the two parts clearly: "First, we show ... Next, we show ..." Each sub-proof may use any strategy — direct, contrapositive, contradiction, case analysis — and the two sub-proofs are independent. The reader should never wonder which conjunct you are currently arguing.
Using a conjunctive given
If you have a given , you may freely use both and separately. This is the easy direction: a conjunction in the givens is a gift — two facts for the price of one. Unpack it explicitly: "from the given we have ; we also have ."
Proving a biconditional
A biconditional means " if and only if ," equivalent to . So a biconditional proof is structurally two conditional proofs:
- () Assume , prove .
- () Assume , prove .
- Conclude .
The two directions can use entirely different techniques. A famous example: "an integer is even iff is even." The forward direction ( even even) is a one-line direct proof. The backward direction ( even even) is cleanest by contrapositive ( odd odd). Always label which direction you are doing.
Circular chains for multiple equivalences
When proving , instead of proving pairwise equivalences, prove the circular chain:
This gives all equivalences via transitivity. For , you prove 3 implications instead of 6 separate iffs. Circular chains are how textbooks present "the following are equivalent" (TFAE) theorems: characterise the same condition six different ways and prove the chain once.
How to lay out a clean multi-part proof
Use whitespace, labels, and topic sentences. A two-part conjunction proof might look like:
"Proof. We show both and . Part 1 (proof of ): <argument>. Part 2 (proof of ): <argument>. Since both parts hold, . "
This structure is not decorative; it lets a reader scan to the part they want to check and signals to a grader (or proof assistant) that you understand the conjunctive nature of the goal.
Pause and think: To prove "an integer is divisible by 6 iff is divisible by 2 and divisible by 3," what are the two directions? Which direction needs the fact ?
Try it
- Predict, before writing: in the proof of " even iff even," which direction will you do by direct proof and which by contrapositive? Why?
- Skeleton: write the topic sentences for the two parts of a proof that "if is even, then is even AND is even."
- Spot the flaw: a student writes "Proof of : Assume . Then . Therefore ." What is missing?
- Circular chain practice: for an integer , set : ' is even,' : ' is even,' : ' is even.' Sketch the three implications you would prove to establish all three equivalences.
- Distinguish: which form fits this statement — "For real , iff "? Conjunction, biconditional, or both?
A trap to watch for
The single most common biconditional error is to prove only one direction and call it done. "Assume . Then . So " is HALF a proof: you have proven . You still must show . The trap is that the forward direction often feels obvious enough that the backward direction seems implied — but logically, "" and "" are independent statements. Many false "biconditional" claims fail in exactly one direction (e.g. " iff " — the forward direction is false for ). Always do both, and label them clearly.
What you now know
You can prove a conjunction by independent sub-proofs of and , and you can prove a biconditional by handling both implications in turn, often with different techniques. You can collapse multiple equivalences into a single circular chain, and you know how to typeset a multi-part proof so the reader (and your future self) can follow it. The remaining shapes you might meet are disjunctions and existence-with-uniqueness; both are coming up next.
References
- Velleman, D. J. (2019). How to Prove It: A Structured Approach (3rd ed.). Cambridge University Press, §3.4.
- Hammack, R. (2018). Book of Proof (3rd ed.). Open-source textbook, ch. 7 (Biconditional).
- Solow, D. (2014). How to Read and Do Proofs (6th ed.). Wiley, ch. 8 (Iff).
- Bloch, E. D. (2011). Proofs and Fundamentals. Springer, ch. 3.
- Pierce, B. C. et al. (2018). Software Foundations, Vol. 1: Logical Foundations. Online textbook (Coq), ch. 'Logic' (iff destruct).