I have this truth table:
CD | 00 | 01 | 11 | 10
AB | | | |
------+----+----+----+----
00 | 1 | 1 | 0 | 0
------+----+----+----+----
01 | 0 | 1 | 1 | 0
------+----+----+----+----
11 | 0 | 1 | 1 | 0
------+----+----+----+----
10 | 0 | 1 | 1 | 0
------+----+----+----+----
Now I need the f function... and I already have the result:
f=¬A¬B¬C+BD+AD
...but I really can't get there. I checked my calculations for hours and I can't get that result. Can you help me in understanding the logic? Thans a lot in advance!
This is my calculation step by step: f=A'B'C'D'+A'B'C'D+A'BC'D+A'BCD+ABC'D+ABCD+AB'C'D+AB'CD f=A'B'C'(D'+D)+A'BD(C'+C)+ABD(C+C')+AB'D(C'+C) f=A'B'C'+A'BD+ABD+AB'D............................ f=A'B'C'+BD(A'+A)+AB'D........................................................... f=A'B'C'+BD+AB'D...............................................
Where am I wrong?
– Cholesky Mar 14 '17 at 21:07