1

I am approaching with double invert, with ~(~Y) but cannot find the way to draw a circuit diagram of Y=A(B+CD).

Any advice would really be appreciated !

dedek
  • 7,981
  • 3
  • 38
  • 68
jwkoo
  • 2,393
  • 5
  • 22
  • 35

1 Answers1

1

~(X nor Y) is (X or Y)

(~X nor ~Y) is (X and Y)

~(~X) is X

So,

CD = (~C nor ~D)

B+CD = ~(B nor (~C nor ~D))

A(B+CD) = ~A nor ~(~(B nor (~C nor ~D))) = ~A nor (B nor (~C nor ~D))

AhmadWabbi
  • 2,253
  • 1
  • 20
  • 35