When the logic chapter starts drilling "these two expressions are logically equivalent" over and over, a reasonable reader pushes back: I came here to learn proofs, which are about showing things are true. Why is so much time spent on two expressions agreeing in every row of a truth table? Is this not just a syntactic curiosity?

No. Logical equivalence is not a side hobby — it is the engine underneath every proof you will ever write. A proof is a chain of steps where each step transforms the statement you have into a statement you still need. Every legal transformation is licensed by an equivalence. Without that licence, proofs degenerate into "I looked at it and it seemed right."

What logical equivalence actually guarantees

Two expressions P and Q are logically equivalent, written P \equiv Q, when they have the same truth value in every possible scenario — the biconditional P \Leftrightarrow Q is a tautology. That is the truth-table definition.

Now read that as a proof writer: if P and Q are logically equivalent, then proving P and proving Q are the same job. Complete one, and you have completed the other. A proof of P is automatically a proof of Q and vice versa — because they are true in identical rows of every truth table.

Why this is the point: proofs live in the world of truth, and truth-tables are the bookkeeping for truth. Logical equivalence is the bridge: it says "these two sentences behave identically under every interpretation," which means any truth established for one is automatically established for the other. That bridge is what makes swapping one expression for another during a proof a safe operation, not a "hope it still works."

Three concrete ways proofs use equivalence

1. Proof by contrapositive

Suppose you want to prove p \Rightarrow q. One of the cornerstone equivalences is

p \Rightarrow q \equiv \lnot q \Rightarrow \lnot p.

This is not a suggestion — it is a theorem of propositional logic, provable by a four-row truth table. So a proof of \lnot q \Rightarrow \lnot p is a proof of p \Rightarrow q. Nothing is lost; nothing is assumed away.

Why bother? Because often the contrapositive is easier. "If n^2 is even, then n is even" is harder to prove directly (starting from "n^2 is even" you cannot immediately say much about n). Its contrapositive "if n is odd, then n^2 is odd" is a two-line calculation: n = 2k+1 \Rightarrow n^2 = 4k^2 + 4k + 1 = 2(2k^2+2k)+1, odd. Because the two are logically equivalent, the easy proof closes the hard theorem. See Proof by Contrapositive for the full technique.

2. Negating a statement for proof by contradiction

Proof by contradiction starts from the negation of what you want to prove. If your theorem is p \Rightarrow q, you need the negation — which, by the equivalence

\lnot(p \Rightarrow q) \equiv p \land \lnot q,

is the conjunction p \land \lnot q. Without that equivalence, you would not know what to assume. You cannot "negate an implication" by intuition — the formula p \land \lnot q is a derived equivalence, the product of a truth-table check. See Proof by Contradiction.

3. Simplifying a proof goal mid-stream

Halfway through a proof you might need to show \lnot(p \land q) and you realise it is easier to handle as \lnot p \lor \lnot q. That swap is De Morgan — an equivalence. The two expressions have identical truth tables, so proving one proves the other. Without that equivalence, you would be stuck grinding on the original form, no matter how inconvenient.

The danger of treating equivalence as optional

A student who skims the equivalence table and never internalises it will make one of three mistakes:

Each of these failures comes from treating equivalence as a memorable slogan instead of as a certified licence to swap expressions.

Form vs truth — the real distinction

The worry underneath this question is a good one: "I thought proofs were about truth, not form." Here is the precise answer.

A proof proves a specific claim is true — correct. But a proof does so by applying rules, and those rules are about form. Each rule says: "an expression of form A can be rewritten as an expression of form B because A \equiv B." The rules are form-level, the conclusion is truth-level. Logical equivalence is the contract between the two — it guarantees that form-level manipulation preserves truth-level content.

Put another way: truth is the destination, equivalence is the road network. You cannot drive from "the claim" to "the conclusion" without roads, and the roads are the equivalences. So the reason the chapter spends so much time on them is not that they are intrinsically fascinating — it is that they are the infrastructure of every proof you will write for the next ten years of mathematics.

Quick self-check before a proof

Three seconds of this check prevents entire classes of silent proof errors.

Related: Logic and Propositions · Truth Table vs Equivalence Rules · Proof by Contrapositive · Proof by Contradiction