vault backup: 2025-01-10 10:02:03
This commit is contained in:
parent
f602401dc8
commit
dcc08d7492
@ -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} $$
|
||||||
|
Loading…
Reference in New Issue
Block a user