What's the minimum number of NOR gate needed to build a 3-input XOR gate using only NOR gate?
Information I know:
https://en.wikipedia.org/wiki/NOR_logic
A XOR B = [ ( A NOR A ) NOR ( B NOR B ) ] NOR ( A NOR B )
A XOR B XOR C = ( A XOR B ) XOR C
Using the above formulas, I can implement 3-input XOR with 20 NOR gates.
What I don't know:
What's the minimum number of NOR gate? Is there a simpler way to implement 3-input XOR gate?
1 Answer 1
A 3 bit XOR gate can be made using 10 NOR gates . enter image description here
-
1\$\begingroup\$ Please don't hand out solutions to homework questions. Also, you need to provide a link or citation for the graphics you copied into your answer. \$\endgroup\$Elliot Alderson– Elliot Alderson2022年10月16日 10:47:48 +00:00Commented Oct 16, 2022 at 10:47
A NOR A
? \$\endgroup\$