Tested tool guide
Tested browser tools
Checked August 16, 2026
What Binary Calculator does, with a checked example
In binary there are only two digits, so a column that sums to 2 does not write '2': it writes 0 and carries 1. This tool performs addition, subtraction, multiplication, and division on two binary numbers and lays the work out as you would write it by hand, with carries shown above the columns, borrows marked in subtraction, partial products stacked in multiplication, and quotient and remainder given for division. Results are displayed in binary, and the thing users most often trip on is that every digit entered is read in base 2: '10' means two, not ten.
Worked example
A concrete input and expected output from the current implementation.
->
Expected output
1111 (carries)
1011
+ 1101
-------
11000
Worked right to left: 1 + 1 writes 0 and carries 1, and that carry keeps propagating, so each of the next three columns also writes 0 and carries; the final 1 + 1 + carry writes 1 and produces the leftover carry that becomes the leading bit. In decimal the same sum is 11 + 13 = 24, and 11000 is 16 + 8.