Redirected
edited by
1,423 views
2 votes
2 votes

Let Q(x, y) be the statement “student x has been a contestant
on quiz show y.” Express each of these sentences
in terms of Q(x, y), quantifiers, and logical connectives,
where the domain for x consists of all students at your
school and for y consists of all quiz shows on television
.


a) There is a student at your school who has been a contestant
on a television quiz show.
b) No student at your school has ever been a contestant
on a television quiz show.
c) There is a student at your school who has been a contestant
on Jeopardy and on Wheel of Fortune.
d) Every television quiz show has had a student from
your school as a contestant.
e) At least two students from your school have been contestants
on Jeopardy.

edited by

2 Answers

0 votes
0 votes
a. ∃x ∃y Q(x, y)
b. ∃x ∃y ¬Q(x, y)
c. ∃x (Q(x, Jeopardy) ∧ Q(x, Wheel of Fortune))
d. ∀y ∃x Q(x, y)
e. ∃x ∃y ((x != y) ∧ Q(x, Jeopardy) ∧ Q(y, Jeopardy))

Related questions

0 votes
0 votes
0 answers
4