A ⊙ 0 and A ⊙ 1 — XNOR gate
corethe mirror of the XOR identity
Answer
A ⊙ 0 column 10, A ⊙ 1 column 01
Why this example is worth doing
XNOR against a constant behaves exactly opposite to XOR against a constant, so a design needing a controlled inverter can use either gate with the control polarity flipped. The page tabulates all four combinations on one line and notes that this is why active-low control signals and XNOR gates so often appear together — the polarity inversion is absorbed into the gate rather than costing an inverter.
Try your own input in the XNOR gate. Truth table, symbol and algebraic form for A ⊙ B, the equality detector.
How the answer is reached
Output table
| A | A ⊙ 0 | A ⊙ 1 |
|---|---|---|
| 0 | 1 | 0 |
| 1 | 0 | 1 |