Reputation: 367
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
Reputation: 11322
The simplified expression is:
F = A' B + A B' D'
Karnaugh map:
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