- #1
geft
- 148
- 0
Simplify the following Boolean logic:
Here's my working:
Here's the answer given in the book:
Is there anything wrong with my working? Can Boolean simplification have different answers?
Code:
/ABC + A/B/C + /A/B/C + A/BC + ABC
Here's my working:
Code:
= BC(A + /A) + /B/C(A + /A) + A/BC
= BC + /B/C + A/BC
= /B/C + C(B + A/B)
= /B/C + C(A + B)
= /B/C + AC + BC
Here's the answer given in the book:
Code:
BC + A/B + /B/C
Is there anything wrong with my working? Can Boolean simplification have different answers?