1.1

Transistors & Logic Gates

Explore the fundamental building blocks of digital electronics. Toggle inputs, watch signals propagate through gates, and understand how simple logic operations power every computer.

Digital Logic Foundations
Scenarios:
AND Gate
Y = A . B
0
0
ANDY = A . B
0
A
B
Y
Output: 0
Gates Tested0
Current GateAND
Steps0
Truth Table
ABY
000
010
100
111
Signal Legend
High (1)
Low (0)
Inactive
Quick Reference
1.0x
Understanding the AND Gate

How It Works

Outputs 1 only when ALL inputs are 1. The AND gate performs logical conjunction -- both conditions must be true for the result to be true.

Boolean Expression

Y = A . B

Real-World Applications

Used in security systems where multiple conditions must be met (e.g., both key card AND PIN required), alarm systems, and enable circuits.

Key InsightThe AND gate is often called an 'enable gate' because one input can enable or disable the other signal. When the enable input is 0, the output is always 0 regardless of the data input.

Gate Comparison

GateExpressionInputsUniversalOutput for 0,0Output for 1,1
AND
Y = A . B2No01
OR
Y = A + B2No01
NOT
Y = A'1No1-
NAND
Y = (A . B)'2Yes10
NOR
Y = (A + B)'2Yes10
XOR
Y = A ^ B2No00
XNOR
Y = (A ^ B)'2No11