blob: a7378e95486e19f830b415d7dc3d22a437d5f8c3 (
plain)
1
2
3
4
5
6
7
8
9
10
|
f = (A + B + C) ( A' + B') = AB' + A'( B + C) = AB' + A'B + A'C
f = AA' + AB' + BA' + BB' + CA' + CB'
f = AB' + A'B + A'C + B'C
The SOP form of given expression is displayed
The term B'C can then be removed because it is the consensus of AB' and A'C
|