Domanda

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.

È stato utile?

Soluzione

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.

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top