Binary Division Calculator
Divide binary integers and see the exact base-2 quotient, remainder, and decimal check.
About binary division
Binary division examples
Examples show exact division and nonzero remainders.
| Division | Quotient and remainder | Decimal check |
|---|---|---|
| 1100 ÷ 11 | Quotient 100, remainder 0 | 12 ÷ 3 = 4 exactly. |
| 1101 ÷ 11 | Quotient 100, remainder 1 | 13 = 3 × 4 + 1. |
| 101010 ÷ 101 | Quotient 1000, remainder 10 | 42 = 5 × 8 + 2. |
| 1111 ÷ 10 | Quotient 111, remainder 1 | 15 = 2 × 7 + 1. |
How to divide binary numbers
- Enter the binary dividend using only zeros and ones.
- Enter a nonzero binary divisor using the same unsigned integer notation.
- Select Divide Binary Numbers to perform exact integer division.
- Read the quotient and remainder, then confirm them with the decimal check.
Binary division FAQ
How do I verify the quotient and remainder?
Multiply the divisor by the quotient and add the remainder. That total must equal the original dividend, and the remainder must be smaller than the divisor.
Why is division by zero rejected?
No number multiplied by zero can reconstruct a nonzero dividend. A unique finite quotient therefore cannot be defined for a zero divisor.
Does the calculator show fractional binary digits?
No. It performs integer division and preserves the leftover amount as a remainder, which is exact and unambiguous.
Do leading zeros change a division?
No. Leading zeros do not change the numerical value of either unsigned operand or the resulting quotient and remainder.
Can the remainder equal the divisor?
No. If the remainder were at least the divisor, one more divisor could be subtracted and the quotient would not yet be complete.