- #1
N123
- 8
- 0
It is possible to express the boolean AND in terms of boolean OR and boolean NOT:
a AND b <=> NOT (NOT a OR NOT b)
Similarly,
a OR b <=> NOT (NOT a AND NOT b)
Why can't we express NOT in terms of OR and AND?
a AND b <=> NOT (NOT a OR NOT b)
Similarly,
a OR b <=> NOT (NOT a AND NOT b)
Why can't we express NOT in terms of OR and AND?