Negating an existential quantifier over a logical conjunction?

2.7k Views Asked by At

I was wondering how one would negate an existential quantifier over a logical conjunction. As an example, suppose that I have the statement: "There exists a car that is white and doesn't use diesel".

I am recognizing this as saying: $\exists x \in C: \ (P(x) \land Q(x))$, where $C$ is the set of all cars, and $P$ is the statement that "a car is white" while $Q$ is the statement "doesn't use diesel".

My question is if the statement can be represented using these quantifiers, and if so, what the negation would be. Would the negation be:

$$ \neg \exists x \in C: \ (P(x) \land Q(x)) \implies \forall x \in C \ : \ \neg P(x) \lor \neg Q(x) $$

?

In other words, the negation is: "All cars are either not white or use diesel"? Thanks.

2

There are 2 best solutions below

0
On BEST ANSWER

More briefly and idiomatically, the negation is:

All white cars use diesel.

That's because $(\neg A \lor B) \equiv (A\to B)$.

0
On

Yes, this is correct.

Negating the statement corresponds to negation of the whole formula (i.e. putting the negation in front of the existential quantifier).

Saying "It is not true that there exists a car which is white and doesn't use diesel" translates as

$\neg \exists x \in C : (P(x) \land Q(x))$

which is, by law of quantifier negation, equivalent to

$\forall x \in C : \neg (P(x) \land Q(x))$

and can again, by one of DeMorgan's laws, be transformed to to

$\forall x \in C : (\neg P(x) \lor \neg Q(x))$

Statements of the form $\neg \exists x P(x)$ can always be rewritten as $\forall x \neg P(x)$, i.e. "There is no thing to which the property applies" is equivalent to "To all things the property does not apply".