Steve Collins
- 45
- 0
Is this your answer to my question? If so, write it as c(a+b), though that is still wrong. The easiest way to check is to draw up two truth-tables, one for the original expression, and another for your simplification. They should agree.Steve Collins said:ac+bc
A’+(AC) = (A’+A)+(A’+C)
It can be simplified using exclusive-OR operations.I've been staring at this one for a while:
~a~bc+~ab~c+a~b~c+abc
Can this be simplified at all?
My mistake, I overlooked a closing parenthesis in your handwriting.Steve Collins said:I have constructed a truth table for the original problem and my answer and they seem to concur.
If you need encouragement: it simplifies to entirely exclusive-ORs.NascentOxygen said:It can be simplified using exclusive-OR operations.
If you are able to get this far, then you are almost done.Steve Collins said:my ultimate goal is to achieve:
a xor b xor c
I have got to my working below, but I am struggling to proceed. I think that I may be going down the wrong path or there is a rule that I cannot find after much searching.
~a~bc+~ab~c+a~b~c+abc
~a(~bc+b~c)+a(~b~c+bc)
~a(b xor c)+a~(b xor c)