One of the alternate to getting the same output as an AND Gate, is to put together NOR gates. The operator for NOT gates is (A+B)'
, However there is a problem, I can't get the same output an AND gate would.
This image is from https://en.wikipedia.org/wiki/NOR_logic
So for example if we take:
A = 1
B = 0
, I would expect 0 as a result, but that does not seem to be the case here since,
= (1 NOR 0) NOR (1 NOR 0)
= (0) NOR (0)
= 1
What am I doing wrong?