| xyz | f1 f2 | wxyz | f1 f2 | |
| ----- | ----- | ----- | ----- | |
| 0-0- | 10 | 000- | 11 | |
| -10- | 10 | into: | -10- | 10 |
| 1-11 | 11 | 1-11 | 11 | |
| 00-- | 01 | 0-1- | 01 | |
| 0-1- | 01 | |||
Solution:
| Move 1 | ||
| 0-0- | 10 | reduced in input x to | 000- | 10 |
| Move 2 | ||
| 00-- | 01 | reduced in input y to | 000- | 01 |
| Move 3 | (could pick either of the above rows) | |
| 000- | 01 | expanded in the output to | 000- | 11 |
| vwxyz | fgh |
| --------- | ----- |
| 1-0-1 | 101 |
| 001-- | 001 |
| -111- | 110 |
| 01--0 | 111 |
| 110-0 | 010 |
| 1010- | 101 |
First select only the rows with output h equal to 1.
| vwxyz | h |
| --------- | ----- |
| 1-0-1 | 1 |
| 001-- | 1 |
| 01--0 | 1 |
| 1010- | 1 |
| vwxyz | h |
| --------- | --- |
| 001-- | 1 |
| 01--0 | 1 |
| wz | h |
| ---- | --- |
| 0- | 1 |
| 10 | 1 |
b) For which variables, if any, is the function monotonically
increasing? y and z
c) For which variables, if any, is the function monotonically
decreasing? w and x
d) For which variables, if any, is the function non-monotonic? None