edited by
12,210 views
57 votes
57 votes

Let $p, q, r$ denote the statements ”It is raining”, “It is cold”, and “It is pleasant, respectively. Then the statement “It is not raining and it is pleasant, and it is not pleasant only if it is raining and it is cold” is represented by

  1. $(\neg p \wedge r) \wedge (\neg r \rightarrow (p \wedge q))$
  2. $(\neg p \wedge r) \wedge ((p \wedge q) \rightarrow  \neg r)$
  3. $(\neg p \wedge r) \vee ((p \wedge q) \rightarrow  \neg r)$
  4. $(\neg p \wedge r) \vee (r \rightarrow (p \wedge q))$
edited by

10 Answers

1 votes
1 votes

Translation of each formula into english statements :

(p’ $\wedge$ r) :- (not p) and r :- It is not raining and it is pleasant.

r’ → (p $\wedge$ q) :- (If not r, then p and q) $\equiv$ (not r only if p and q) $\equiv$ It is not pleasant only if it is raining and it is cold.

(p $\wedge$ q) → r’ :- (If p and q, then not r) $\equiv$ (p and q only if not r) $\equiv$ It is raining and it is cold only if it is not pleasant.

r → (p $\wedge$ q) :- (If r, then p and q) $\equiv$ (r only if p and q) $\equiv$ It is pleasant only if it is raining and it is cold.

  1. It is not raining and it is pleasant, and it is not pleasant only if it is raining and it is cold
  2. It is not raining and it is pleasant, and it is raining and it is cold only if it is not pleasant
  3. “Either It is not raining and it is pleasant, or it is raining and it is cold only if it is not pleasant
  4. “Either It is not raining and it is pleasant, or it is pleasant only if it is raining and it is cold
0 votes
0 votes

p = ”It is raining

q =  “It is cold

r = “It is pleasant

It is not raining and it is pleasant = ~p ∧ r

x only if y can be written as x→y

 it is not pleasant only if it is raining and it is cold) = ~r(p ∧ q)

“(It is not raining and it is pleasant), and it is not pleasant only if (it is raining and it is cold)” =   (¬p∧r)∧(¬r→(p∧q))             

So Option A             

 

Answer:

Related questions

30 votes
30 votes
8 answers
1
48 votes
48 votes
10 answers
2
47 votes
47 votes
6 answers
4
Madhav asked Feb 14, 2017
17,941 views
Consider the recurrence function$$T(n) = \begin{cases} 2T(\sqrt{n})+1, & n>2 \\ 2, & 0 < n \leq 2 \end{cases}$$Then $T(n)$ in terms of $\Theta$ notation is$\Theta(\log \l...