XNOR
XNOR, short for exclusive NOR, is a digital logic gate that outputs a true signal when its inputs are equal. It is the negation of the XOR operation. For two inputs A and B, the XNOR output is 1 when A equals B, and 0 otherwise.
The truth table for a two-input XNOR is:
Boolean expressions describe XNOR as XNOR(A,B) = (A AND B) OR (NOT A AND NOT B) and also
In multi-input form, an XNOR gate yields 1 when an even number of inputs are 1, and
Applications include equality testing, parity checking, and error detection, as well as use in comparators and
Implementation notes: most practical designs realize XNOR as an XOR gate followed by a NOT gate, though