Jump to content

AND gate: Difference between revisions

From FoxLabs Wiki
Created page with "{| class="wikitable floatright" style="text-align:center" |- ! colspan="3" | AND gate truth table |- bgcolor="#ddeeff" |colspan=2|'''Input''' || '''Output''' |- bgcolor="#ddeeff" | A || B || A AND B |- |{{no2|0}} || {{no2|0}} || {{no2|0}} |- |{{no2|0}} || {{yes2|1}} || {{no2|0}} |- |{{yes2|1}} || {{no2|0}} || {{no2|0}} |- |{{yes2|1}} || {{yes2|1}} || {{yes2|1}} |} The '''AND gate''' is a basic digital logic gate that implements the logical conjunction () fro..."
 
No edit summary
 
Line 21: Line 21:
ANSI Symbol
ANSI Symbol
[[File:AND ANSI.svg|left]]
[[File:AND ANSI.svg|left]]
 
{{Clear}}
 


IEC Symbol
IEC Symbol
[[File:AND IEC.svg|left]]
[[File:AND IEC.svg|left]]
 
{{Clear}}


== See also ==
== See also ==

Latest revision as of 05:39, 17 January 2026

AND gate truth table
Input Output
A B A AND B
0 0 0
0 1 0
1 0 0
1 1 1

The AND gate is a basic digital logic gate that implements the logical conjunction () from mathematical logic - AND gates behave according to their truth table. A HIGH output (1) results only if all the inputs to the AND gate are HIGH (1). If any of the inputs to the AND gate are not HIGH, a LOW (0) is outputted instead. The function can be extended to any number of inputs by multiple gates in a chain.

Symbols

ANSI Symbol

IEC Symbol

See also