Search code examples
booleanboolean-logicboolean-operations

NOR Gate from XOR and And


I am trying to create a 2-input NOR Gate only from XOR and AND Gates. however I am stuck. The output must be NOT X AND NOT Y as the definition of a NOR GATE but I can not seem to understand how to get it.


Solution

  • I think this will work.

    (A XOR 1) AND (B XOR 1)