Why can't we use implication for the existential quantifier?

20.1k Views Asked by At

I'm not quite sure that I really understand WHY I need to use implication for universal quantification, and conjunction for existential quantification.

Let $F$ be the domain of fruits and

$$A(x) : \text{is an apple}$$

$$D(x) : \text{is delicious}$$

Let's say: $$\forall{x} \in F, A(x) \implies D(x)$$ Is correct and means all apples are delicous.

Whereas, $$\forall{x} \in F, A(x) \land D(x)$$ is incorrect because this would be saying that all fruits are apples and delicious which is wrong.

But when it comes to the existential quantifier: $$\exists{x} \in F, A(x) \land D(x)$$ Is correct and means there is some apple that is delicious.

Also, $$\exists{x} \in F, A(x) \implies D(x)$$ Is incorrect, but I cannot tell why. To me it says there is some fruit that if it is an apple, it is delicious.

I cannot tell the difference in this case, and why the second case is incorrect?

5

There are 5 best solutions below

10
On BEST ANSWER

To me it says there is some fruit that if it is an apple, it is delicious.

This is absolutely correct. There exists a fruit such that if it is an apple, then it is delicious. Let $x$ be such a fruit. We have two cases for what $x$ may be here:

  • $x$ is an apple. Then $x$ is delicious. This is the $x$ you are searching for.
  • $x$ is not an apple. Now the statement "if $x$ is an apple, then $x$ is delicious" automatically holds true. Since $x$ is not an apple, the conclusion doesn't matter. The statement is vacuously true.

So the statement $\exists{x} \in F, A(x) \implies D(x)$ fails to capture precisely your desired values of $x$, i.e., apples which are delicious, because it also includes other fruits.

0
On

It's not that $\exists x\, (F(x) \wedge (A(x) \to D(x)))$ is incorrect -- it isn't, for your interpretations of $F$, $A$ and $D$. It's just not usually what you mean to say: it's weaker (more broad, true of more things $x$) than $\exists x (F(x) \wedge (A(x) \wedge D(x)))$ – it can also be true of some pear $x$, for example.

The general rule (or, rule of thumb) that "$\forall$ goes with $\to$, and $\exists$ goes with $\wedge$" arises from how these two statements are rendered in first order logic:

  1. All $A$s are $B$s
  2. Some $A$s are $B$s

The analysis of these statements and how to reason with groups of them goes all the way back to (most famously) Aristotle.

  1. is rendered as $\forall x \,(A(x) \to B(x))$,
  2. is rendered as $\exists x\,(A(x) \wedge B(x))$.
0
On

$\forall x\in F (A(x)\to D(x))$ versus $\exists x\in F(A(x)\wedge D(x))$


$\forall x\in F (A(x)\to D(x))$ says "any fruit, if it is an apple, then it is delicious," or simply, "apples are delicious fruit".

$\forall x\in F (A(x)\wedge D(x))$ says "any fruit, is an apple and is delicious", or simply "all fruit are delicious apples."

Which says what you mean?


$\exists x\in F(A(x)\wedge D(x))$ says "some fruits, is an apple and is delicious," or simply "there is a delicious apple".

$\exists x\in F (A(x)\to D(x))$ says "there is some fruit, that if it were an apple then it would be delicious". Witness this mouldy orange.

Which says what you mean?

0
On

I'm not quite sure that I really understand WHY I need to use implication for universal quantification, and conjunction for existential quantification.

Modifying your analysis a bit, let $A$ be the set of apples, and $D$ the set of delicious things.

$\forall x: [x\in A \implies x\in D]$ means all apples are delicious. Often written $\forall x\in A :x\in D$

$\forall x: [x\in A \land x\in D]$ means everything is a delicious apple.

$\exists x:[x\in A \land x\in D]$ means there exists at least one delicious apple. Often written $\exists x\in A:x\in D$, or equivalently $\exists x\in D: x\in A$

What does $\exists x:[x\in A \implies x\in D]$ mean? It is equivalent to $\exists x:[x\notin A \lor x\in D]$.

For a given $x$ then, either of the following possibilities that will satisfy this condition:

  1. $x\in A \land x\in D$, i.e. there exists at least one delicious apple (as above)

  2. $x\notin A\land x\in D$, i.e. there exists at least one non-apple that is delicious

  3. $x\notin A\land x\notin D$, i.e. there exists at least one non-apple that is not delicious

So, the implication allows for more possibilities than the conjunction. In particular, the implication allows for the possibility that there are no apples. The conjunction does not.

Furthermore, $\exists x: [x\in A \implies x\in D]$ is a set theoretic variation of the so-called Drinker's Paradox. Here's where it gets crazy! For any set $A$ and any proposition $P$, we can prove using ordinary set theory that $$\exists x: [x\in A \implies P]$$

You could even prove, for example, that $$\exists x: [x\in A \implies x\notin A]$$ So, to avoid confusion, you would probably want to avoid such constructs in mathematics. For a formal development, see The Drinker's Paradox: A Tale of Three Paradoxes at my blog.

0
On

$\exists x \in F, A(x) \implies D(x)$ is equivalent to $\exists x \in F, \neg A(x) \lor D(x)$ which is true for:

  1. $x$ is not an apple, we don't care whether it is delicious or not. The statement is true.
  2. $x$ is an apple and it is delicious.

We want to express "There is an apple which is delicious". Previous statement will capture other fruits along with delicious apples. That's why $\exists x \in F, A(x) \land D(x)$ is more accurate which says "There is fruit which is an apple and delicious".