The Conditional and Biconditional Connectives

Chapter 1: Sentential Logic

Learning objectives

  • State and apply the truth table for PQP \Rightarrow Q, including vacuous truth
  • Compute the converse, inverse, and contrapositive of a given conditional
  • Recognize that the contrapositive is logically equivalent to the original, but the converse is not
  • Translate between 'only if', 'sufficient', 'necessary', 'if and only if' and the symbolic connectives

If you only learn one connective deeply, make it the conditional. Almost every mathematical theorem has the shape "if PP, then QQ" — from elementary geometry ("if a triangle has three equal sides, then it has three equal angles") to advanced analysis ("if a sequence is bounded and monotone, then it converges"). The conditional PQP \Rightarrow Q has a surprisingly subtle truth table that catches almost every beginner off guard, and the related notions of converse, inverse, and contrapositive are essential vocabulary for the rest of the book. Master them now and the proof techniques of Chapter 3 will feel natural; skip them and proofs will feel like a foreign language.

The truth table of PQP \Rightarrow Q

The conditional PQP \Rightarrow Q is read "if PP, then QQ" or "PP implies QQ." It is false only in one row of its truth table — when PP is true but QQ is false — and true in every other row.

PQPQTTTTFFFTTFFT\begin{array}{|c|c|c|} \hline P & Q & P \Rightarrow Q \\ \hline T & T & T \\ T & F & F \\ F & T & T \\ F & F & T \\ \hline \end{array}

The two F-rows of PP look strange: how can PQP \Rightarrow Q be true when PP is false? The answer is vacuous truth: a conditional with a false antecedent makes no claim about reality, and by default a claim that says nothing is counted as true. "If 2 + 2 = 5, then I am the King of France" is technically true.

Truth TableInteractive figure — enable JavaScript to interact.

Converse, inverse, contrapositive

Three related conditionals are built from PQP \Rightarrow Q by swapping or negating its parts:

Converse: QPQ \Rightarrow P (swap antecedent and consequent).

Inverse: ¬P¬Q\neg P \Rightarrow \neg Q (negate both, keep the order).

Contrapositive: ¬Q¬P\neg Q \Rightarrow \neg P (swap and negate — both moves at once).

Critical fact: the contrapositive is logically equivalent to the original, while the converse is not. You can verify this in two seconds by comparing the truth-table columns of PQP \Rightarrow Q and ¬Q¬P\neg Q \Rightarrow \neg P — they match in every row. The contrapositive equivalence is the backbone of proof by contrapositive, one of the workhorse proof techniques in Chapter 3.

The biconditional

The biconditional PQP \Leftrightarrow Q is read "PP if and only if QQ" (often abbreviated iff). It is true exactly when PP and QQ have the same truth value — both true or both false. Logically,

PQ    (PQ)    (QP).P \Leftrightarrow Q \;\equiv\; (P \Rightarrow Q) \;\wedge\; (Q \Rightarrow P).

Proving a biconditional is therefore a two-part task: show PQP \Rightarrow Q and show QPQ \Rightarrow P.

The language of conditions

English contains many ways of saying the same conditional, and confusing them is a major source of student errors:

"PP is sufficient for QQ" means PQP \Rightarrow Q (knowing PP is enough to conclude QQ).

"PP is necessary for QQ" means QPQ \Rightarrow P (without PP, QQ cannot happen).

"PP only if QQ" means PQP \Rightarrow Q (the only way to have PP is to also have QQ).

"PP if and only if QQ" means PQP \Leftrightarrow Q.

The two phrases that trip people up most are "only if" (which puts QQ after the arrow, not before) and "necessary" (which reverses the arrow). Slowing down on these phrases pays for itself for the rest of the course.

Pause and think: The statement "If the moon is made of cheese, then 2+2=42 + 2 = 4" is true (vacuously, because the antecedent is false — and incidentally the consequent happens to be true). Now consider "If 2+2=42 + 2 = 4, then the moon is made of cheese." Is this also true? (Hint: check which row of the truth table this corresponds to.)

Try it

  • Before writing: predict the contrapositive of "If x>3x > 3, then x2>9x^2 > 9." Then check whether your contrapositive is equivalent to the original by finding a value of xx that makes the original true.
  • Pick the converse, inverse, and contrapositive of "If a quadrilateral is a square, then it is a rectangle." Decide which of the three is necessarily true and which is not.
  • Open the truth-table widget. Build the columns of PQP \Rightarrow Q and ¬Q¬P\neg Q \Rightarrow \neg P. Compare row by row.
  • Translate to symbolic form: "Differentiability is sufficient for continuity." Now translate "Continuity is necessary for differentiability." Are the two translations equivalent?
  • Predict first: is "nn is even if and only if n2n^2 is even" a biconditional that is true for all integers nn? Test a few values, then think about both directions.

A trap to watch for

The cardinal sin of conditional logic is confusing a statement with its converse. "If you live in Paris, you live in France" is true. "If you live in France, you live in Paris" is false — the converse fails because not every French resident lives in the capital. A theorem and its converse are different theorems; proving one tells you nothing about the other. Whenever a problem asks for a biconditional or an "iff," you must prove BOTH directions — PQP \Rightarrow Q AND QPQ \Rightarrow P — or you have only done half the work.

What you now know

You can read, write, and manipulate conditionals and biconditionals; you can produce converse, inverse, and contrapositive on demand; and you have the vocabulary "necessary," "sufficient," and "only if" under control. Chapter 1 is now complete — you have a full toolkit for propositional logic. Chapter 2 lifts that toolkit to predicate logic: statements about every xx and statements about some xx. That is where mathematics really takes off.

References

  • Velleman, D. J. (2019). How to Prove It: A Structured Approach (3rd ed.). Cambridge University Press, ch. 1.
  • Enderton, H. B. (2001). A Mathematical Introduction to Logic (2nd ed.). Academic Press, §1.2.
  • Smullyan, R. M. (1995). First-Order Logic. Dover Publications, ch. 1.
  • Mendelson, E. (2015). Introduction to Mathematical Logic (6th ed.). Chapman and Hall/CRC, ch. 1.

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