retagged ago by
445 views
8 votes
8 votes

Consider the following predicates.

  • $\text{Rabbit}(x) = x$ is a rabbit.
  • $\text{Cute}(x) = x$ is cute.

Consider the following statement $\text{E},$ where the domain of every variable is set of all animals in a jungle $\text{J}.$
$\text{E} = \exists x ( \text{Rabbit}(x) \rightarrow \text{Cute}(x) )$

If statement $\text{E}$ is false, then which of the following is necessarily true?

  1. There is no animal other than rabbits in the jungle $\text{J}.$
  2. There is no cute animal in the jungle $\text{J}.$
  3. There is no cute rabbit in jungle $\text{J}.$
  4. There is some rabbit who is not cute in jungle $\text{J}.$
retagged ago by

1 Answer

Best answer
15 votes
15 votes
Statement E is given False, So ¬E is True.

¬E=¬∃x(Rabbit(x)→Cute(x))

    =∀x(Rabbit(x)∧¬Cute(x))

Interpretation of ¬E will be ”Everyone in the Jungle is Rabbit and it is not cute”.

From ¬E, We can clearly say options A, B, and C are necessarily True.

Option D is also True because ∀x E(x) → ∃xE(x).  So if we say all rabbits are not cute then we can also say that some rabbits are not cute.
selected by
Answer:

Related questions

5 votes
5 votes
1 answer
3