A NOR gate is a digital logic gate that outputs a 1 (high) only when all of its inputs are 0 (low). The moment any input goes high, the output drops to 0. It’s essentially an OR gate with its output flipped by a NOT operation, which is where the name “Not-OR” comes from. This simple behavior makes it one of the most important building blocks in digital electronics, because you can construct every other type of logic gate using nothing but NOR gates.
How a NOR Gate Works
A standard NOR gate has two inputs (A and B) and one output (Y). The Boolean expression is written as Y = (A+B)’, where the apostrophe means “inverted.” In plain terms: the gate first checks whether either input is 1 (the OR part), then flips the result (the NOT part).
The truth table for a two-input NOR gate covers all four possible input combinations:
- A = 0, B = 0: Output = 1
- A = 0, B = 1: Output = 0
- A = 1, B = 0: Output = 0
- A = 1, B = 1: Output = 0
The only way to get a 1 out of a NOR gate is to feed it all zeros. Any single high input is enough to force the output low. This rule scales to NOR gates with three or more inputs: the output stays high (1) only when every input is low (0).
The Circuit Symbol
On a schematic, a NOR gate looks like an OR gate with a small circle (called a “bubble”) on the output. The OR gate shape is a curved shield-like outline, and the bubble represents the inversion step. If you see that bubble, you know the output is the opposite of what the base gate would normally produce.
Why NOR Is Called a Universal Gate
NOR gates hold a special status in digital logic: they’re “universal,” meaning you can build any other logic gate using only NOR gates. This matters because chip manufacturers can simplify production by fabricating a single gate type and wiring it in different configurations to get whatever logic they need.
Building a NOT Gate
Connect both inputs of a NOR gate to the same signal. When that signal is 0, both inputs are 0, so the output is 1. When the signal is 1, at least one input is high, so the output is 0. That’s inversion, which is exactly what a NOT gate does.
Building an OR Gate
A NOR gate produces the complement of OR. Feed the output of one NOR gate into a second NOR gate wired as an inverter (both inputs tied together), and the double inversion cancels out. The result is a standard OR operation.
Building an AND Gate
This one uses a property from De Morgan’s theorem. If you invert each input first (using NOR gates wired as NOT gates) and then feed those inverted signals into a final NOR gate, the output equals A AND B. The math works out because inverting the inputs and then NOR-ing them is logically identical to AND-ing the original inputs.
How NOR Gates Are Built in Hardware
In modern chips, NOR gates are built using CMOS technology, which pairs two types of transistors. A basic two-input NOR gate requires just four transistors total.
Two PMOS transistors sit in series between the power supply and the output. Both must be “on” to pull the output high, and they only turn on when their respective inputs are low. This is why the output is 1 only when both A and B are 0.
Two NMOS transistors sit in parallel between the output and ground. Either one turning on is enough to pull the output low. Since an NMOS transistor turns on when its input is high, a single high input drags the output to 0. This parallel arrangement is what gives the NOR gate its “any high input kills the output” behavior.
Speed and Electrical Specs
One of the most common NOR gate chips is the 7402, a quad two-input NOR gate package that has been in use for decades in the 7400-series logic family. It runs on a 5V supply (with a tolerance of 4.75V to 5.25V) and switches states in nanoseconds. The propagation delay, the tiny lag between an input change and the output responding, is around 15 to 22 nanoseconds depending on whether the output is transitioning from low to high or high to low. For hobby projects and learning circuits, this chip is still widely available and inexpensive.
Modern CMOS versions of NOR gates run at lower voltages (3.3V or 1.8V) and switch faster, but the 7402 remains a go-to for breadboard prototyping and understanding the fundamentals.
Where NOR Gates Are Used
NOR gates show up across digital electronics in several important roles. One classic application is the SR latch, a basic memory element built from just two cross-coupled NOR gates. The latch can “remember” a single bit of data, storing either a 0 or a 1 until it’s told to change. SR latches form the foundation of flip-flops, which are the building blocks of registers, counters, and virtually all sequential digital circuits.
NOR flash memory, the type of storage used in USB drives, SSDs, and smartphone storage, takes its name from NOR gates. The memory cells are arranged so their logic structure resembles NOR gate configurations, allowing individual bytes to be read quickly. This makes NOR flash well suited for storing firmware and code that a processor needs to execute directly.
Because NOR gates are universal, they also appear in control systems where designers implement custom logic functions using a uniform set of gates. Early space computers, including the Apollo Guidance Computer, were built almost entirely from NOR gates for exactly this reason: using a single gate type simplified design, testing, and manufacturing.

