Multiply two binary numbers and see the full step-by-step working, including all partial products and binary addition. Enter any positive binary integers using only the digits 0 and 1. The result is shown in binary, decimal, hexadecimal, and octal.
Binary multiplication uses the same long-multiplication method you would use with decimal numbers, but because binary only has two digits (0 and 1), the rules are much simpler. When you multiply a binary number by 0 the result is 0. When you multiply by 1 the result is a copy of the number unchanged.
For each bit in the multiplier, working from right to left, you write either a row of zeros (if the bit is 0) or a copy of the multiplicand (if the bit is 1). Each successive row is shifted one place to the left compared to the row below it, exactly as in decimal long multiplication. Once all partial products are written, you add them together using binary addition rules: 0+0=0, 0+1=1, 1+1=10 (carry 1), 1+1+1=11 (carry 1).
Using the default values from this calculator:
1011 (decimal 11)1101 (decimal 13)10001111 in binary| Step | Multiplier bit | Partial product (shifted) |
|---|---|---|
| Bit 0 (rightmost, value 1) | 1 | 0001011 |
| Bit 1 (value 0) | 0 | 0000000 |
| Bit 2 (value 1) | 1 | 0101100 |
| Bit 3 (value 1) | 1 | 1011000 |
| Sum of all partial products | 10001111 |
The result 10001111 equals 128 + 8 + 4 + 2 + 1 = 143 in decimal, confirming the answer.
| Bit A | Bit B | Product |
|---|---|---|
| 0 | 0 | 0 |
| 0 | 1 | 0 |
| 1 | 0 | 0 |
| 1 | 1 | 1 |
Binary multiplication of individual bits follows AND logic: the product of two bits is 1 only when both bits are 1. The complexity arises when carrying during the addition of partial products.
To check your answer, convert the binary result to decimal by multiplying each bit by its positional value (a power of 2) and summing. The rightmost bit is 2^0 = 1, the next is 2^1 = 2, then 2^2 = 4, and so on. For example, 10001111 = 128 + 0 + 0 + 0 + 8 + 4 + 2 + 1 = 143.
Method: Standard binary long multiplication: for each bit of the multiplier (right to left), form a partial product by ANDing with the multiplicand and shifting left by the bit position, then sum all partial products using binary addition. Inputs are treated as unsigned integers. Conversion to decimal uses the positional value formula: sum of (bit × 2^position) for all bit positions.
This calculator works with unsigned binary integers. Negative numbers (two's complement) and binary fractions are not supported. The maximum supported input is 32 bits per number. For very large numbers, verify the result using the decimal equivalents shown.
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.