When reading schematics or tracing PCBs, correctly identifying logic symbols AND OR gates is foundational to digital circuit debugging. The industry relies on two primary drafting standards: the ANSI/IEEE Std 91-1984 (distinctive shapes) and the IEC 60617 (rectangular outlines). Below is the definitive bench reference for these symbols, their physical silicon equivalents, and how to interpret them when documentation fails.
Standard Logic Gate Symbol Reference (ANSI vs IEC)
The table below maps the logical function to both major symbol standards, alongside the most common physical ICs you will encounter on a workbench. In the US, Canada, and Japan, ANSI distinctive shapes dominate legacy schematics and hobbyist diagrams. In Europe, and increasingly in modern professional CAD software (like Altium and KiCad default libraries), IEC rectangular symbols are the standard.
| Gate Type | Boolean Function | ANSI/IEEE Shape | IEC 60617 Marking | Standard CMOS IC | Standard TTL IC |
|---|---|---|---|---|---|
| AND | Y = A · B | D-shaped (flat back, curved front) | Rectangle with & inside |
CD4081 / 74HC08 | 74LS08 / 74F08 |
| OR | Y = A + B | Curved back, pointed front (shield shape) | Rectangle with ≥1 inside |
CD4071 / 74HC32 | 74LS32 / 74F32 |
| NAND | Y = (A · B)' | D-shape with output inversion bubble | Rectangle with & and output bubble |
CD4011 / 74HC00 | 74LS00 / 74F00 |
| NOR | Y = (A + B)' | Shield shape with output inversion bubble | Rectangle with ≥1 and output bubble |
CD4001 / 74HC02 | 74LS02 / 74F02 |
Never leave unused inputs on 4000-series CMOS (like the CD4081) or 74HC-series gates floating. A floating input will oscillate at high frequencies due to noise pickup, causing shoot-through current that can overheat and destroy the IC. Always tie unused AND/OR inputs to VCC or GND via a 10kΩ resistor, or directly to the appropriate logic rail.
The "Rows People Get Wrong" in Logic Schematics
Even experienced technicians misread specific symbol variations, especially when transitioning between older military prints and modern European CAD exports. Here are the most common misinterpretations:
1. The IEC "&" vs. Software Operators
In IEC 60617, the AND gate is simply a rectangle with an ampersand (&) inside. Beginners reading a schematic for the first time often confuse this with a bitwise software operator or an analog multiplier block. If the block has discrete digital input lines (A, B) and a single digital output (Y), it is a standard hardware AND gate, not a math function.
2. Missing the IEC Inversion Bubble
On ANSI symbols, the inversion bubble on a NAND or NOR gate is large and obvious. On IEC symbols, the bubble is often drawn very small, or sometimes replaced by a right-angle triangle indicator on the pin itself. If you are tracing a fault and the output seems inverted from what the & or ≥1 symbol suggests, zoom in on the output pin. A tiny triangle or half-circle means you are actually looking at a NAND or NOR gate.
3. Active-Low Logic and De Morgan's Equivalents
Schematics will sometimes draw an OR gate shape but label it as a NAND function. This is not a drafting error; it is De Morgan's equivalent used to show active-low logic. An OR gate with inverted inputs is logically identical to a NAND gate. Designers do this to make the schematic flow logically (e.g., showing that two "fault" signals, which are active-low, trigger an alert when either is pulled to ground). Always check the signal names for overbars (e.g., FAULT) before assuming the symbol is wrong.
Faded Silkscreen and Missing Schematics: Field Identification
When repairing industrial control boards or vintage synthesizers, PCB silkscreens fade, and schematics are rarely available. Here is how to safely identify AND/OR logic functions on a bare board.
- Read the Silicon Stamp: Ignore the faded PCB ink and look directly at the IC. A TI SN74HC08 is definitively a Quad 2-Input AND gate. A 74HC32 is a Quad 2-Input OR gate. Note the logic family: "HC" operates from 2V to 6V, while "HCT" requires a strict 4.5V to 5.5V supply to interface with older TTL logic.
- Trace VCC and GND: If the IC part number is scraped off, use your multimeter in continuity mode. Find the ground plane. In standard 14-pin DIP logic packages, Pin 7 is almost universally GND, and Pin 14 is VCC. (Always verify this against the specific package type, as SOIC and TSSOP can occasionally vary in high-pin-count custom ASICs, though standard gates remain consistent).
- The Logic Probe Test: If you must verify the function dynamically, power the board. Use a logic probe or a multimeter set to DC voltage. Tie Input A to GND and Input B to VCC.
- If the output reads LOW (~0V), it is likely an AND gate (requires both HIGH to output HIGH).
- If the output reads HIGH (~VCC), it is likely an OR gate (requires only one HIGH to output HIGH).
Frequently Asked Questions
What is the difference between ANSI and IEC logic symbols for AND and OR gates?
The ANSI/IEEE standard uses "distinctive shapes"—a D-shape for AND and a curved shield-shape for OR. This makes it easy to identify gate types at a glance without reading text. The IEC 60617 standard uses uniform rectangular blocks for all logic gates, differentiating them only by the text inside: an ampersand (&) for AND, and a greater-than-or-equal-to symbol (≥1) for OR. IEC is preferred in complex, multi-standard international documentation, while ANSI remains the favorite for quick bench sketches and educational materials.
How do I wire a 74HC08 AND gate IC on a breadboard?
The 74HC08 contains four independent 2-input AND gates in a 14-pin package. Insert the IC across the breadboard center trench. Connect Pin 14 to your positive supply (up to 6V for HC series) and Pin 7 to Ground. For the first gate, Input A is Pin 1, Input B is Pin 2, and Output Y is Pin 3. The remaining gates follow sequentially down the left side and up the right side of the chip. Remember to place a 0.1µF (100nF) ceramic decoupling capacitor directly across Pins 14 and 7 to filter high-frequency switching noise.
Can I use an OR gate symbol to represent a wired-OR circuit with diodes?
Technically, a "wired-OR" using diodes (where the anodes connect to input signals and cathodes tie together to the output) performs an OR function, but it should not be drawn with a standard active-buffer OR gate symbol. A standard 74HC32 OR gate actively drives the output to VCC or GND. A diode wired-OR is passive; it suffers from a forward voltage drop (approx. 0.7V for silicon, 0.3V for Schottky) and cannot sink current. In professional schematics, draw the actual diodes, or use the IEC symbol with a passive indicator, to prevent a technician from assuming the node has active push-pull drive capability.
Why do some AND symbols have a triangle instead of a curved D-shape?
If you see an AND gate drawn as a triangle (resembling an amplifier or buffer symbol) rather than the classic D-shape, you are likely looking at a schematic drafted under older military standards (like MIL-STD-806) or a specific CAD library variant. In these older conventions, a triangle with a flat back was sometimes used for AND, while a curved back was OR. However, in modern practice, a triangle universally denotes a non-inverting buffer or an amplifier. If you see a triangle on a modern print, verify the part number; it is almost certainly a buffer (like a 74HC07) rather than an AND gate.






