NOT Gate Signal Inverter
Simple NOT gate demonstration showing signal inversion. Input high makes output low and vice versa. Fundamental logic inversion concept.
您将学到什么
- Read and write the NOT gate's 2-row truth table.
- Recognise the inverter symbol (a triangle followed by a small circle/bubble).
- Convert active-low signals to active-high using a single inverter.
- Apply De Morgan's laws to convert AND/OR networks using inversion.
- Understand that NOT is the cheapest CMOS gate (2 transistors).
工作原理
The NOT gate, or inverter, is the simplest logic gate: one input, one output, and the rule "output is the opposite of input." Wire a switch into a NOT gate and the output light turns on when the switch is off, and turns off when the switch is on. Boolean expression: Y = ¬A (or A̅, or NOT A).
With only two possible inputs (0 or 1), the truth table has exactly two rows. NOT is sometimes called the "complement" or "inversion" function because it produces the logical complement of its input.
Despite its simplicity, NOT is fundamental: every Boolean expression can be transformed using De Morgan's laws if you can negate signals, and the universal NAND/NOR gates are essentially AND/OR followed by NOT. In CMOS silicon, a NOT gate is just two transistors — one PMOS and one NMOS in series — making it the cheapest gate to fabricate.
NOT is also where signal integrity matters most. A long chain of inverters introduces propagation delay (each adds ~50 ps to ~1 ns depending on technology), and inverter chains are sometimes used as delay lines for timing trim.
真值表
NOT has only one input, so just two rows. Output is always the opposite of input.
| 输入 | 输出 | |
|---|---|---|
| A | Y | |
| 0 | 1 | Input 0 → output 1 (inverted) |
| 1 | 0 | Input 1 → output 0 (inverted) |
布尔表达式
Standard form using overline notation.
Formal logic notation using the negation symbol.
NOT can be implemented as XOR with a constant 1 — useful when only XOR gates are available.
逐步尝试
在上方嵌入式电路中设置输入,然后阅读预期结果并验证。
- 1A = 0预期:
Y = 1您将看到: Switch off, output light on. NOT inverts: 0 becomes 1. - 2A = 1预期:
Y = 0您将看到: Switch on, output light off. NOT inverts: 1 becomes 0. The light is the **inverse** of the switch.
使用的组件
实际应用
Active-low signal conversion. Many digital signals are "active low" — chip-select, write-enable, reset — meaning they're considered active when at logic 0. To use them with active-high logic, an inverter does the conversion in one gate.
Building NAND from AND. A NAND gate is just AND followed by NOT. The same goes for NOR (OR followed by NOT). Inverters are everywhere — they're how the universal gates are constructed.
Driver / buffer chains. A chain of inverters in series doesn't change logic but does buffer the signal — driving heavier loads (long wires, many gate inputs) with stronger drive strength. An even number of inverters in series equals a buffer.
Clock distribution. Inverters in clock trees both reshape the clock waveform and provide delay tuning. A whole chip's clock skew is managed by carefully placed inverter buffers.
De Morgan transformations in synthesis. Logic-synthesis tools constantly apply De Morgan's laws: NOT(A AND B) = NOT(A) OR NOT(B). Inverters are the primary tool for these transformations.