I have difficulties with one equation. It's an XOR gate with 4 inputs.
F(A,B,C,D)=(A⊕B)C+(B⊕C)(A⊕C)
'B' from the second bracket has a line above it , so does the 'A' from the third. I did the truth table,but once transferred to Karnaugh map, the result is very hard to work with:
0 1 0 1 1 0 1 0 0 1 0 1 1 0 1 0
Using it, it's very hard to find the minimal disjunctive normal form,since I can't combine any of the TRUE's . I'm not sure if doing each one seperately is the correct way to do it ,since we haven't studied that yet in uni.How to proceed?
Truth table:
a b c d | XOR | OP |
|---------+-----+----|
| 0 0 0 0 | 0 | 0 |
| 0 0 0 1 | 1 | 1 |
| 0 0 1 0 | 1 | 1 |
| 0 0 1 1 | 0 | 0 |
| 0 1 0 0 | 1 | 1 |
| 0 1 0 1 | 0 | 0 |
| 0 1 1 0 | 0 | 0 |
| 0 1 1 1 | 1 | 0 |
| 1 0 0 0 | 1 | 1 |
| 1 0 0 1 | 0 | 0 |
| 1 0 1 0 | 0 | 0 |
| 1 0 1 1 | 1 | 0 |
| 1 1 0 0 | 0 | 0 |
| 1 1 0 1 | 1 | 0 |
| 1 1 1 0 | 1 | 0 |
| 1 1 1 1 | 0 | 0 |