βΉοΈ Skipped - page is already crawled
| Filter | Status | Condition | Details |
|---|---|---|---|
| HTTP status | PASS | download_http_code = 200 | HTTP 200 |
| Age cutoff | PASS | download_stamp > now() - 6 MONTH | 0.7 months ago |
| History drop | PASS | isNull(history_drop_reason) | No drop reason |
| Spam/ban | PASS | fh_dont_index != 1 AND ml_spam_score = 0 | ml_spam_score=0 |
| Canonical | PASS | meta_canonical IS NULL OR = '' OR = src_unparsed | Not set |
| Property | Value |
|---|---|
| URL | https://byjus.com/maths/binary-multiplication/ |
| Last Crawled | 2026-03-20 20:19:38 (21 days ago) |
| First Indexed | 2019-05-05 02:38:57 (6 years ago) |
| HTTP Status Code | 200 |
| Meta Title | null |
| Meta Description | null |
| Meta Canonical | null |
| Boilerpipe Text | Binary multiplication
is one of the four binary arithmetic. The other three fundamental operations are addition, subtraction and division. In the case of a
binary operation
, we deal with only two digits, i.e. 0 and 1. The operation performed while finding the binary product is similar to the conventional multiplication method. The four major steps in binary digit multiplication are:
0 Γ 0 = 0
0 Γ 1 = 0
1 Γ 0 = 0
1 Γ 1 = 1Β Β
Note: The binary product of the two binary numbers 1 and 1 is equal to 1 only. And no additional number is borrowed or carried forward in this operation.
Based on the above specification, we will solve here the problems online based on the multiplication of binary numbers.Β Β
In this section, you will get answers for the questions about binary multiplication, including:
What is Binary multiplication?
Procedure to multiply two binary numbers
Steps to Solve Binary multiplication using examples
What is Binary Multiplication?
The binary multiplication operation is actually a process of addition and shifting operation. This process has to be continued until all the multiplier is done, and finally, the addition operation is made.
Similar to the decimal system, the multiplication of the binary numbers is done by multiplying the multiplicand with the multiplier. It is noted that the multiplication by zero makes all the bits zero, and this step may be ignored in the intermediate steps. The multiplication by 1 makes all the multiplicand value unchanged.
Binary Multiplication Table
The multiplication table for binary numbers is given below.
Binary Number
Multiplication Value
0 x 0
0
1 x 0
0
0 x 1
0
1 x 1
1
Also, read:
Binary Addition
Binary Division
Binary Subtraction
Binary Multiplication Rules
Binary multiplication, like other
binary operations
, is much easier, unlike the decimal multiplication when you remember the following multiplication rules. The rules of binary multiplication are:
0 Γ 0 = 0
0 Γ 1 = 0
1 Γ 0 = 0
1 Γ 1 = 1Β
[No borrow or carry method is applicable here]
As per these rules, it very clear, that if the binary multiplication includes 0, then it will result in zero itself. Hence,
Binary product of 0 and 0 is equal to 0
Binary product of 0 and 1 is equal to 0
Binary product of 1 and 0 is equal to 0
But,
Binary product of 1 and 1 is equal to 1.
To differentiate the rules for multiplication of binary numbers from other binary operations such as addition, subtraction and division, please refer to below given table:
Addition
Subtraction
Division
0+0 = 0
0-0 = 0
0Γ·0 = 0
0+1 = 1
0-1 = 1 (1 is borrowed)
0Γ·1 = 0
1+0 = 1
1-0 = 1
1Γ·1 = 1
1+1 = 0 (1 is carry forwarded)
1-1 = 0
Examples of Binary Multiplication
Some binary multiplication examples are given below for a better understanding of this concept.
Example 1
: Solve 1010 Γ 101
Solution:
1010 Γ 101
1010
(Γ) 101
ββββββ
1010
0000
ββββββ
01010 β¦β¦. First Intermediate Sum
1010
βββββββ
110010
Comparison with Decimal values:
1010
2
= 10
10
1010
2
= 5
10
10 x 5 = 50
10
(110010)
2
= 50
10
Another example of binary multiplication with a decimal point is as follows:
Question:
1011.01 Γ 110.1
Solution:
Here, the decimal point is placed three places from the least significant bit. Because, the binary number 1011.01, the decimal point is 2 places from the LSB and 110.1 the decimal point is placed 1 place from the LSB.
Binary Multiplication Questions
Solve the below-given questions using multiplication rules, based for binary numbers.
Multiply 10001 x 111
Solve 10101 x 110
Find the value of 11111 x 10000
For more information on binary operations like addition, subtraction, and division operations register with BYJUβS -The Learning App and also watch exciting videos to learn with ease.
Frequently Asked Questions
Q1
What is Binary Multiplication?
Binary multiplication, unlike decimal subtraction, involves only two digits, i.e. 0 and 1. Visit BYJUβS to learn everything about binary multiplication.
Q2
What are the Rules of Binary Multiplication?
There are four rules of binary multiplication which are:
0 Γ 0 = 0
0Β Γ 1 = 0
1Β Γ 0 = 0
1Β Γ 1 = 1
Q3
How to do binary multiplication?
To solve multiplication problems based on binary numbers, we have to use the four primary rules designated for this operation. For example, if we have to multiply 110 by 100, then we get;
110
XΒ Β Β 100
βββ
000
000
110
βββ-
11000
βββ
Q4
What are the steps for binary multiplication?
The binary multiplication is very much similar to the usual multiplication method of integers. First, we need to multiply each digit of one binary number to each digit of another binary number. And then add them all together to get the final result.
Q5
What is the binary product of 1001 and 1011?
The binary product of 1001 and 1011 is 1100011. |
| Markdown | 
**Binary multiplication** is one of the four binary arithmetic. The other three fundamental operations are addition, subtraction and division. In the case of a [binary operation](https://byjus.com/maths/binary-operation/), we deal with only two digits, i.e. 0 and 1. The operation performed while finding the binary product is similar to the conventional multiplication method. The four major steps in binary digit multiplication are:
| |
|---|
| 0 Γ 0 = 0 0 Γ 1 = 0 1 Γ 0 = 0 1 Γ 1 = 1 |
Note: The binary product of the two binary numbers 1 and 1 is equal to 1 only. And no additional number is borrowed or carried forward in this operation.
Based on the above specification, we will solve here the problems online based on the multiplication of binary numbers.
In this section, you will get answers for the questions about binary multiplication, including:
- What is Binary multiplication?
- Procedure to multiply two binary numbers
- Steps to Solve Binary multiplication using examples
## What is Binary Multiplication?
The binary multiplication operation is actually a process of addition and shifting operation. This process has to be continued until all the multiplier is done, and finally, the addition operation is made.
Similar to the decimal system, the multiplication of the binary numbers is done by multiplying the multiplicand with the multiplier. It is noted that the multiplication by zero makes all the bits zero, and this step may be ignored in the intermediate steps. The multiplication by 1 makes all the multiplicand value unchanged.
### Binary Multiplication Table
The multiplication table for binary numbers is given below.
| | |
|---|---|
| **Binary Number** | **Multiplication Value** |
| 0 x 0 | 0 |
| 1 x 0 | 0 |
| 0 x 1 | 0 |
| 1 x 1 | 1 |
**Also, read:**
| |
|---|
| [Binary Addition](https://byjus.com/maths/binary-addition/) [Binary Division](https://byjus.com/maths/binary-division/) [Binary Subtraction](https://byjus.com/maths/binary-subtraction/) |
## Binary Multiplication Rules
Binary multiplication, like other [binary operations](https://byjus.com/maths/binary-operation/), is much easier, unlike the decimal multiplication when you remember the following multiplication rules. The rules of binary multiplication are:
- 0 Γ 0 = 0
- 0 Γ 1 = 0
- 1 Γ 0 = 0
- 1 Γ 1 = 1 \[No borrow or carry method is applicable here\]
As per these rules, it very clear, that if the binary multiplication includes 0, then it will result in zero itself. Hence,
Binary product of 0 and 0 is equal to 0
Binary product of 0 and 1 is equal to 0
Binary product of 1 and 0 is equal to 0
But,
Binary product of 1 and 1 is equal to 1.
To differentiate the rules for multiplication of binary numbers from other binary operations such as addition, subtraction and division, please refer to below given table:
| | | |
|---|---|---|
| Addition | Subtraction | Division |
| 0+0 = 0 | 0-0 = 0 | 0Γ·0 = 0 |
| 0+1 = 1 | 0-1 = 1 (1 is borrowed) | 0Γ·1 = 0 |
| 1+0 = 1 | 1-0 = 1 | 1Γ·1 = 1 |
| 1+1 = 0 (1 is carry forwarded) | 1-1 = 0 | |
## Examples of Binary Multiplication
Some binary multiplication examples are given below for a better understanding of this concept.
**Example 1**: Solve 1010 Γ 101
**Solution:**
1010 Γ 101
1010
(Γ) 101
ββββββ
1010
0000
ββββββ
01010 β¦β¦. First Intermediate Sum
1010
βββββββ
110010
Comparison with Decimal values:
10102 \= 1010
10102 = 510
10 x 5 = 5010
(110010)2 = 5010
Another example of binary multiplication with a decimal point is as follows:
**Question:** 1011.01 Γ 110.1
**Solution:**

Here, the decimal point is placed three places from the least significant bit. Because, the binary number 1011.01, the decimal point is 2 places from the LSB and 110.1 the decimal point is placed 1 place from the LSB.
### Binary Multiplication Questions
Solve the below-given questions using multiplication rules, based for binary numbers.
1. Multiply 10001 x 111
2. Solve 10101 x 110
3. Find the value of 11111 x 10000
For more information on binary operations like addition, subtraction, and division operations register with BYJUβS -The Learning App and also watch exciting videos to learn with ease.
## Frequently Asked Questions
Q1
### What is Binary Multiplication?
Binary multiplication, unlike decimal subtraction, involves only two digits, i.e. 0 and 1. Visit BYJUβS to learn everything about binary multiplication.
Q2
### What are the Rules of Binary Multiplication?
There are four rules of binary multiplication which are:
- 0 Γ 0 = 0
- 0 Γ 1 = 0
- 1 Γ 0 = 0
- 1 Γ 1 = 1
Q3
### How to do binary multiplication?
To solve multiplication problems based on binary numbers, we have to use the four primary rules designated for this operation. For example, if we have to multiply 110 by 100, then we get;
110
X 100
βββ
000
000
110
βββ-
11000
βββ
Q4
### What are the steps for binary multiplication?
The binary multiplication is very much similar to the usual multiplication method of integers. First, we need to multiply each digit of one binary number to each digit of another binary number. And then add them all together to get the final result.
Q5
### What is the binary product of 1001 and 1011?
The binary product of 1001 and 1011 is 1100011.
Quiz on Binary Multiplication
Q5

Put your understanding of this concept to test by answering a few MCQs. Click βStart Quizβ to begin\!
Select the correct answer and click on the βFinishβ button
Check your score and answers at the end of the quiz
Start Quiz
Congrats\!
Visit BYJUβS for all Maths related queries and study materials
Your result is as below
0 out of 0 arewrong
0 out of 0 are correct
0 out of 0 are Unattempted
View Quiz Answers and Analysis
X
Login To View Results
Mobile Number\*
Send OTP
Did not receive OTP?
Request OTP on Voice Call
Login To View Results
Name\*
Email ID\*
Grade\*
City\*
View Result
#### Comments
### Leave a Comment [Cancel reply](https://byjus.com/maths/binary-multiplication/#respond)

#### Register with BYJU'S & Download Free PDFs
#### Register with BYJU'S & Watch Live Videos |
| Readable Markdown | **Binary multiplication** is one of the four binary arithmetic. The other three fundamental operations are addition, subtraction and division. In the case of a [binary operation](https://byjus.com/maths/binary-operation/), we deal with only two digits, i.e. 0 and 1. The operation performed while finding the binary product is similar to the conventional multiplication method. The four major steps in binary digit multiplication are:
- 0 Γ 0 = 0
- 0 Γ 1 = 0
- 1 Γ 0 = 0
- 1 Γ 1 = 1
Note: The binary product of the two binary numbers 1 and 1 is equal to 1 only. And no additional number is borrowed or carried forward in this operation.
Based on the above specification, we will solve here the problems online based on the multiplication of binary numbers.
In this section, you will get answers for the questions about binary multiplication, including:
- What is Binary multiplication?
- Procedure to multiply two binary numbers
- Steps to Solve Binary multiplication using examples
## What is Binary Multiplication?
The binary multiplication operation is actually a process of addition and shifting operation. This process has to be continued until all the multiplier is done, and finally, the addition operation is made.
Similar to the decimal system, the multiplication of the binary numbers is done by multiplying the multiplicand with the multiplier. It is noted that the multiplication by zero makes all the bits zero, and this step may be ignored in the intermediate steps. The multiplication by 1 makes all the multiplicand value unchanged.
### Binary Multiplication Table
The multiplication table for binary numbers is given below.
| | |
|---|---|
| **Binary Number** | **Multiplication Value** |
| 0 x 0 | 0 |
| 1 x 0 | 0 |
| 0 x 1 | 0 |
| 1 x 1 | 1 |
**Also, read:**
- [Binary Addition](https://byjus.com/maths/binary-addition/)
- [Binary Division](https://byjus.com/maths/binary-division/)
- [Binary Subtraction](https://byjus.com/maths/binary-subtraction/)
## Binary Multiplication Rules
Binary multiplication, like other [binary operations](https://byjus.com/maths/binary-operation/), is much easier, unlike the decimal multiplication when you remember the following multiplication rules. The rules of binary multiplication are:
- 0 Γ 0 = 0
- 0 Γ 1 = 0
- 1 Γ 0 = 0
- 1 Γ 1 = 1 \[No borrow or carry method is applicable here\]
As per these rules, it very clear, that if the binary multiplication includes 0, then it will result in zero itself. Hence,
Binary product of 0 and 0 is equal to 0
Binary product of 0 and 1 is equal to 0
Binary product of 1 and 0 is equal to 0
But,
Binary product of 1 and 1 is equal to 1.
To differentiate the rules for multiplication of binary numbers from other binary operations such as addition, subtraction and division, please refer to below given table:
| | | |
|---|---|---|
| Addition | Subtraction | Division |
| 0+0 = 0 | 0-0 = 0 | 0Γ·0 = 0 |
| 0+1 = 1 | 0-1 = 1 (1 is borrowed) | 0Γ·1 = 0 |
| 1+0 = 1 | 1-0 = 1 | 1Γ·1 = 1 |
| 1+1 = 0 (1 is carry forwarded) | 1-1 = 0 | |
## Examples of Binary Multiplication
Some binary multiplication examples are given below for a better understanding of this concept.
**Example 1**: Solve 1010 Γ 101
**Solution:**
1010 Γ 101
1010
(Γ) 101
ββββββ
1010
0000
ββββββ
01010 β¦β¦. First Intermediate Sum
1010
βββββββ
110010
Comparison with Decimal values:
10102 \= 1010
10102 = 510
10 x 5 = 5010
(110010)2 = 5010
Another example of binary multiplication with a decimal point is as follows:
**Question:** 1011.01 Γ 110.1
**Solution:**

Here, the decimal point is placed three places from the least significant bit. Because, the binary number 1011.01, the decimal point is 2 places from the LSB and 110.1 the decimal point is placed 1 place from the LSB.
### Binary Multiplication Questions
Solve the below-given questions using multiplication rules, based for binary numbers.
1. Multiply 10001 x 111
2. Solve 10101 x 110
3. Find the value of 11111 x 10000
For more information on binary operations like addition, subtraction, and division operations register with BYJUβS -The Learning App and also watch exciting videos to learn with ease.
## Frequently Asked Questions
Q1
### What is Binary Multiplication?
Binary multiplication, unlike decimal subtraction, involves only two digits, i.e. 0 and 1. Visit BYJUβS to learn everything about binary multiplication.
Q2
### What are the Rules of Binary Multiplication?
There are four rules of binary multiplication which are:
- 0 Γ 0 = 0
- 0 Γ 1 = 0
- 1 Γ 0 = 0
- 1 Γ 1 = 1
Q3
### How to do binary multiplication?
To solve multiplication problems based on binary numbers, we have to use the four primary rules designated for this operation. For example, if we have to multiply 110 by 100, then we get;
110
X 100
βββ
000
000
110
βββ-
11000
βββ
Q4
### What are the steps for binary multiplication?
The binary multiplication is very much similar to the usual multiplication method of integers. First, we need to multiply each digit of one binary number to each digit of another binary number. And then add them all together to get the final result.
Q5
### What is the binary product of 1001 and 1011?
The binary product of 1001 and 1011 is 1100011. |
| Shard | 185 (laksa) |
| Root Hash | 6322170921519322385 |
| Unparsed URL | com,byjus!/maths/binary-multiplication/ s443 |