Skip to content
Part IA Michaelmas, Lent Term

Conjunction and Disjunction

Conjunction (And)

The conjunction PQP \land Q means ”PP and QQ”.

Truth Table

PPQQPQP \land Q
TTT
TFF
FTF
FFF

PQP \land Q is true only when both PP and QQ are true.

Proof Strategy

To prove PQP \land Q:

  1. Prove PP
  2. Prove QQ

Both must be proved separately.

Disjunction (Or)

The disjunction PQP \lor Q means ”PP or QQ”.

In mathematics, “or” is inclusive: PQP \lor Q is true if at least one of PP, QQ is true.

Truth Table

PPQQPQP \lor Q
TTT
TFT
FTT
FFF

Proof Strategies for Disjunction

Method 1: Prove One Disjunct

Prove PP (then PQP \lor Q follows) or prove QQ.

Method 2: Proof by Cases (Disjunction Elimination)

To prove RR from PQP \lor Q:

  1. Case 1: Assume PP, prove RR
  2. Case 2: Assume QQ, prove RR
  3. Since PQP \lor Q and RR follows in either case, conclude RR

Method 3: Proof by Contradiction

To prove PQP \lor Q:

  1. Assume ¬(PQ)\neg(P \lor Q)
  2. By De Morgan, this means ¬P¬Q\neg P \land \neg Q
  3. Derive a contradiction

Example: Proof by Cases

Statement: For all integers nn, n2nn^2 \geq n.

This is false. But let us prove: For all integers nn, n20n^2 \geq 0.

Proof by cases on n0n \geq 0 or n<0n < 0:

Case 1: n0n \geq 0.

Then n20n=0n^2 \geq 0 \cdot n = 0.

Case 2: n<0n < 0.

Then n=kn = -k for some k>0k > 0. So n2=(k)2=k2>0n^2 = (-k)^2 = k^2 > 0.

In either case, n20n^2 \geq 0.

De Morgan’s Laws

For Statements

¬(PQ)¬P¬Q\neg(P \land Q) \equiv \neg P \lor \neg Q ¬(PQ)¬P¬Q\neg(P \lor Q) \equiv \neg P \land \neg Q

For Sets

S(AB)=(SA)(SB)S \setminus (A \cap B) = (S \setminus A) \cup (S \setminus B) S(AB)=(SA)(SB)S \setminus (A \cup B) = (S \setminus A) \cap (S \setminus B)

Verification by Truth Table

PPQQ¬(PQ)\neg(P \land Q)¬P¬Q\neg P \lor \neg Q
TTFF
TFTT
FTTT
FFTT

Distributivity

Conjunction over Disjunction

P(QR)(PQ)(PR)P \land (Q \lor R) \equiv (P \land Q) \lor (P \land R)

Disjunction over Conjunction

P(QR)(PQ)(PR)P \lor (Q \land R) \equiv (P \lor Q) \land (P \lor R)

Associativity and Commutativity

Both \land and \lor are:

  • Associative: P(QR)(PQ)RP \land (Q \land R) \equiv (P \land Q) \land R
  • Commutative: PQQPP \land Q \equiv Q \land P

This allows us to write P1P2PnP_1 \land P_2 \land \cdots \land P_n and P1P2PnP_1 \lor P_2 \lor \cdots \lor P_n without parentheses.

Absorption Laws

P(PQ)PP \land (P \lor Q) \equiv P P(PQ)PP \lor (P \land Q) \equiv P

Idempotent Laws

PPPP \land P \equiv P PPPP \lor P \equiv P

Identity Laws

PTruePP \land \text{True} \equiv P PFalsePP \lor \text{False} \equiv P

Domination Laws

PFalseFalseP \land \text{False} \equiv \text{False} PTrueTrueP \lor \text{True} \equiv \text{True}

Using Logical Equivalences

These equivalences allow us to transform statements into simpler or more convenient forms.

Example

Simplify ¬(PQ)P\neg(P \land Q) \land P.

¬(PQ)P(¬P¬Q)P\neg(P \land Q) \land P \equiv (\neg P \lor \neg Q) \land P (De Morgan) (¬PP)(¬QP)\equiv (\neg P \land P) \lor (\neg Q \land P) (Distributivity) False(¬QP)\equiv \text{False} \lor (\neg Q \land P) (Contradiction) ¬QP\equiv \neg Q \land P (Identity)

Common Pitfalls

Confusing And/Or

Trap: “P or Q” in mathematics includes the case where both are true.

This is different from everyday English where “or” often means “exactly one”.

Forgetting a Case

Trap: When using proof by cases, check you have covered all possibilities.

If your cases are n>0n > 0 and n<0n < 0, you forgot n=0n = 0.

Overlapping Cases

Trap: Cases need not be disjoint, but each case must be proved.

Cases may overlap; what matters is each case individually leads to the conclusion.


Summary

  • PQP \land Q requires proving both PP and QQ
  • PQP \lor Q can be proved by proving one, or by cases
  • De Morgan’s laws: ¬(PQ)¬P¬Q\neg(P \land Q) \equiv \neg P \lor \neg Q and ¬(PQ)¬P¬Q\neg(P \lor Q) \equiv \neg P \land \neg Q
  • Both connectives are associative, commutative, and distributive over each other