in Digital Logic recategorized by
8,977 views
21 votes
21 votes

Identify the logic function performed by the circuit shown in figure.

 

  1. exclusive OR
  2. exclusive NOR
  3. NAND
  4. NOR
  5. None of the above
in Digital Logic recategorized by
9.0k views

4 Comments

Simplify the given circuit:

4
4
edited by

there is one more easy method.

shaded region works as Two level OR And ;

now you need to do :

[x+(x'y')] And [y +(x'y')] = [x+y'] And [y+ x']= xy+x'y'

0
0
@anu shaded portion is same as in the comment posted by me?
1
1
NOR-NOR Realization is same as OR-AND realization.
2
2

2 Answers

20 votes
20 votes
Best answer
$(x+x'y') .(y+x'y') = (x+y')(x'+y) = xy + x'y' = \text{Exclusive-NOR}$
selected by

4 Comments

johnson counter ???????????
0
0
HOW EXCLUSIVE NOR PLZ SIR TELL THIS STEP BY STEP?
0
0
@Arjun sir please modify this answer as question demands for identifying the logic function based on circuit and in answer part explanation for 6.2 and 6.3 is given which is not required.
1
1
For EX-NOR of 2 boolean variable if we simply replace the variables with their complement , the value remains same .

F = a.b + a’.b’ – > replace a with a’ and b with b’ – > a’.b’ + ab

We will be using this theory here . Now , look at the 3 XNOR gates from right . If we simply imagine that the ‘NOT’ from first 2 XNOR and is taken and made as a NOT gate to the inputs of the final XNOR gate then the final XNOR doesn’t change and the other 2 XNOR becomes XOR .

then the boolean formula becomes something like ,

XNOR(XOR(x,XNOR(x,y)), XOR(y,XNOR(x,y)))

= NOT(XOR(XOR(x,XNOR(x,y)) , XOR(y,XNOR(x,y))))

= NOT(XOR(x,XOR(x,y),y,XOR(x,y)))

= XNOR(x,y)
0
0
7 votes
7 votes

ANS: B

(x+(x+y)')' + (y+(x+y)')' )' =xy +x'y'

edited by
Answer:

Related questions