is it possible to simply this Boolean function
(!A*!B*!C) + (!A*!B*C*!D) + (A*!B*!C*D) + (A*!B*C*!D) + (A*B*!C*!D)
|
is it possible to simply this Boolean function
|
|||||||
|
|
I came up with this:
Messy to look at, but there are fewer terms. |
|||
|
|
|
Look at the truth table:
It looks like you can take the three parts of the table where X = 1 and simplify this to the sum of three terms:
Note that I've use XOR (^) in the second term. If you can't use XOR then you'll need to expand the second term a little. You can reduce the number of terms further by factoring out either
or:
|
||||
|
|