← Playground
01
Logic
Two switches, one gate, one light. Flip the inputs and watch the wires, the output bulb, the expression and the truth table all move together.
OPERATOR
∧AND
Out= 0FALSE
Click a bulb to flip it — or press A / B. Everything below updates as you go.
EXPRESSION
A ∧ B = 0
1 ∧ 0 = 0|TRUE ∧ FALSE = FALSE
True only when both inputs are true. AND is the strict one: a single false input is enough to switch the output off.
TRUTH TABLE(click a row to jump to it)
| A | B | A ∧ B |
|---|---|---|
| 0 | 0 | 0 |
| 0 | 1 | 0 |
| 1 | 0 | 0 |
| 1 | 1 | 1 |