Conjunction (And)
The conjunction P∧Q means ”P and Q”.
Truth Table
| P | Q | P∧Q |
|---|
| T | T | T |
| T | F | F |
| F | T | F |
| F | F | F |
P∧Q is true only when both P and Q are true.
Proof Strategy
To prove P∧Q:
- Prove P
- Prove Q
Both must be proved separately.
Disjunction (Or)
The disjunction P∨Q means ”P or Q”.
In mathematics, “or” is inclusive: P∨Q is true if at least one of P, Q is true.
Truth Table
| P | Q | P∨Q |
|---|
| T | T | T |
| T | F | T |
| F | T | T |
| F | F | F |
Proof Strategies for Disjunction
Method 1: Prove One Disjunct
Prove P (then P∨Q follows) or prove Q.
Method 2: Proof by Cases (Disjunction Elimination)
To prove R from P∨Q:
- Case 1: Assume P, prove R
- Case 2: Assume Q, prove R
- Since P∨Q and R follows in either case, conclude R
Method 3: Proof by Contradiction
To prove P∨Q:
- Assume ¬(P∨Q)
- By De Morgan, this means ¬P∧¬Q
- Derive a contradiction
Example: Proof by Cases
Statement: For all integers n, n2≥n.
This is false. But let us prove: For all integers n, n2≥0.
Proof by cases on n≥0 or n<0:
Case 1: n≥0.
Then n2≥0⋅n=0.
Case 2: n<0.
Then n=−k for some k>0. So n2=(−k)2=k2>0.
In either case, n2≥0.
De Morgan’s Laws
For Statements
¬(P∧Q)≡¬P∨¬Q
¬(P∨Q)≡¬P∧¬Q
For Sets
S∖(A∩B)=(S∖A)∪(S∖B)
S∖(A∪B)=(S∖A)∩(S∖B)
Verification by Truth Table
| P | Q | ¬(P∧Q) | ¬P∨¬Q |
|---|
| T | T | F | F |
| T | F | T | T |
| F | T | T | T |
| F | F | T | T |
Distributivity
Conjunction over Disjunction
P∧(Q∨R)≡(P∧Q)∨(P∧R)
Disjunction over Conjunction
P∨(Q∧R)≡(P∨Q)∧(P∨R)
Associativity and Commutativity
Both ∧ and ∨ are:
- Associative: P∧(Q∧R)≡(P∧Q)∧R
- Commutative: P∧Q≡Q∧P
This allows us to write P1∧P2∧⋯∧Pn and P1∨P2∨⋯∨Pn without parentheses.
Absorption Laws
P∧(P∨Q)≡P
P∨(P∧Q)≡P
Idempotent Laws
P∧P≡P
P∨P≡P
Identity Laws
P∧True≡P
P∨False≡P
Domination Laws
P∧False≡False
P∨True≡True
Using Logical Equivalences
These equivalences allow us to transform statements into simpler or more convenient forms.
Example
Simplify ¬(P∧Q)∧P.
¬(P∧Q)∧P≡(¬P∨¬Q)∧P (De Morgan)
≡(¬P∧P)∨(¬Q∧P) (Distributivity)
≡False∨(¬Q∧P) (Contradiction)
≡¬Q∧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>0 and n<0, you forgot n=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
- P∧Q requires proving both P and Q
- P∨Q can be proved by proving one, or by cases
- De Morgan’s laws: ¬(P∧Q)≡¬P∨¬Q and ¬(P∨Q)≡¬P∧¬Q
- Both connectives are associative, commutative, and distributive over each other