recategorized by
397 views
5 votes
5 votes

Which of the following is/are correct formalization of the sentence? (Mark all the appropriate choices)

" Every student will do well in some examination"

Here, $dowell(x,y)$ means student $x$ will do well in examination $y.$

  1. $\forall x(student(x) \implies \exists y(exam(y) \wedge dowell(x,y)))$
  2. $\forall x(student(x) \implies \exists y(exam(y) \implies dowell(x,y)))$
  3. $\neg \exists x(student(x) \implies \exists y(exam(y) \wedge dowell(x,y)))$
  4. $\neg \exists x(student(x) \wedge \neg \exists y(exam(y) \implies dowell(x,y)))$
recategorized by

1 Answer

3 votes
3 votes

Option A is the  only correct representation of the given sentence.

  1. $\forall x(student(x) \implies \exists y(exam(y) \wedge dowell(x,y)))$
    For every student there is an examination in which he will do well.
  2. $\forall x(student(x) \implies \exists y(exam(y) \implies dowell(x,y)))$
    For every student there is a non examination (becomes trivially true) or an examination in which where he will do well.
  3. $\neg \exists x(student(x) \implies \exists y(exam(y) \wedge dowell(x,y)))$
    Everyone is a student (obviously false) or there exist a non-student who will do well in some examination
  4. $\neg \exists x(student(x) \wedge \neg \exists y(exam(y) \implies dowell(x,y)))$
    There does not exist a student such that, either everything is an examination (obviously false) or there exists a non-exam in which he will do well

In examination one can easily identify that options B,C and D are not correct even without fully getting the English meaning.

edited by
Answer:

Related questions

8 votes
8 votes
1 answer
1
gatecse asked Jan 17, 2021
314 views
The minimum value of the function $$f(x) = \frac{x^2}{2} - x$$ occurs at (Mark all the appropriate choices)$x = -1$$x = 1$$x = 0$$ x = \frac{1}{\sqrt{2}}$
5 votes
5 votes
1 answer
3
gatecse asked Jan 17, 2021
221 views
Which of the following is/are the regular grammar for the given finite automata? (Mark all the appropriate choices)$S \rightarrow aS \\S \rightarrow bS \\S \rightarrow a ...