Skip to main content
Skip to main content

What is Binary Multiplication?

Decimal numbers vs. binary numbers
Decimal numbers vs. binary numbers

Binary multiplication is multiplying two binary numbers. Binary numbers are base-2 numbers that use only two digits: 0 and 1. This is different from our regular decimal system that uses ten digits (0-9).

Why learn binary? Computers use binary numbers to process information because they work with electrical signals that can be either on (1) or off (0). Learning binary multiplication helps us understand how computers perform calculations.

Binary multiplication works similarly to decimal multiplication but is actually simpler because you only work with two digits. The key is understanding the basic rules of multiplying 0s and 1s.

Binary Multiplication Rules

Binary multiplication has only four simple rules to remember. These rules are much simpler than the multiplication tables we use in decimal!

First Number Second Number Result
0 0 0
0 1 0
1 0 0
1 1 1

Notice that:

  • Multiplying by 0 always gives 0
  • Multiplying by 1 gives the other number
  • The only time you get 1 is when both numbers are 1

How to Multiply Binary Numbers

Multiplying binary numbers is similar to multiplying decimal numbers, but simpler because we only use 0s and 1s. Let's multiply 101 (which is 5 in decimal) by 11 (which is 3 in decimal) step by step:

1 Write the numbers vertically:
  101
×  11
------
                    
2 Multiply each digit of the bottom number by the top number (remember the rules!):
  101
×  11
------
  101   ← 101 × 1 (first digit)
 101    ← 101 × 1 (second digit, shifted left)
------
                    
3 Add the results together:
  101
+1010  ← Note the extra zero for shifting
------
 1111
                    
4 The result is 1111, which is 15 in decimal (5 × 3 = 15).

Examples of Binary Multiplication

Let's look at more examples of binary multiplication:

Example 1: Multiply 10 (2 in decimal) by 10 (2 in decimal)

  10
× 10
----
  00  ← 10 × 0
 10   ← 10 × 1 (shifted left)
----
 100  ← Result (4 in decimal)
                

2 × 2 = 4, and 100 in binary is 4 in decimal.

Example 2: Multiply 111 (7 in decimal) by 101 (5 in decimal)

   111
×  101
------
   111   ← 111 × 1
  000    ← 111 × 0 (shifted left)
 111     ← 111 × 1 (shifted left two positions)
------
 100011  ← Result (35 in decimal)
                

7 × 5 = 35, and 100011 in binary is 32 + 2 + 1 = 35 in decimal.

Binary Multiplication Quiz

Test your understanding with this 5-question quiz. Choose the correct answer for each question.

1. What is the result of binary multiplication: 1 × 0?
2. What is the binary result of 101 (5) × 10 (2)?
3. Which of these is the correct step when multiplying 11 × 11 in binary?
4. What is the decimal equivalent of the binary product 1001 × 10?
5. Why do computers use binary numbers?

Frequently Asked Questions

Here are answers to common questions about binary multiplication:

Binary Trivia

Discover interesting facts about binary numbers and computer math:

Copyright © 2025 Workybooks. Made with ♥ in California.