[Steps provided by solution manual] Implement Boolean function, F using no more than two NOR gates.
- F = AC' + A'D' + B'CD'
- F' = D + ABC
- F = [D + ABC]' = [D + (A' + B' + C']')]'
Hi. I had this as a homework problem and I don't understand how the function complemented from F = AC' + A'D' + B'CD' to D + ABC.
What I had is the following:
F'=(AC' + A'D' + B'CD')' = (AC')'(A'D')'(B'CD')' =(A'+C)(A+D)(B+C'+D)
I have no idea how to I move on to next step any further. Am I missing any boolean theorems?
Also, I would like to know why the solution manual complemented the function in the first place.