(a) P(x): a student has chatted with exactly one other students.
∃x∈{class}P(x)
¬∃x∈{class}(P(x))=∀x∈{class}(¬P(x))
All students in the class have not chatted with exactly one other student.
(b) Q(x,y) : student has solved at least 1 exercise from y section
∀x∈{class}∀y∈{sectionsofbook}(¬Q(x,y))
¬(∀x∈{class}∀y∈{sectionsofbook}(¬Q(x,y))=∃x∈{class}∃y∈{sectionsofbook}(Q(x,y))
There is a student in class and there is a section from book from which he/she solved at least one exercise.
(c) P(x): actor has been in a movie with Kevin Bacon
Q(x): actor has been in a movie with someone who has been in a movie with Kevin Bacon.
∀x∈{actors}(P(x)∨Q(x))
¬(∀x∈{actors}(P(x)∨Q(x)))=∃x∈{actors}(¬P(x)∧¬Q(x))
There is an actor that hasn't been in a movie with Kevin Bacon and hasn't been in a movie with someone who has been in a movie with Kevin Bacon.
Comments