vault backup: 2025-01-10 10:02:03

This commit is contained in:
arc 2025-01-10 10:02:03 -07:00
parent f602401dc8
commit dcc08d7492

View File

@ -80,4 +80,16 @@ An XOR operation is expressed using a circle around an addition symbol:
$$ y = x_1 \oplus x_2 $$ $$ y = x_1 \oplus x_2 $$
## XNOR Gate ## XNOR Gate
An XNOR gate is on An XNOR gate is on if neither input is enabled, or both inputs are enabled.
## Truth Table
| $x_1$ | $x_2$ | $y$ |
| ----- | ----- | --- |
| 0 | 0 | 1 |
| 0 | 1 | 0 |
| 1 | 0 | 0 |
| 1 | 1 | 1 |
## Mathematical Expression
An XNOR operation is expressed using a bar over an XOR operation:
$$ y = \overline{x_1 \oplus x_2} $$