in Digital Logic edited by
405 views
0 votes
0 votes

Which of the following circuits are equivalent (i.e., they produce the same output for all inputs)?

$\text{F} = ab + bc + ca$

$\text{G} = (a+b)(b+c)(c+a)$

$\text{H} = \text{NAND(NAND(a,b), NAND(b,c),NAND(c,a))} $

  1. $\text{F}$ and $\text{H}$
  2. $\text{F}$ and $\text{G}$
  3. $\text{F, G}$ and $\text{H}$
  4. $\text{G}$ and $\text{H}$
in Digital Logic edited by
by
405 views

2 Comments

Hi Lakshman

How many technical questions are there in UPPCL AE CSE 2018 exam?
0
0
I added all questions please check it once.
0
0

1 Answer

1 vote
1 vote

F = ab + bc + ca

 

G = (a + b)(b + c)(c + a)

   =  (b + ac)(c + a)                                                                    Distributive Law [ (x+y)(x+z) = x + yz]

   =  bc + ba + ac*c +ac*c

   =  bc+ ba +ac +ac

   =  ab + bc + ca

NAND- NAND Realization is Equivalent to AND-OR Realization.

H =  NAND [NAND(a,b), NAND(b,c), NAND(c,a)]

    =  OR[AND(a,b), AND(b,c), AND(c,a)]

    =  OR[ab, bc, ca]

    =   ab + bc + ca 

So, F,G,H are Equivalent.

        

Answer: