blob: 66f2c0d785200fc084cbedb056d47a4f581ae2fb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
Z2 = A'BCD + AB'CD + ABC'D + ABCD' + ABCD
the last terms ABCD can be combined with each of the others. Thus, if we make four copies of it and then utilize for times we obtain
Z2 = BCD + ACD + ABD + ABC
No further simplification is possible; this is minimum SOP form
Z1 = A'BCD + AB'CD + ABC'D + ABCD'
In case of Z1 no simplification is possible it has 16 literals whereas expression for Z2 only has 12 literals.
|