5

All politicians are liars : $\forall x(\operatorname{pol}(x) → \operatorname{liar}(x))$

Some politicians are liars : $\exists x(\operatorname{pol}(x) \land \operatorname{liar}(x))$

No politicians are liars : $\forall x(\operatorname{pol}(x) → ¬\operatorname{liar}(x))$

Some politicians are not liars : $\exists x(\operatorname{pol}(x) \land ¬\operatorname{liar}(x))$

So, do we just use 'and' for $\exists$ statements and 'implies' for $\forall$ statements?

ryang
  • 44,428

3 Answers3

2

There is no such requirement from formal logic, so I propose to look at the question semantically.

A universal quantifier ("for all") applies to all entities in the universe. You would normally not apply a predicate $\hbox{liar}(x)$ to all entities, but only to a well-circumscribed subcollection, like politicians. Otherwise the predicate itself becomes meaningless. There are two ways to formalize this restriction to a subcollection: as an "if/then", or as an "or not" (to exclude all non-politicians). While both approaches are logically equivalent, the if/then speaks more directly to the human reader's natural sense of language.

An existential quantifier guarantees that we are already talking (within the brackets) about one specific entity: no more need to restrict to a subset.

Of course, every existential quantifier is equivalent to the negation of a universal quantifier, and vice versa. Negating an existential "and" will automatically provide a universal "or" which can then be converted into a universal "if/then".

Existential quantifiers need not include an "and" to be semantically meaningful. It could be useful just to know that there exists a politician. The reason why you encounter these "and" operators in your textbook examples of existential propositions is that they can be used to deny a related universal proposition.

Lieven
  • 2,462
0

So, do we just use 'and' for ∃ statements and 'implies' for ∀ statements?

For the canonical categorical propositions (as illustrated by your examples), yes.

But in general, no:

  • $$\forall x (Ax \land Bx)\tag1$$ $$\forall x (Ax \to Bx)\tag2$$

    Sentence (1) is simply a stronger assertion than sentence (2): the universes that satisfy sentence (1) is a proper subset of the universes that satisfy sentence (2).

  • $$\exists x (Ax \land Bx)\tag3$$ $$\exists x (Ax \to Bx)\tag4$$

    Similarly, sentence (3) is simply a stronger assertion than sentence (4).

ryang
  • 44,428
0

So, do we just use 'and' for $\exists$ statements and 'implies' for $\forall$ statements?

No rule says you must, but weird things can arise otherwise, things you may want to avoid.

Suppose, for example, that like many predicates, there exists $x$ such that $P(x)$ is false. ($P$ may not be of much use otherwise.) Then there exists $x$ such that "$P(x)\implies Q$" for absolutely any proposition $Q$.

$~~~~~~\exists x: \neg P(x) \implies \exists x: [P(x) \implies Q]$

Similarly...

$~~~~~~\exists x: \neg P(x) \implies \neg \forall x: [P(x) \land Q]$

Moral of the story: Proceed with caution when confronted by:

$~~~~~~\exists x: [P(x) \implies Q]~$ or $~\forall x: [P(x) \land Q]$.

(Formal proofs available on request.)