Computer Science, asked by vidyagajrani47, 1 month ago

Write the rules to multiply two Binary numbers. ​

Answers

Answered by manishaprajapati2222
1

Answer:

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]

Answered by Winterbear22
3

Answer:

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.

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:(see the attachment please)

Attachments:
Similar questions