how to draw a circuit diagram with only using nor and not gates?

133 views Asked by At

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 !

1

There are 1 answers

2
AhmadWabbi On BEST ANSWER

~(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))