closed by
1,402 views
0 votes
0 votes
closed with the note: Doubt cleared

Let's say we have a multiplier $ (10101010)_2 $. Then applying booth re-coding,

Method 1:

appending a zero at the end:  $ (1\ 0\ 1\ 0\ 1\ 0\ 1\ 0\ 0)_2 => (-1\ 1\ -1\ 1\ -1\ 1\ -1\ 0)_2$

Method 2:

without appending a zero at the end: $ (1\ 0\ 1\ 0\ 1\ 0\ 1\ 0)_2 => (-1\ 1\ -1\ 1\ -1\ 1\ -1)_2$

Which of the above method is correct?

Also, is the following condition true?

#multiplier bits must be equal to #multiplicand bits

Please don't give any ref link because I've already searched but didn't got my doubt cleared. 

closed by

Related questions

1 votes
1 votes
1 answer
3
Na462 asked Apr 16, 2018
1,669 views
Can anybody Explain why is it so that"The worst case of an implementation using Booth’s algorithm is when pairs of 01s or 10s occur very frequently in the multiplier." ...