Binary multiplication
Table of contents
Multiplication
Binary multiplication requires two concepts i.e., binary addition and decimal multiplication. You can refer to the example below which describes how multiplication occurs in binary. It is similar to decimal multiplication. Important points to be noted are as follows :
1 x 1 = 1
1 x 0 = 0
1 1 0 (6)
x 1 0 1 (5)
------------
1 1 0
0 0 0 x
1 1 0 x x
--------------
1 1 1 1 0 (30)
--------------
- Perform multiplication of the binary numbers:
01001
×01011
= ?- 010000010
- 010110010
- 010100010
- 010010010
- 010000010
- Perform multiplication of the binary numbers:
001101
×1111
= ?- 011000011
- 011001111
- 010011001
- 011010101
- 011000011