Binary Division Calculator


    

Understanding Binary Division

Binary division is similar to decimal long division but works with base 2 numbers — only digits 0 and 1.

Binary Division Rules


Step-by-Step Example

Divide 101101 (decimal 45) by 101 (decimal 5):

Dividend: 101101 (45 decimal)
Divisor:  101    (5 decimal)

Process:
- Take the leftmost bits equal to the divisor length (3 bits): 101 (5 decimal)
- 101 ÷ 101 = 1 → write 1 in quotient, subtract divisor from bits: 101 - 101 = 0
- Bring down next bit: 1 → current bits: 01 (less than divisor)
- Write 0 in quotient
- Bring down next bit: 1 → current bits: 011 (3 decimal, less than divisor)
- Write 0 in quotient
- Bring down next bit: 1 → current bits: 0111 (7 decimal)
- 101 (5 decimal) fits into 0111 (7 decimal)
- 0111 - 101 = 010 (2 decimal)
- Write 1 in quotient

Final quotient: 1001 (9 decimal)
Remainder:  10   (2 decimal)
      

Tips for Binary Division

Real-World Applications

Try using the calculator above to experiment with your own binary division problems and see the detailed steps!

Decimal to Binary
Binary to Decimal
Hex to Binary
Binary to Hex
Decimal to Hex
Hex to Decimal
Binary Addition
Binary Subtraction
Binary Multiplication
Binary Division
-->