Say I have the following boolean expression:
(A^B^C) v (~A^~C)
How could I express that using only AND (^) and NOT (~)? I don't want the answer, just how I would go about doing it.
Since this question is showing up as unanswered, I'll echo the others and say that De Morgan's law (A v B) == ~(~A ^ ~B)
will work.