1,908 views
1 1 vote

1 Answer

Best answer
2 2 votes

First convert this to have better understanding.
"No female like a male."
$\forall x$ $\forall y$ ( (Female(x) ^ Male(y)) $\rightarrow$ ~like(x, y) )


"No female like a male who doesn't like all vegetarian".
$\forall x$ $\forall y$ $\forall z$ ( (Female(x) ^ Male(y) ^ Veg(z) ^ ~like(y, z) )  $\rightarrow$ ~like(x, y) ).


$\forall x$ $\forall y$ $\forall z$ ( ~(Female(x) ^ Male(y) ^ Veg(z) ^ ~like(y, z) )  $\vee$ ~like(x, y) ). 
As (P $\rightarrow$ Q) == (~P v Q)
Also ~(~P) = P. So we can put double negation, it can't affect.

$\forall x$ $\forall y$ $\forall z$ ~(~ ( ~(Female(x) ^ Male(y) ^ Veg(z) ^ ~like(y, z) )  $\vee$ ~like(x, y) ) ).
From here take one negation out of quantifiers and one negation inside statement. we can get this.
 ~ ($\exists x$ $\exists y$ $\exists z$ ( (Female(x) ^ Male(y) ^ Veg(z) ^ ~like(y, z) ) ^ like(x, y)).

So ans: C

selected by
Position:
Show:

Related questions

3 3 votes
1 1 answer
759
759 views
rahul sharma 5 asked Jan 24, 2018
759 views
Which of the following is true about below predicate logic P?A) P is satisfiableB) P is tautologyC) P is contradictionD) NoneThis expression in the end reduces to:-~ ∀z {...
2 2 votes
2 2 answers
2.5k
2.5k views
rahul sharma 5 asked Nov 16, 2017
2,495 views
Consider $F(P), Q(P), L(P)$ denotes statements “Printer $P$ is out of service”, “Print job $P$ is queued” and “Print job $P$ is lost” respectively. Then statement “If a j...
1 1 vote
2 answers 2 answers
1.4k
1.4k views
rahul sharma 5 asked Jul 28, 2017
1,447 views
( ∃x(P(x))→∃x(Q(x)) ) → ( ∃x(P(x)→Q(x)) )( ∃x(P(x)→Q(x)) ) → ( ∃x(P(x))→∃x(Q(x)) )Which of the above is valid and for not valid please give me counter example where LHS i...
0 0 votes
1 1 answer
1.7k
1.7k views
rahul sharma 5 asked Jun 18, 2017
1,716 views
Represent using logic connectives :- 1. "Whenever there is an active alert, all queued messages are transmitted."Given answer is :-∃x(Alert(x)∧Active(x))→∀y((Message(y)∧Q...