Saved Bookmarks
| 1. |
Booth multiplication algorithm with an example |
|
Answer» The numerical example of the BOOTH's Multiplication ALGORITHM is 7 x 3 = 21 and the BINARY representation of 21 is 10101. Here, we get the resultant in binary 00010101. Now we convert it into decimal, as (000010101)10 = 2*4 + 2*3 + 2*2 + 2*1 + 2*0 => 21. |
|