Vismo · Create · Explore · Topics · Guides · Pricing

From logic gates to arithmetic: the half adder

This animation shows how a half adder circuit uses an XOR gate to compute the sum bit and an AND gate to compute the carry bit for two single-bit inputs. As the inputs cycle through 00, 01, 10, and 11, the truth table fills in live, culminating in the case 1 + 1 = 10 in binary. Useful for students learning digital logic, binary arithmetic, or the hardware basis of computer arithmetic.

16:9 · Preview before teaching · automatic layout checks do not establish subject accuracy

The prompt that made it

An XOR gate gives the sum bit and an AND gate gives the carry for two input bits; the truth table fills in as the inputs cycle through 00, 01, 10, 11, showing 1 + 1 = 10 in binary.

Make your own version

Make the next one in this series

Related animations

How A Perceptron Makes A Decision
How A Perceptron Makes A Decision

This animation visualizes a single perceptron processing weighted inputs, summing them with a bias, and passin…

Minimum spanning tree with Kruskal's algorithm
Minimum spanning tree with Kruskal's algorithm

A weighted graph is processed by sorting all edges from cheapest to most expensive, adding each one only if it…

Fibonacci: the recursion tree repeats work; memoisation removes it
Fibonacci: the recursion tree repeats work; memoisation removes it

This animation draws the full recursion tree for fib(5), showing all 15 calls and highlighting the repeated su…

Recursion on the call stack: 5! unwinds
Recursion on the call stack: 5! unwinds

This animation visualizes fact(5) as it pushes five stacked frames, one for each recursive call, until reachin…

Binary search tree: smaller left, larger right
Binary search tree: smaller left, larger right

Values 50, 30, 70, 20, 40, 60, 80, and 35 are inserted one at a time into a binary search tree, with each comp…

Hash tables: a formula decides where each key lives
Hash tables: a formula decides where each key lives

Seven buckets receive keys according to key mod 7, with collisions stacked as chains beneath each bucket. A lo…