After comparing conditional forms of quantified implications, we now collect general logical laws for quantified statements. These laws explain when quantifiers distribute over connectives and when they do not. Some forms are equivalences, while others are only one-way implications. In this lesson, logical laws for quantified statements will be tested through formulas, proof, and counterexamples.
:::theorem[Existential Quantifier over Conjunction]
For predicates
p(x) and
q(x),
∃x[p(x)∧q(x)]→[(∃xp(x))∧(∃xq(x))]
is true. The converse is not always true.
:::
:::proof
Given that
p(x) and
q(x) are predicates over the same universe.
To prove that
∃x[p(x)∧q(x)]→[(∃xp(x))∧(∃xq(x))].
Suppose
∃x[p(x)∧q(x)] is true. Then there exists an element
a such that both
p(a) and
q(a) are true. Therefore
∃xp(x) is true, and
∃xq(x) is true.
Hence
(∃xp(x))∧(∃xq(x)) is true.
□
:::
:::example[Existential Quantifier Does Not Distribute over Conjunction]
Let the universe be the set of all integers. Let
r(x):2x+1=5 and
s(x):x2=9. The statement
∃x[r(x)∧s(x)] is false. The equation
2x+1=5 gives
x=2, but
22=9. The equation
x2=9 gives
x=3 or
x=−3, but neither satisfies
2x+1=5. However,
∃xr(x) is true and
∃xs(x) is true. Hence
∃x[r(x)∧s(x)] is not logically equivalent to
(∃xr(x))∧(∃xs(x)).
:::
Quantifier distribution laws compare a quantified compound statement with a compound statement built from separate quantifiers. Choose finite truth sets for two predicates over the same universe. The test bench evaluates both sides of each law and shows which pairs agree for the chosen data. This makes the failed converses visible, because two different witnesses can make separate existential statements true without making the conjunction true at one shared element.
:::scientific-preview[Quantifier Law Test Bench]
:::
:::theorem[Existential Quantifier over Disjunction]
For predicates
p(x) and
q(x),
∃x[p(x)∨q(x)]↔[(∃xp(x))∨(∃xq(x))].
:::
:::proof
Given that
p(x) and
q(x) are predicates over the same universe.
To prove that
∃x[p(x)∨q(x)]↔[(∃xp(x))∨(∃xq(x))].
Suppose
∃x[p(x)∨q(x)] is true. Then there exists an element
a such that
p(a)∨q(a) is true. Therefore either
p(a) is true or
q(a) is true. Thus
∃xp(x) is true or
∃xq(x) is true.
Conversely, suppose
(∃xp(x))∨(∃xq(x)) is true. Then either there exists an element satisfying
p(x), or there exists an element satisfying
q(x). In either case, there exists an element satisfying
p(x)∨q(x).
Hence the equivalence is true.
□
:::
:::theorem[Universal Quantifier over Conjunction]
For predicates
p(x) and
q(x),
∀x[p(x)∧q(x)]↔[(∀xp(x))∧(∀xq(x))].
:::
:::proof
Given that
p(x) and
q(x) are predicates over the same universe.
To prove the stated equivalence.
The statement
∀x[p(x)∧q(x)] means that every element satisfies both
p(x) and
q(x). This happens exactly when every element satisfies
p(x) and every element satisfies
q(x). Therefore
∀x[p(x)∧q(x)] is equivalent to
(∀xp(x))∧(∀xq(x)).
Hence the equivalence holds.
□
:::
:::theorem[Universal Quantifier over Disjunction]
For predicates
p(x) and
q(x),
[(∀xp(x))∨(∀xq(x))]→∀x[p(x)∨q(x)]
is true. The converse is not always true.
:::
:::proof
Given that
p(x) and
q(x) are predicates over the same universe.
To prove that
[(∀xp(x))∨(∀xq(x))]→∀x[p(x)∨q(x)].
Suppose
(∀xp(x))∨(∀xq(x)) is true. If
∀xp(x) is true, then for every element
a,
p(a) is true, so
p(a)∨q(a) is true. If
∀xq(x) is true, then for every element
a,
q(a) is true, so
p(a)∨q(a) is true. Therefore, in either case,
∀x[p(x)∨q(x)] is true.
Hence the implication holds.
□
:::
:::definition[Standard Quantified Equivalences]
For predicates
p(x),
q(x), and
r(x) over the same universe, the following equivalences hold:
∀x[p(x)∧(q(x)∧r(x))]∃x[p(x)→q(x)]∀x¬¬p(x)∃x¬¬p(x)↔∀x[(p(x)∧q(x))∧r(x)],↔∃x[¬p(x)∨q(x)],↔∀xp(x),↔∃xp(x).
:::
:::definition[De Morgan Laws under Quantifiers]
For predicates
p(x) and
q(x),
∀x¬[p(x)∧q(x)]∀x¬[p(x)∨q(x)]∃x¬[p(x)∧q(x)]∃x¬[p(x)∨q(x)]↔∀x[¬p(x)∨¬q(x)],↔∀x[¬p(x)∧¬q(x)],↔∃x[¬p(x)∨¬q(x)],↔∃x[¬p(x)∧¬q(x)].
:::
:::exercise
Determine whether each pair is logically equivalent or only related by one-way implication:
∃x[p(x)∧q(x)] and
(∃xp(x))∧(∃xq(x));
∃x[p(x)∨q(x)] and
(∃xp(x))∨(∃xq(x));
∀x[p(x)∧q(x)] and
(∀xp(x))∧(∀xq(x));
∀x[p(x)∨q(x)] and
(∀xp(x))∨(∀xq(x)).
:::
:::answer
The first pair has only the implication from the single existential conjunction to the conjunction of existentials. The second pair is logically equivalent. The third pair is logically equivalent. The fourth pair has only the implication from
(∀xp(x))∨(∀xq(x)) to
∀x[p(x)∨q(x)].
:::
:::faq[Frequently Asked Questions]
Q: Does
∃ distribute over
∧?
A: Not as an equivalence. One element must satisfy both predicates.
Q: Does
∃ distribute over
∨?
A: Yes. An element satisfying either predicate gives the existential disjunction.
Q: Does
∀ distribute over
∧?
A: Yes. Every element satisfying both is the same as every element satisfying each separately.
:::
:::call-to-action[Apply Quantifier Laws]
subtitle: Practise distinguishing equivalence from implication before negating quantified statements.
button: Next Lesson | /discrete-mathematics/mathematical-logic/predicates-and-quantifiers/negation-of-quantified-statements
button-ghost: Previous Lesson | /discrete-mathematics/mathematical-logic/predicates-and-quantifiers/converse-inverse-and-contrapositive-of-quantified-implications
:::