Binary Addition Calculator
Add two binary numbers and review the decimal value of the result.
Math Calculators
Use one page to solve binary addition, binary subtraction, binary multiplication, binary division, 1's complement, and 2's complement problems. Each calculator gives a fast result and a short explanation so you can verify the binary process step by step.
Add two binary numbers and review the decimal value of the result.
Subtract one binary value from another and see whether the answer is positive or negative.
Multiply two binary numbers and compare the binary output with the decimal product.
Divide one binary number by another and return both quotient and remainder.
Flip every bit in the binary number so each 0 becomes 1 and each 1 becomes 0.
Invert every bit and add 1 to find the two's complement using the same bit width.
Start from the rightmost bit and assign powers of 2. Multiply each bit by its place value and add the totals. For example, 101101 becomes 1x32 + 0x16 + 1x8 + 1x4 + 0x2 + 1x1 = 45.
Repeatedly divide the decimal number by 2 and write down each remainder. Read the remainders from bottom to top. For example, decimal 13 gives remainders 1, 0, 1, 1, so the binary value is 1101.
Add bits from right to left. The only sums you need are 0+0=0, 0+1=1, 1+0=1, and 1+1=10, which means write 0 and carry 1.
Subtract from right to left. When a column needs 0-1, borrow 1 from the next column, just as you do in decimal subtraction. In computer systems, subtraction is often handled by adding the two's complement of the second value.
The 1's complement changes every bit to its opposite value. The 2's complement takes that 1's complement result and adds 1. This is the standard method used to represent signed integers in most computer systems.
Binary arithmetic is the foundation of digital logic, machine-level computation, memory storage, and processor operations. Students use binary operation calculators to learn number systems, and developers use them to check low-level calculations, signed values, and bit-based workflows.
If you are studying number systems and digital electronics, you may also want to use the code conversion calculators for BCD, Gray code, and ASCII conversion, the logic gate calculators for AND, OR, XOR, and NAND operations, the Boolean algebra calculators for truth tables and canonical forms, and the Karnaugh map calculators for Boolean simplification.
A binary operation calculator is an online tool that works with base-2 numbers to perform arithmetic such as addition, subtraction, multiplication, and division, and also helps with complement operations.
The 1's complement simply reverses each bit. The 2's complement reverses each bit and then adds 1, which makes it useful for signed binary representation and subtraction in computing.
Yes. The page is designed for quick checking, learning, and step verification for common binary arithmetic problems.
For more background on binary numbers and complement notation, see Binary number, Two's complement, and MDN Web Docs on bits.