I am looking to write an expression from English to a logical expression, then negating that expression.
Give the expression
Some drivers do not obey the speed limit
Let
s(x) = x obeys the speed limit
Let the domain be drivers.
We can express the expression as such
∃x¬S(x)
Then we want to negate the expression.
The way I approached it is
-∃x¬S(x)
But in this document (#3 (a)) it states that the solution is
∀xS(x)
which is making me scratch my head.
The document states
¬∃x¬S(x) ≡ ∀xS(x)
but what law is this? This does not follow DeMorgan's law as that one states
¬∃xQ(x) ≡ ∀x ¬Q(x)
Am I missing something? How do we reach ¬∃x¬S(x) ≡ ∀xS(x)? What law is this?
$$\neg \exists x \ \neg S(x) \overset{Quantifier \ DeMorgan}{=} \forall x \ \neg \neg S(x) \overset{Double \ Negation}{=} \forall x \ S(x)$$