retagged by
10,778 views
40 40 votes

Let $\#$ be the binary operator defined as

$X\#Y = X'+Y'$ where $X$ and $Y$ are Boolean variables.

Consider the following two statements.

  • $(S_1)$ $(P\#Q)\#R = P\#(Q\#R)$
  • $(S_2)$ $Q\#R = (R\#Q)$

Which are the following is/are true for the Boolean variables $P, Q$ and $R$?

  1. Only $S_1$ is true
  2. Only $S_2$ is true
  3. Both $S_1$ and $S_2$ are true
  4. Neither $S_1$ nor $S_2$ are true

5 Answers

Best answer
43 43 votes
Answer: B

$(P\#Q)\#R=(P'+Q')\#R$
$\quad \quad =P.Q+R'$

whereas,
$P\#(Q\#R)=P'+(Q\#R)'$
$\quad \quad=P'+(Q'+R')'$
$\quad \quad=P'+QR$
edited by
20 20 votes
X#Y=X'+Y'

      =(XY)'     (DEMORGAN'S LAW)

so this # operatoe is nand operator

Nand is commutative but not associative. So B is the answer
6 6 votes

It is given that 

X#Y = X'+Y' where X and Y are Boolean variables.

Consider the following two statements.

(S1) is

(P#Q)#R = P#(Q#R)

L.H.S is  (P#Q)#R                                                                            

=(P'+Q')#R   (Using given relation)                                             

=(P'+Q')'#R=> P.Q+R' (Using Demorgans theorem )

    R.H.S is  P#(Q#R)

 =P#(Q'+R')

=P'+(Q'+R')' => P'+Q.R

L.H.S !=R.H.S

So S1 is not true.

(S2) is  Q#R = (R#Q)      

L.H.S Q#R=Q'+R'

and R.H.S is R#Q=R'+Q'

so L.H.S=R.H.S

So S2 is true.

                                                         

0 0 votes
ANSWER: B only S2 is true

S1 : (P#Q)#R = P#(Q#R)

       (P'+Q')#R = P#(Q'#R')

       (P'+Q')'+R' != P'+(Q'+R')'    
      S1 is not true (it is not associative)

S2 : Q#R = R#Q

       Q'+R' = R'+Q'
      S2 is true (it is commutative)

       

 
0 0 votes
S1 :

(P#Q)#R = (P'+Q')#R = (P'+Q')'+R'

P#(Q#R) = P#(Q'+R') = P'+(Q'+R')'

It clearly sees that it is not true.

S2 :

Q#R  = Q'+R'

R#Q = R'+Q'

clearly sees that Q'+R' == R'+Q' .

so only S2 TRUE.thank you
Answer:
Position:
Show:

Related questions

64 64 votes
8 answers 8 answers
20.9k
20.9k views
go_editor asked Feb 15, 2015
20,859 views
Let $R$ be a relation on the set of ordered pairs of positive integers such that $((p,q),(r,s)) \in R$ if and only if $p-s=q-r$. Which one of the following is true about ...
76 76 votes
5 answers 5 answers
20.3k
20.3k views
go_editor asked Feb 14, 2015
20,292 views
Suppose $U$ is the power set of the set $S = \{1, 2, 3, 4, 5, 6\}$. For any $T \in U$, let $|T|$ denote the number of elements in $T$ and $T'$ denote the complement of $T...
35 35 votes
3 answers 3 answers
11.6k
11.6k views
Misbah Ghaya asked Feb 13, 2015
11,602 views
The binary operator $\neq$ is defined by the following truth table.$$\begin{array}{|l|l|l|} \hline \textbf{p} & \textbf{q}& \textbf{p} \neq \textbf{q}\\\hline \text{0} & ...
50 50 votes
4 4 answers
11.1k
11.1k views
Kathleen asked Oct 4, 2014
11,092 views
On the set $N$ of non-negative integers, the binary operation ______ is associative and non-commutative.