Binary Addition
Adding 10 and 13 in decimal gives 23, which equals 10111 in binary.
1010 + 1101
Result: 10111
Use this binary calculator to solve binary arithmetic and bitwise operations in one place. It accepts binary inputs, shows decimal interpretation, and returns the result with a step-by-step explanation.
Enter binary numbers (using only 0s and 1s), select an operation, and click Calculate to see the result with step-by-step solution.
Binary is a base-2 number system that uses only two digits: 0 and 1. It is the fundamental language of computers and digital systems.
Each digit in a binary number is called a 'bit' (binary digit), and each bit represents a power of 2, starting from the rightmost bit (2^0 = 1) and increasing as you move left.
Enter valid binary values made of only 0 and 1, choose the operation you need, and review the binary and decimal result instantly.
Tip: the NOT operation only uses the first input and flips every bit in that value.
Adding 10 and 13 in decimal gives 23, which equals 10111 in binary.
1010 + 1101
Result: 10111
Multiplying 5 by 3 gives 15, and 15 is written as 1111 in binary.
101 × 11
Result: 1111
Each position stays 1 only where both binary digits are 1.
1101 AND 1011
Result: 1001
XOR returns 1 where the bits differ and 0 where they match.
1101 XOR 1011
Result: 0110
A binary calculator performs arithmetic and bitwise operations on binary values and shows the result in binary, often alongside the decimal value for easier verification.
Binary is a base-2 number system, so every valid binary number is built only from the digits 0 and 1.
Binary arithmetic treats the inputs as whole numbers for addition, subtraction, multiplication, and division. Bitwise operations compare or invert each bit position individually.
NOT is a unary bitwise operation, so it works on a single binary input and flips each bit from 0 to 1 or from 1 to 0.