I'm not sure whether this is the best place to ask this, but is the XOR binary operator a combination of AND+NOT operators?
-
0 NAND 0 = 1 but 0 XOR 0 = 0 – Shub Oct 17 '23 at 14:00
6 Answers
Yes. In fact, any logical operation can be built from the NAND operator, where
A NAND B = NOT(A AND B)
See for instance http://en.wikipedia.org/wiki/NAND_logic, which gives
A XOR B = (A NAND (A NAND B)) NAND (B NAND (A NAND B))
Digression: There is a story about certain military devices being designed using only NAND gates, so that only one part needs to be certified, stocked as spares, etc. I don't know whether it's actually true.
- 101,664
-
3
-
4Of course, that can be simplified to (NOT(A AND B)) AND (NOT(NOT A AND NOT B)) :p – reavowed May 11 '11 at 16:31
-
Which, of course, actually gives you an obvious pattern to convert an arbitrary binary operator into a combination of ANDs and NOTs, without having to go through NAND. – reavowed May 11 '11 at 16:33
-
6
-
3Most flash drives are made entirely from NAND gates: http://www.tech-faq.com/nand-drive.html – BlueRaja - Danny Pflughoeft May 11 '11 at 20:43
Here are two similar but different versions derived using a OR b = NOT(NOT a AND NOT b), though there are others
p XOR q = ( p AND NOT q ) OR ( NOT p AND q )
= NOT ( NOT ( p AND NOT q ) AND NOT ( NOT p AND q ) )
or
p XOR q = ( p OR q ) AND NOT ( p AND q )
= NOT ( NOT p AND NOT q ) AND NOT ( p AND q )
- 169,616
-
one too many NOTs for my liking.. But thanks for the detailed reply – Dark Star1 May 11 '11 at 16:51
-
1@Dark Star1: The first has the same number of NOTs as Nate Eldredge has NANDs, while the second has the same number of NOTs as IainM has NOTs. – Henry May 11 '11 at 17:15
Meanwhile, let me add the fact that XOR is not expressible by any expression whose operations use only AND, OR, IMPLIES, ConverseImplies and IFF.
To see this, observe merely that True XOR True is False, but the other operations always take True input to True output, a feature that would be inductively preserved in complex expressions.
- 45,373
-
4
-
2I was tempted to say that that I couldn't disagree less! But actually, you can not have NOT, since it has already been observed that NAND suffices, as does NOR. – JDH May 12 '11 at 01:56
-
1Since NAND(p,p) is equivalent to NOT(p) as well as NOR(p,p) is equivalent to NOT(p), it still holds that "you cannot NOT have NOT". Since logical functions are simply defined by their truth table, The meaning of that sentence can be paraphrased as "you cannot not have a unary function that inverts its input". – wolfmanx Apr 11 '19 at 16:25
$\{AND, NOT\}$ is a complete set of operators, i.e. you can express any boolean function $f:\{0,1\}^n \to \{0,1\}$ using them:
$$f(x_1,\cdots,x_n) = \lnot \bigwedge_{w\in f^{-1}(1)} \lnot \big(\bigwedge_{w_i=1}x_i \land \bigwedge_{w_i=0}\lnot x_i \big)$$
- 3,682
