The logic symbol of an AND gate represents a fundamental digital logic circuit that outputs a HIGH state (logic 1) only when all of its inputs are simultaneously HIGH. If any single input is LOW (logic 0), the output immediately drops to LOW. In North America, you will predominantly see the ANSI/IEEE 'D-shape' symbol on schematics, while European and international diagrams rely on the IEC 60617 rectangular block with an ampersand ('&'). Below is the complete reference data for identifying, specifying, and testing AND gates across both standards.

AND Gate Logic Symbol and Truth Table Reference

Digital logic standards diverge significantly based on your region and the era of the schematic. The ANSI/IEEE Std 91A standard uses distinctive geometric shapes to denote logic functions, making it easy to identify gates at a glance. Conversely, the IEC 60617 standard uses uniform rectangular blocks with internal text identifiers, which scales better for complex programmable logic and FPGAs but requires reading the internal label.

Standard / Variant Symbol Shape Description Boolean Expression Truth Table (2-Input) Regional Dominance
ANSI/IEEE 91A Flat back, curved front (D-shape) Y = A · B 0,0=0 | 0,1=0 | 1,0=0 | 1,1=1 USA, Canada, Japan
IEC 60617 Rectangle with '&' inside Y = A ∧ B 0,0=0 | 0,1=0 | 1,0=0 | 1,1=1 EU, UK, Australia, ISO docs
DIN 40700 (Obsolete) Semicircle with flat bottom Y = A · B 0,0=0 | 0,1=0 | 1,0=0 | 1,1=1 Legacy German/EU schematics
MIL-STD-806B D-shape (identical to ANSI) Y = AB 0,0=0 | 0,1=0 | 1,0=0 | 1,1=1 US Military / Aerospace

Which standard applies to you? If you are reading a schematic generated by US-based ECAD tools (like Altium or OrCAD default libraries), expect the ANSI D-shape. If you are working with European industrial PLCs (like Siemens TIA Portal) or IEC-compliant documentation, you will encounter the IEC rectangular blocks. Both represent the exact same silicon behavior.

Common AND Gate IC Pinouts and Specifications

When moving from schematic symbols to the workbench, you need to map those symbols to physical silicon. The most ubiquitous physical implementations of the AND gate are the Quad 2-Input ICs in the 74xx and 40xx series. Below is a data-dense reference for the most common through-hole and surface-mount AND gate chips you will encounter in repairs and prototyping.

IC Part Number Logic Family VCC Range Pinout Configuration Typical Prop. Delay Best Use Case
74HC08 High-Speed CMOS 2.0V to 6.0V Quad 2-Input (Pins 1,2->3; 4,5->6; 9,10->8; 12,13->11) ~12 ns @ 5V General purpose 3.3V/5V logic
74LS08 Low-Power Schottky TTL 4.75V to 5.25V Quad 2-Input (Standard 14-pin DIP) ~15 ns @ 5V Legacy 5V TTL repairs
CD4081 Standard CMOS (4000 series) 3.0V to 15.0V Quad 2-Input (Standard 14-pin DIP) ~60 ns @ 10V High-voltage / wide-range logic
SN74LVC08A Low-Voltage CMOS 1.65V to 3.6V Quad 2-Input (TSSOP/SOIC) ~5 ns @ 3.3V Modern 3.3V/1.8V microcontrollers
74HC132 CMOS (Schmitt-Trigger NAND)* 2.0V to 6.0V Quad 2-Input NAND (Requires inversion) ~14 ns @ 5V Noisy environments (debouncing)

*Note: The 74HC132 is a NAND gate, but is frequently used in place of an AND gate by chaining two together (NAND followed by a NOT/inverter) when Schmitt-trigger hysteresis is required to clean up noisy mechanical switch inputs.

WARNING: Voltage Translation Hazards
Never connect the output of a 5V 74LS08 (TTL) directly to the input of a 3.3V microcontroller (like an ESP32 or STM32) without a level shifter or voltage divider. While the 74HC08 can operate at 3.3V, the older 74LS08 requires a strict 5V supply and will output ~3.4V for a HIGH state, which can degrade or destroy 3.3V GPIO pins over time. For mixed-voltage benches, standardize on the SN74HC08 or 74LVC series.

Symbols and Markings People Get Wrong

Even experienced technicians misread specific variations of logic symbols on complex schematics or faded PCB silkscreens. Here are the most common interpretation errors and how to avoid them:

  • The IEC '&' vs. '1' Confusion: In the IEC 60617 rectangular standard, an AND gate is marked with an ampersand ('&'). However, a buffer or non-inverting driver is marked with a '1'. If the silkscreen is partially obscured by flux residue or conformal coating, a '1' can easily be mistaken for a poorly printed '&', leading you to assume a logical AND operation where there is only a signal pass-through.
  • Active-Low Input Bubbles: An AND gate symbol with a small circle (bubble) on one or more inputs is still fundamentally an AND gate, but it requires a LOW signal on that specific pin to satisfy the condition. This is logically equivalent to an OR gate with inverted inputs (De Morgan's Theorem), but on a schematic, it indicates that the triggering signal is active-low (e.g., a 'Chip Select' or 'Enable' pin).
  • AND vs. NAND Output Bubbles: The most critical error is missing the output bubble. A D-shape with a bubble on the output spur is a NAND gate, not an AND gate. If you are probing a board and expect a HIGH output when both inputs are HIGH, but you are reading 0V, check the schematic for an output inversion bubble you may have overlooked.
  • Wired-AND vs. Logical AND: In I2C bus schematics, you will often see multiple open-drain outputs tied together with a single pull-up resistor. This is labeled as a 'Wired-AND'. There is no physical AND gate IC here; the logic function is achieved by the electrical topology of the bus. Do not go looking for a 74HC08 chip when troubleshooting an I2C data line.

Safely Interpreting Faded or Missing PCB Markings

When repairing legacy industrial equipment or reverse-engineering a board where the IC silkscreen has been burned away or obscured, you cannot rely on visual identification. You must safely deduce the logic function using a digital multimeter (DMM) or logic probe. For comprehensive logic families and internal gate structures, refer to standard digital logic gate tutorials and manufacturer datasheets like the NXP HEF4081B reference.

Step-by-Step Verification Procedure:

  1. Identify Power Pins: For standard 14-pin DIP logic ICs, Pin 14 is almost universally VCC and Pin 7 is GND. Power the board or inject voltage (verify the IC family first; do not feed 5V to a 74LVC08A designed for 3.3V).
  2. Locate the Inputs and Output: Trace the copper from the suspected gate. A standard Quad 2-Input package uses pins (1,2)->3, (4,5)->6, (9,10)->8, and (12,13)->11.
  3. Force Logic States: Using a 1kΩ resistor to prevent short-circuit damage, tie both suspected inputs to GND (Logic 0). Measure the output with your DMM. It should read near 0V.
  4. Test the AND Condition: Tie Input A to VCC (Logic 1) and Input B to GND (Logic 0). The output must remain 0V. Swap them (A=0, B=1); output must remain 0V.
  5. Confirm the HIGH State: Tie both Input A and Input B to VCC. The output should now snap to VCC (minus a small saturation voltage drop, typically <0.1V for CMOS, up to 0.4V for older TTL).

If the output goes HIGH when any single input is HIGH, you are looking at an OR gate, not an AND gate. If the output stays LOW when both inputs are HIGH, you are looking at a NAND gate. This empirical truth-table testing bypasses the need for readable silkscreen and confirms the exact silicon behavior on the bench.