NOT gate
A logic gate performing a Boolean-logic NOT operation.
NOT gate: the simplest logic inverter
A NOT gate is a single-input logic circuit that outputs the opposite of whatever signal it receives. If the input is high (typically 5V or 3.3V depending on the logic family), the output goes low (0V or ground). If the input is low, the output goes high. This makes it the fundamental building block for signal inversion throughout digital electronics, from simple control circuits to the most complex processors.
The NOT gate is also called an inverter, and it is the only basic logic gate with just one input. In Boolean algebra it represents the complement operation, written as a bar over the variable or sometimes as NOT(A) or A'. The truth table is trivial: input 0 produces output 1, and input 1 produces output 0. Despite its simplicity, no digital system can function without inversion at some point in its design.
Physical forms and implementation
NOT gates appear in several physical implementations. In TTL (transistor-transistor logic) circuits, the classic 7404 chip contains six NOT gates on a single 14-pin DIP package. CMOS versions like the 4069 are power-efficient and work across a wide voltage range. Programmable logic devices, FPGAs, and microcontrollers all include NOT functions as primitive operations. At the transistor level, a NOT gate is simply an inverting amplifier, often a single NPN or CMOS transistor with appropriate biasing and load resistor.
Propagation delay, the time between input change and output change, is a critical specification. In fast TTL gates this is around 10 nanoseconds; in CMOS it varies with supply voltage but is typically 50 to 100 nanoseconds at 5V. When cascading multiple gates in high-speed circuits, these delays accumulate and can determine the maximum clock frequency. Fan-out, the number of gate inputs a single output can safely drive, also matters; standard TTL gates typically handle 10 loads, while CMOS can drive more at the cost of slower switching.
NOT gates frequently appear alongside AND, OR, and XOR gates in logic design, but they occupy a unique position: they are the only operator required to construct all other Boolean functions. This is why NAND and NOR gates, which combine NOT with AND or OR respectively, are so prevalent in actual integrated circuits. Inverters also appear in signal conditioning circuits, level conversion, and as part of oscillator circuits. The simplicity that makes the NOT gate easy to understand also makes it indispensable in nearly every corner of electrical engineering.