Jue Debutat
Jue Debutat

Reputation: 367

How to implement A'B + AB'D with 3 nand gates?

I have simplified the function F = (A+B)(A'+ D')(A' + B') with a k-map and narrowed it down to A'B + AB'D . However, I can't find out how to simplify it down to (at most) 3 nand gates.

Upvotes: 1

Views: 185

Answers (1)

Axel Kemper
Axel Kemper

Reputation: 11322

The simplified expression is:

F = A' B  + A B' D'

Karnaugh map:

enter image description here

Transformed into NAND gates:

F = NAND2(NAND2(A', B), NAND3(A, B', D'))

If desired, the inverted inputs can be created via NAND gates, due to

X' = NAND2(X, X)

Upvotes: 0

Related Questions