Divide two binary numbers and see the quotient and remainder in both binary and decimal. The calculator also shows the full step-by-step long division working so you can follow how each bit of the result is determined.
Binary division follows exactly the same long division procedure as decimal division, but the only digits available are 0 and 1. Because of this restriction, the only question at each step is whether the divisor fits into the current partial remainder: if the partial remainder is greater than or equal to the divisor, the answer is 1 (and the divisor is subtracted); if not, the answer is 0 (and nothing is subtracted).
Dividend: 1101 (decimal 13). Divisor: 10 (decimal 2).
| Step | Partial Remainder | Divisor fits? | Quotient bit | After subtraction |
|---|---|---|---|---|
| Bring down 1 | 1 | No (1 < 10) | 0 | 1 |
| Bring down 1 | 11 | Yes (11 ≥ 10) | 1 | 11 - 10 = 1 |
| Bring down 0 | 10 | Yes (10 ≥ 10) | 1 | 10 - 10 = 0 |
| Bring down 1 | 01 | No (1 < 10) | 0 | 1 |
Quotient: 0110 = 110 (decimal 6). Remainder: 1 (decimal 1). Verification: 10 x 110 + 1 = 1100 + 1 = 1101. Correct.
In decimal division you ask "how many times does the divisor fit (0 to 9)?" In binary division you only ask "does it fit once or not at all (0 or 1)?" This simplicity makes binary division straightforward to implement in digital hardware using shift-and-subtract circuits, which is the basis for division operations in all modern processors.
The remainder is always strictly less than the divisor, just as in decimal division. If the dividend is exactly divisible by the divisor, the remainder is 0. You can verify any binary division result by checking: Divisor x Quotient + Remainder = Dividend. Both operations (multiplication and addition) can be performed in binary to confirm the result.
Method: Binary long division (restoring division algorithm). Each step determines one quotient bit by comparing the partial remainder against the divisor and subtracting when the divisor fits. Results verified by computing Divisor x Quotient + Remainder and confirming it equals the Dividend.
This calculator performs exact integer binary division. Fractional binary division (binary fixed-point) is not covered here. Inputs are limited to 32-bit unsigned integers.
If you've found a bug, or would like to contact us, or learn more about James Graham and Calculate.co.nz.
Calculate.co.nz is partnered with Interest.co.nz for New Zealand's highest quality calculators and financial analysis.
Calculate.co.nz is the sister site of CalculatorHub.com, the world's largest calculator website by tool count.
All calculators and tools are provided for educational and indicative purposes only and do not constitute financial advice.
Calculate.co.nz is proudly part of the Realtor.co.nz group, New Zealand's leading property transaction literacy platform, helping Kiwis understand the home buying and selling process from start to finish. Whether you're a first home buyer navigating your first property purchase, an investor evaluating your next acquisition, or a homeowner planning to sell, Realtor.co.nz provides clear, independent, and trustworthy guidance on every step of the New Zealand property transaction journey.
Calculate.co.nz is also partnered with Health Based Building and Premium Homes to promote informed choices that lead to better long-term outcomes for Kiwi households.
Calculate.co.nz is hosted in Auckland via SiteHost new Zealand.
All content on this website, including calculators, tools, source code, and design, is protected under the Copyright Act 1994 (New Zealand). No part of this site may be reproduced, copied, distributed, stored, or used in any form without prior written permission from the owner.
About & trust: Why Calculate is NZ's most comprehensive · By the Numbers · How we compare · Editorial standards · How we keep data current · NZ finance glossary · Research & data · Financial literacy NZ · About · Privacy policy · Terms of use
Reviewed and maintained. Last reviewed 2026-07-02 and checked on a twice-monthly cycle against IRD, RBNZ and Stats NZ. How we keep data current.
© 2026 Calculate.co.nz. All rights reserved. Building free NZ calculators since 2011.