When reading schematics or debugging a PCB, recognizing the correct boolean symbol is the difference between a quick fix and a fried IC. The electronics industry uses two primary standards for logic gates: the ANSI/IEEE "distinctive shape" standard (dominant in the US and legacy designs) and the IEC 60617 "rectangular outline" standard (dominant in Europe and modern global datasheets). Below is the definitive cross-reference to keep your bench work accurate.
The Complete Boolean Symbol Reference Table
This table maps the core boolean functions across the two major drafting standards, complete with the most common 14-pin DIP (Dual In-line Package) IC part numbers you will encounter on the bench. Use this as your primary lookup when tracing signals on a mixed-standard schematic.
| Logic Function | Boolean Math | ANSI/IEEE Shape (US) | IEC 60617 Box Label (EU) | Common 74xx/40xx IC | Pins / Gate |
|---|---|---|---|---|---|
| AND | Y = A · B | D-shaped (flat back, curved front) | Rectangle with & | 74HC08 / CD4081 | 2 In, 1 Out |
| OR | Y = A + B | Curved back, pointed front | Rectangle with ≥1 | 74HC32 / CD4071 | 2 In, 1 Out |
| NOT (Inverter) | Y = A' | Triangle with output bubble | Rectangle with 1 and output bubble | 74HC04 / CD4069 | 1 In, 1 Out |
| NAND | Y = (A · B)' | D-shape with output bubble | Rectangle with & and output bubble | 74HC00 / CD4011 | 2 In, 1 Out |
| NOR | Y = (A + B)' | Curved back, pointed front + bubble | Rectangle with ≥1 and output bubble | 74HC02 / CD4001 | 2 In, 1 Out |
| XOR | Y = A ⊕ B | OR shape with extra curved input line | Rectangle with =1 | 74HC86 / CD4030 | 2 In, 1 Out |
| XNOR | Y = (A ⊕ B)' | XOR shape with output bubble | Rectangle with =1 and output bubble | 74HC266 / CD4077 | 2 In, 1 Out |
Decoding the Standards: Which Boolean Symbols Apply to Your Region?
The symbol set you should use—or expect to see—depends heavily on your region, the age of the equipment, and the CAD software defaults. Mixing these standards in a single schematic is a frequent source of misinterpretation in multinational engineering teams.
ANSI/IEEE Std 91-1984 (The US Standard)
Widely used in North America, Japan, and legacy military/aerospace documentation. This standard relies on distinctive shapes. The physical shape of the gate (D-shape for AND, curved for OR) allows an engineer to recognize the logic function at a glance without reading the text inside the symbol. If you are repairing vintage US test equipment (like older Hewlett-Packard or Tektronix gear) or reading schematics generated in older versions of OrCAD, you will predominantly see ANSI shapes.
IEC 60617-12 (The International Standard)
Mandated in Europe and increasingly adopted globally, the IEC standard uses rectangular outlines for all logic elements. The function is defined by the alphanumeric qualifier inside the box (e.g., & for AND, ≥1 for OR). The IEC standard was designed to scale to complex functions; a distinctive shape doesn't exist for a 4-bit ALU, but a rectangular IEC box with internal qualifiers handles it cleanly. Modern datasheets from Texas Instruments and Nexperia often include IEC-equivalent pinout diagrams alongside ANSI logic diagrams.
MIL-STD-806 (Legacy Military)
Though officially superseded by IEEE 91, you will still encounter MIL-STD-806 symbols when reverse-engineering Cold War-era defense hardware. It uses distinctive shapes similar to ANSI, but its convention for "active-low" signals differs. Instead of a bubble (negation indicator) on the gate itself, MIL-STD-806 often uses a "half-arrow" or relies entirely on signal naming conventions (e.g., /RESET or RESET*) without altering the gate symbol. Always verify the title block of the schematic to confirm which standard the draftsperson used.
Never mix ANSI and IEC symbols in the same schematic capture. Modern EDA tools like Altium and KiCad allow you to import mixed libraries, but doing so creates ambiguous active-low logic paths. Standardize your workspace to either IEEE 91 or IEC 60617 before placing your first component.
Rows People Get Wrong & Faded Silkscreen Recovery
Even experienced bench technicians misread specific boolean symbols, especially when dealing with dense schematics or degraded hardware. Here is how to avoid the most common traps and how to identify logic gates when the markings are gone.
The 'Rows People Get Wrong' Notes Section
- XOR vs. XNOR (The Missing Bubble): In ANSI schematics, the XOR gate has a distinct double-curve on the input side. Draftspersons frequently forget the output negation bubble when drawing XNOR gates, accidentally turning them into XOR gates on paper. Always verify the boolean equation in the netlist if an XNOR symbol looks suspiciously like an XOR.
- IEC OR (≥1) vs. IEC XOR (=1): Because both symbols are identical rectangles, a smudge of toner or a low-res PDF export can easily turn the
=1(XOR) into≥1(OR). If the circuit is a parity checker or an adder, it requires XOR; if it's a simple enable mask, it's likely OR. - The "Asserted Low" Bubble vs. A Physical Inverter: A bubble on an input pin does not mean there is a physical NOT gate (like a 74HC04) in the signal path. It indicates that the specific pin on that IC (like the Chip Select or Enable pin) is active-low. Treating a bubble as a physical inverter will lead you to probe the wrong traces on the PCB.
Safe Interpretation When Markings are Faded or Missing
When repairing salvaged boards, the silkscreen boolean symbols are often scratched off, or you may be dealing with an unmarked "blob-top" epoxy IC or a sanded-off DIP chip. Here is the professional bench procedure to safely identify an unknown logic gate without relying on visual symbols.
- Establish Power and Ground: For standard 14-pin DIP logic ICs (74xx or 4000 series), Pin 7 is almost universally Ground (GND) and Pin 14 is VCC. Verify this with a multimeter in continuity mode by checking for a large decoupling capacitor (usually 100nF) connected between these pins and the ground plane.
- Prevent Floating Inputs (Crucial for CMOS): If you are testing a 74HC (High-speed CMOS) family chip, never leave inputs floating. A floating CMOS input acts as an antenna, picking up ambient noise and causing the internal MOSFETs to oscillate rapidly. This "shoot-through" current will overheat and destroy the IC. Use 10kΩ pull-down resistors to tie all unused inputs to GND during testing.
- Build a Physical Truth Table: Power the IC with the correct voltage (5V for 74LS/74HC, up to 15V for CD4000 series CMOS). Use a logic probe or a multimeter set to DC voltage on the suspected output pin. Toggle the input pins between GND (Logic 0) and VCC (Logic 1) using a jumper wire. Record the four possible states (00, 01, 10, 11). Match your physical results to the standard boolean truth tables to definitively identify the gate, regardless of what the faded silkscreen claims.
By relying on physical truth-table verification rather than trusting degraded visual boolean symbols, you eliminate guesswork and ensure your replacement components match the actual logic requirements of the circuit.






