Predicate Logic Negation Question

57 Views Asked by At

What is the equivalent of $\neg (\forall x) (P(x) \vee Q(x))$? Will $P(x) \vee Q(x)$ be negated too? Or is just $\forall x$ negated?

2

There are 2 best solutions below

0
On BEST ANSWER

$$\neg (\forall x)(Px \lor Qx)$$

By quantifier negation (QN) rules, $$(\exists x)\neg(Px \lor Qx)$$

By DeMorgan's Law

$$(\exists x)(\neg Px \land \neg Qx)$$

0
On

the Quantifier Negation Law says that:

$$\neg (\forall x ) \varphi(x) \Leftrightarrow (\exists x) \neg \varphi(x)$$

for any formula $\varphi(x)$

Hence:

$$\neg (\forall x)(P(x) \lor Q(x)) \Leftrightarrow (\exists x)\neg (P(x) \lor Q(x))$$

Now, you can either leave the statement this way, or you can push the negation further in to get:

$$(\exists x)(\neg P(x) \land \neg Q(x))$$

Which one is it? Your choice!