1

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.

Jens Björnhager
  • 5,632
  • 3
  • 27
  • 47
Doug Smith
  • 29,668
  • 57
  • 204
  • 388

1 Answers1

2

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.

Chris Culter
  • 4,470
  • 2
  • 15
  • 30