• edited by
24,646 views
84 84 votes

Which one of the following propositional logic formulas is TRUE when exactly two of $p,q$ and $r$ are TRUE?

  1. $(( p  \leftrightarrow q)  \wedge  r)  \vee  (p \wedge q \wedge  \sim r)$
  2. $( \sim (p \leftrightarrow q) \wedge r)\vee (p \wedge q \wedge \sim r)$
  3. $( (p \to q) \wedge r) \vee (p \wedge q \wedge \sim r)$
  4. $(\sim (p \leftrightarrow q) \wedge r) \wedge (p \wedge q \wedge \sim r) $

16 Answers

Best answer
65 65 votes

$A.$ will be true if $P,Q,R$ are true, $((p ↔q) ∧ r)$ will return true. So "exactly two" is false
$C.$ if only $r$ is true and $p$ and $q$ are false, first part of implication itself will result in true
$D.$ if $r$ is true or false, this returns false due to $r$ and $\neg r$ present in conjunction. So, this is a CONTRADICTION. 

B is the answer. B is true if $p$ is TRUE and $q$ is FALSE or vice verse, and $r$ is true or if $p$ and $q$ are TRUE and $r$ is FALSE.

PS: Actually the question should have been "TRUE ONLY when exactly two of $p,q$ and $r$ are TRUE"

• edited by
51 51 votes
the proposition logic formula is required to be true when any two of the p q r are true .so let's make truth table taking any two of p q r as true

P  Q  R

0   1   1

1    1    0

1     0    1

now write down the POS for above truth table

i.e. P'QR+PQR'+PQ'R  .

option B will satisfy the above POS expression hence answer.
35 35 votes

propositional logic formulas is TRUE when exactly two of p,q and r are TRUE means possibilities are pq or qr or pr to be TRUE 
option A) 
  ((p↔q)∧r)∨(p∧q∧∼r)
=((T↔T)∧r)∨(T∧T∧∼r) ( take p=T and q=T)
=((T)∧r)∨(T∧∼r)
=(r)∨(∼r)
=T 
It doesn't depend upon the value of r, so, if the value of r is T then it also to be T so the condition exactly 2 are T is false. Hence option A is FALSE.

option B)
  (∼(p↔q)∧r)∨(p∧q∧∼r)
=(∼(T↔T)∧r)∨(T∧T∧∼r)  ( take p=T and q=T) 
=(∼(T)∧r)∨(T∧∼r)
=(F∧r)∨(T∧∼r)
=(F)∨(∼r)
=∼r 
so if r=F then this is T so condition exactly 2 are T is true

 (∼(p↔q)∧r)∨(p∧q∧∼r)
=(∼(T↔q)∧T)∨(T∧q∧∼T)  ( take p=T and r=T) 
=(∼(q)∧T)∨(F)
=∼(q)∨(F)
=∼q
so if q=F then this is T so condition exactly 2 are T is true

(∼(p↔q)∧r)∨(p∧q∧∼r)
=(∼(p↔T)∧T)∨(p∧T∧∼T)  ( take q=T and r=T) 
=(∼(p)∧T)∨(F)
=∼(p)∨(F)
=∼p
so if p=F then this is T so condition exactly 2 are T is true

Hence option B is CORRECT.

option C)
   ((p→q)∧r)∨(p∧q∧∼r)
=((T→T)∧r)∨(T∧T∧∼r) ( take p=T and q=T) 
=((T)∧r)∨(T∧∼r)
=(r)∨(∼r)
=T
It doesnt depend upon value of r , so , if value of r is T then it also to be T so the condition exactly 2 are T is false . Hence option C is FALSE.

option D)
    (∼(p↔q)∧r)∧(p∧q∧∼r)
=(∼(T↔T)∧r)∧(T∧T∧∼r)  ( take q=T and r=T) 
=(∼(T)∧r)∧(T∧∼r)  
=(F∧r)∧(T∧∼r)  
=F∧(∼r)
=F  
It doesnt depend upon value of r , so , if value of r is F then it also to be F so the condition exactly 2 are T is false . Hence option D is FALSE.

5 5 votes
Answer is (B) here any two propositional variables can be true and any one of p,q and r can be false .So let's start with elimination:

D is eliminated as D won't be true if p ,q will be true and r is false since there is an and between two expressions.

In C if q is false and p and r is true then the expression:(~p or q)AND r becomes false which doesn't satisfy the condition .

Coming to B it seems to be the right answer even when p is false ,q and r is true and when q is false and p and r is true.

A won't satisfy the condition if anyone p or q is false.

The key is : p<->q is actually (p->q)AND(q->p).

P->q is ~p or q.you just need to substitute T and F and check for condition.
3 3 votes

  Consider 4,6,7 cases and check options.

$B)\\ (\sim (p\leftrightarrow q)\wedge r) \vee (p \wedge q \wedge \sim r)\\$

$4^{th}$ case

$=(\sim (F\leftrightarrow T)\wedge T) \vee (F \wedge T \wedge \sim T)\\ =(\sim F\wedge T) \vee F\\ =(T\wedge T) \vee F\\ =T \vee F\\ =T$

 

  Similarly Check $6^{th} \&\ 7^{th}$ cases.

  Correct Answer: B

Answer:
Position:
Show:

Related questions

78 78 votes
11 answers 11 answers
33.5k
33.5k views
go_editor asked Sep 28, 2014
33,546 views
Consider a $6$-stage instruction pipeline, where all stages are perfectly balanced. Assume that there is no cycle-time overhead of pipelining. When an application is exec...
42 42 votes
6 answers 6 answers
15.2k
15.2k views
go_editor asked Sep 28, 2014
15,225 views
Which one of the following Boolean expressions is NOT a tautology?$((\,a\,\to\,b\,)\,\wedge\,(\,b\,\to\,c))\,\to\,(\,a\,\to\,c)$$(\,a\,\to\,c\,)\,\to\,(\,\sim b\,\to\,(a\...
56 56 votes
11 answers 11 answers
13.1k
13.1k views
gatecse asked Sep 15, 2014
13,062 views
Consider the statement "Not all that glitters is gold”Predicate glitters$(x)$ is true if $x$ glitters and predicate gold$(x)$ is true if $x$ is gold. Which one of the fo...
70 70 votes
9 answers 9 answers
27.8k
27.8k views
go_editor asked Sep 28, 2014
27,769 views
Consider two processors $P_1$ and $P_2$ executing the same instruction set. Assume that under identical conditions, for the same input, a program running on $P_2$ takes $...