I have a bit of a problem with this question:
Express the following statement using predicate function(s), existential or universal quantifier, and/or negation. “not every student in this class will pass the Discrete Mathematics”.
my solution is
-(∀ (( Student(x) && Class(DM,x)) -> Pass(DM,x)) )
is my negative forAll and my && between Student and Class correct?
Thx for any help :)
How about:
$(\exists x\in S)(\sim \operatorname{Pass}(x))$
Where $S$ is the set of students and $\operatorname{Pass}(x)$ is "$x$ passes discrete math".