retagged by
8,765 views
9 9 votes

Given that

$B(a)$ means “$a$ is a bear”

$F(a)$ means “$a$ is a fish” and

$E(a,b)$ means “$a $ eats $b$”

Then what is the best meaning of

$\forall x [F(x) \to \forall y(E(y,x)\rightarrow b(y))]$

  1. Every fish is eaten by some bear
  2. Bears eat only fish
  3. Every bear eats fish
  4. Only bears eat fish

3 Answers

11 11 votes

Let us translate the given statement :

For every x,if x is a fish, then for every y, if y eats x then y is bear..

This is enforcing the condition that every animal that eats a fish is a bear.. So only option d matches..


other options:

option a:Every fish is eaten by some bear

$\forall x(F(x)\Rightarrow\exists y(B(y)\wedge E(y,x)))$

ie. for all x, if x is a fish, then there is a y such that y is a bear and y eats x.

option b:Bears eat only fish

$\forall x(B(x)\Rightarrow\forall y (E(x,y)->F(y))$

i.e for every x, if x is a bear,then for all y ,if x eats y, then y is a fish.

option c:Every bear eats fish

$\forall x(B(x)\Rightarrow\exists y (F(y)\wedge E(x,y))$

for all x, if x is a bear, then there is a y such that, y is a fish and x eats y.

edited by
0 0 votes

From the translation of the given statement

For every x,if x is a fish, then for every y, if y eats x then y is bear.

It appears that

Every Bear eats Fish.

Hence the option C is correct.

Answer:
Position:
Show:

Related questions

7 7 votes
3 3 answers
7.1k
7.1k views
Satbir asked Jan 13, 2020
7,140 views
The following circuit compares two $2$-bit binary numbers, $X$ and $Y$ represented by $X_1X_0$ and $Y_1Y_0$ respectively. ($X_0$ and $Y_0$ represent Least Significant Bit...
4 4 votes
2 2 answers
4.2k
4.2k views
Satbir asked Jan 13, 2020
4,221 views
For the distributions given below:Which of the following is correct for the above distributions?Standard deviation of $A$ is significantly lower than standard deviation o...
5 5 votes
4 4 answers
9.2k
9.2k views
Satbir asked Jan 13, 2020
9,203 views
The hardware implementation which provides mutual exclusion isSemaphoresTest and set instructionsBoth optionsNone of the options
7 7 votes
4 4 answers
6.2k
6.2k views
Satbir asked Jan 13, 2020
6,230 views
Checksum field in TCP header isones complement of sum of header and data in bytesones complement of sum of header, data and pseudo header in $16$ bit wordsdropped from $\...