Tested tool guide
Tested browser tools
Checked August 16, 2026
What Logic Gate Simulator does, with a checked example
Place gates on a canvas, drag wires between their pins, and the simulator computes what the whole circuit does. AND, OR, NOT, NAND, NOR, and XOR each implement one Boolean function, wiring outputs into inputs composes them, and the tool responds with a truth table covering every input combination. The surprise for most users: the table proves functional equivalence, not physical equivalence - identical tables can still behave differently in real hardware, and any circuit whose output feeds back into an input stops being a truth-table circuit at all.
Worked example
A concrete input and expected output from the current implementation.
Input
Inputs A and B feed an AND gate (output X). X and a third input C feed an OR gate (output Y).
->
Expected output
A B C | Y
0 0 0 | 0
0 0 1 | 1
0 1 0 | 0
0 1 1 | 1
1 0 0 | 0
1 0 1 | 1
1 1 0 | 1
1 1 1 | 1
X is 1 only when both A and B are 1, and OR outputs 1 whenever either input is 1, so Y is 0 only in the three rows where C is 0 and the AND condition fails: 000, 010, and 100. All eight rows follow from that rule.