Binary Addition Calculator
Add two binary integers and check the base-2 sum with its decimal value.
About binary addition
Binary addition examples
Examples show carry propagation and decimal checks.
| Addition | Binary sum | Decimal check |
|---|---|---|
| 1011 + 101 | 10000 | 11 + 5 = 16. |
| 1 + 1 | 10 | 1 + 1 = 2 and creates one carry. |
| 1111 + 1 | 10000 | 15 + 1 = 16 and the carry crosses every column. |
| 101010 + 110 | 110000 | 42 + 6 = 48. |
How to add binary numbers
- Enter the first unsigned binary integer using only zeros and ones.
- Enter the second binary integer and align its least significant digit conceptually with the first.
- Select Add Binary Numbers to calculate the exact base-2 sum.
- Read the binary sum and use the displayed decimal value as a quick verification.
Binary addition FAQ
What is one plus one in binary?
One plus one is written as 10 in base two. The zero stays in the current column and the one is carried left.
Do leading zeros affect the answer?
No. Leading zeros do not change a binary integer's value, just as leading zeros do not change a decimal integer.
How can I check a binary sum?
Convert both inputs to decimal, add them, and convert the total back to binary. The calculator displays the decimal interpretation for this purpose.
Can binary addition overflow?
A fixed-width register can overflow when the sum needs an extra leading bit. This calculator displays the full result instead of discarding that carry.
Does this support negative binary numbers?
The inputs are interpreted as unsigned integers. Negative values require an agreed signed representation such as two's complement and a fixed bit width.