SlideShare ist ein Scribd-Unternehmen logo
1 von 4
Downloaden Sie, um offline zu lesen
The International Journal of Engineering
And Science (IJES)
||Volume|| 1 ||Issue|| 1 ||Pages|| 18-21 ||2012||
ISSN: 2319 – 1813 ISBN: 2319 – 1805
                                 Multiplication another Hue And Cry
                       Barun Biswas 1, Samar Sen Sarma2, Krishnendu Basuli3
                       1
                           CVPR Un it, Indian Statistical Institute, 203 B.T Road Kolkata-700108, India
                                      2
                                        Department of Co mputer Science and Engineering,
                              University of Calcutta, 92, A.P.C. Road, Kolkata –700 009, India.
                              3
                                Dept. of Co mputer Science, West Bengal State University, India


-----------------------------------------------------------------Abstract--------------------------------------------------------
Multi plication process is not only bounded only in mathematics. It is also applied in many other fields where
a sequence of summing or additi on is to be applied. Multi plication is nothing but a sequence of addi tion
performed repeatedl y. Our basic approach is to consider as many bits of multi plier as possible so that the
total number of partial product. In this paper we tried to i mplement such a techni que where we can consider
more than one two bi ts(compared to Booth’s process of multi plication) of the multi plier to decrease the total
number of parti al product with the other operation like addi tion, shift and complement.

Key Words: Partial product, Shift operation, Comp lement operation, Booth’s process of multiplication, Shift and
add, repeated addition, Div ide and conquer,
---------------------------------------------------------------------------------------------------------------------------------------- -----
Date of Submission: 23, October, 2012                                               Date of Publication: 10, November 2012
--------------------------------------------------------------------------------------------------------------------------------------------

                    I.    Introduction                                              For examp le, 4+4+4+4+4+4+4=28                         is
           Multiplication is not new in the field of                        equivalent to the multip licat ion equation 7*4=28.
mathematics. It was developed in ancient age.
Around         18000BC it          was     developed     [6].                              II.      Previous Work
Multiplication is the process of mult iplying or                                      Before discussing the proposed process of
extending some values to a desired value. For this                          mu ltip licat ion let us take a look to those previous
process we need two numbers: mu ltiplicand and                              works that are available at present. To make our
mu ltip lier. Mu ltiplicand is the number which will be                     presentation clear it is necessary to discuss them.
mu ltip lied and multip lier is the number by which
mu ltip licand will be multip lied. We know that                            A.   Repeated additi on multi plication: [4][5]
mu ltip licat ion is commutative and distributed over                           Among the available mu ltiplication algorith ms
addition and subtraction [6].                                               the most simple one is repeated addition
           In the field of mu ltip lication we notice many                  mu ltip licat ion. It has the complexity of O(n) all the
new developed processes, many new techniques are                            time. The logic behind this process is very simple,
being proposed. Many of them are widely accepted.                           simp ly decrease the multiplier by 1 and add the
There are many variat ions in the technique of                              mu ltip licand to the accumulator and repeat the
mu ltip licat ion. We will see shortly many of these                        process until the mult iplier become 0(zero). It is clear
techniques in brief.                                                        that the process will run number of t imes equals to
           Let see the original process                    of               the mult iplier.
mu ltip licat ion. In the mu ltip lication process there are
two main factors namely mu ltiplicand and multip lier.                      B.    Shift and add [4][5 ]
The operation of mult iplication is performed as a                              The next process of mult iplication is “shift and
summation of mu ltiple additions. The following                             add”. This process is performed on the binary
process describes it in short. The result of                                number. Here the LSB of multip lier is checked, if it
mu ltip licat ion is the total number (product) that                        is 1 then mu ltiplicand is added otherwise the previous
would be obtained by combin ing several (mu ltip lier)                      partial product is shift one bit to the right. This
groups of similar size (mu ltip licand). The same result                    process is continued until the MSB of the multiplier
can be obtained by repeated addition. If we are                             is checked. This is a sequential multiplication scheme
combin ing 7 groups with 4 objects in each group, we                        with worst case time delay proportional to the
could arrive at the same answer by addition.                                numebr of bits O(n). So in this process we notice that


www.theijes.com                                                The IJES                                                           Page 18
Multiplication another Hue And Cry
the pertial product of the process is less tahn the                 E.  Booth’s Multi plication[1][3]
previous process. But in this process if all the                    Booth's mul ti plication algorithm is a multip lication
multiplier bit is 1 jthen the total number of pertial               algorith m that multip lies two signed binary numbers
product is equal to the number of bit present in the                in two's co mplement notation. The algorith m was
multiplier.                                                         invented by Andrew Donald Booth in 1951 wh ile
                                                                    doing research on crystallography at Birkbeck
C.   Array multi plier [4][5]
                                                                    College in Bloo msbury, London. Booth used desk
    The next topic is to be discussed is Array
                                                                    calculators that were faster at shift ing than adding
multiplier. Checking the bits of the multiplier one at
                                                                    and created the algorithm to increase their speed.
time and forming the pertial product is a shift
                                                                    Booth's algorithm is of interest in the study of
operation that requirs a sequence of add and shift
                                                                    computer architecture
microperation. The multiplication of two binary
numbers can be done with one micro operation by
means of a combinational circuit that forms the                              Booth's algorithm involves repeatedly
product bits all at once.                                           adding one of two predetermined values Multiplicand
                                                                    and Multiplier to a product, then performing a
 Let us illustrate the process with an                              rightward arith metic shift on product. Let M and Q
example, let there are two bit multiplicand                         be the multiplicand and multip lier, respectively; and
                                                                    let x and y represent the number of bits in m and r.
                                                                    Then the number of bit in the product is equal to the
The operation is as follows
                                                                    (x+y+1).

                                                                               The Booth’s multip licat ion process is based
                                                                    on the four basic steps. In this process the two
                                                                    mu ltip lier bit is checked and depending on their
                                                                    combination (2^2=4) four different steps is
                                                                    performed. Now let us discuss the Booth’s
                                                                    mu ltip licat ion by taking an examp le.
          A combinational circuit binary multiplier
with more bits can be constructed in a similar                      Let M(mu lt iplicand)        = 000000000001101
fashion. A bit of the multiplier is ANDed with each
bit of the multiplicand in as many levels as there are              Q(mu ltip lier)              =0000000001010101
bits in multiplier. Binary out put in each level of
AND gate is added in parallel with partial product of
                                                                     M =0000000000001101
the product. For j multiplier bits and k multiplicand
bits wee need j*k AND gates and (j-1)*k bits adders
to produce a product of j+k bits.                                     Q =0000000001010101
          As our process is based on the concept of                   =1111111111110011 // mult iplier bit 10
the Booth’s multip lication we shall discuss the                      =000000000001101* // mult iplier bit 01
Booth’s process next .                                                =11111111110011** // mult iplier bit 10
                                                                      =0000000001101*** // mult iplier bit 01
D.   Divide and conquer [2]                                           =111111110011**** // mult iplier bit 10
    In traditional process of mu ltip licat ion we see that           =00000001101***** // mult iplier bit 01
the process of mu ltiplication of two n b it binary                   =1111110011****** // mult iplier bit 10
number require O( ) digit operation . but in d ivide-                 =000001101******* // multip lier b it 01
n-conquer technique the multip lication requires                       =0000010001010001   // product
O(        ) or O(      ) (appro ximately) bit operation.
    In this process binary number is divided into two               In the above examp le we notice that there are three
parts: say the number is X, so the number can be                    operations performed, namely shift, addition,
represented as X= a + b. So in this process we see                  complement.
that there may be four n/2 bit operation but the                    The number of operation is as follows
product (say X*Y) can be represented as three n/2 bit               Shift = 7
mu ltip licat ion. So in this process the complexity can            Addition= 7
be represented as O(          ) = O(     ).                         Co mplement= 4.




www.theijes.com                                          The IJES                                                 Page 19
Multiplication another Hue And Cry
                   I.    MOTIVATION                                          In the proposed process we have seen a new
     One of the techniques of mu ltip lication is Shift           process of mu ltip licat ion. No w let us take an example
and Add mult iplication. We observed the modified                 to illustrate the process and show how efficient this
Shift and Add process by Feynman. This technique is               process is. The example is given below.
illustrated in below to clear the topic.                          Let M=10 and Q=10011
     Let Mult iplicand(M) is 22(10110) and                        So according to the proposed process the
mu ltip lier(Q) is 5(101). So the multip lication process         mu ltip licat ion of the numbers is as follows
is as follo ws
           M        =10110                                        M        =00000010
           Q        =101                                          Q        =00010011
                      10110                                                =11111110          //mult iplier b its 110
                    10110**                                                =000010**          // mult iplier bits 001
                    1101110                                                =1110****          //mult iplier b its 010
                                                                           =010*****          //mult iplier b its 001
    In the above process we notice that the process                        =00100110          //final product
of mult iplication is a Shift and Add multip lication
process, but when a 0(zero) occur the shift as twice.             So in the illustrated process we notice that a big
So here is the logic that when there are one or more              advantage is achieved. If the booth process is applied
than one 0s we can take them as one sequence of                   in the same mu ltiplier (Q) the number of partial
0s.We can apply this logic to some other algorithm to             product, shift operation and complement operation
make that algorithm more efficient.                               are as follows
                                                                  Partial product =4
                                                                  Shift operation =5
          II.     PROPOS ED PROCESS                               Co mplement operation=2
     In the previously discussed process we notice                Whereas the same operations in the proposed is as
one thing that when there is a sequence of 0’s we                 follows
consider each 0(zero) for one single step. Here for               Partial product =3
this reason the number of steps increases each time.              Shift operation =5
So our observation is that if we can consider a                   Co mplement operation=2
sequence of zeros in a single step then the whole                            In the Booth’s process when there is a long
number of steps decreases. One more thing when                    sequence of 0’s or 1’s the whole sequence is treated
there a sequence of 1’s we can take the sequence as               individually, whereas in our p roposed the whole
one step. We notice this process can be applied to                sequence is treated at a single step. As a result the
Booth’s algorithm to make it more efficient.                      number of steps is decreased. It is easily
     The proposed algorithm is as follows                         understandable that if the numbers of steps decrease
Algorithm:                                                        the space complexity also decreased. And also it is
           While starting this algorith m we will take            noticeable that as the number of bits decreased the
one thing in consideration that one extra 0 is added              partial products also decrease. Here is the main goal
as the LSB. Three bits will be considered at a time in            of the proposed process.
general and the last bit fro m previous bit pattern will               If we consider chips to perform these operations
be considered.                                                    then we can see that the time required for shift
Step 1. If the bits are 000 then continue checking                operation (4 bit bidirectional Un iversal shift register
the bits until the bit is 1. Then shift the partial               LS 194) is 1/ 36 ns [7] [8], add operation (4 b it carry
product to the right same as the number of the 0s.                look ahead adder LS 7483) is 45 ns [7] [8] and for
Step 2. If the bits are 001 then continue the                     complement operation (LS hex inverter 7404) is 12
checking the next bit until it is 1. Then add                     ns [7] [8]. So here we can make an assumption that
mu ltip licand and shift the partial p roduct to the right        how much time is saved if we apply this process of
as the number of 0s.                                              mu ltip licat ion instead of others.
Step 3. If the bits are 010 then subtract multiplicand
and shift the partial product three positions right.
Step 4. If the bits are 101 then add multiplicand and
shift the partial product three positions right.
Step 5. If the bits are 110 then check the next bits
until it is 0 and subtract the multiplicand and shift the
partial p roduct to the right as the number of 1s.



www.theijes.com                                        The IJES                                                   Page 20
Multiplication another Hue And Cry
             III.      Future Scope
     In the proposed process of multip licat ion we
notice that if we consider the consecutive 0’s or 1’s
in a single step then the number of partial product                     Dr. Samar Sen S arma
decreases also the other operations like shift                          Professor, Depart ment of Co mputer
operation and complement operation. So here the                         Science and Engineering, Un iversity
total number of other operations also decreases and                     Of Calcutta, India
hence the space and time co mplexity of the whole
operation also decreases. We notice that the divide
and conquer process can also decreases the time and
space required for an operation. So we will try to
merge the proposed process of mult iplication with the
divide and conquer technique so that the total number
of operation with the time and space comp lexity can
be decreased. We notice in different case where
divide and conquer process technique were applied
and the result were as expected. We think in our case
it would not be an exception.

                IV.       Conclusion
     In our proposed process we notice that some
time it seems that considering the sequence of 0’s and
1’s at a single step may increase the maintenance
complexity and over burden the whole process. But
when the proposed process is in real the process is a
big advantage over the existing process of
mu ltip licat ion.
                       REFERENCES
[1]   A. Booth, “A signed binary multiplication technique,” Q.
      J. Me& Appl. March., vol. 4, pp. 236-240, 19.51.
[2]   Alfred V. Aho, John E. Hopcroft, Jeffrey D. Ullmant “The
      design and analysis of computer algorithm” Pearson,
      1974.
[3]   Booth Multiplication Algorithm Abenet Getahun Fall
      2003 CSCI 401
[4]   John P. Hayes “Computer architecture and organization”,
      Second Edition, McGraw-Hill, 1988.
[5]   M. Morris Mano “Computer System Architecture”, Third
      Addition, Prentice Hall, 1993.
[6]   http://en.wikipedia.org/wiki/Multiplication, visited at 12
      nov. 2012
[7]   William D.Anderson, Roberts Loyd Morris, John Miller
      “Designing with TTL integrated circuit”, McGraw-Hill,
      1971
[8]   “TTL data book for design Engineer”, 2 nd edition, Texas
      instrument Inc, 1981




            Barun Biswas
             CVPR Unit, Indian Statistical Institute,
              203 B.T Road Ko lkata-700108, India


            Krishnendu Basuli
            Assistant Professor, Depart ment of
            Co mputer Science, West Bengal State
            University



www.theijes.com                                              The IJES                                 Page 21

Weitere ähnliche Inhalte

Was ist angesagt?

Lecture 2 data structures and algorithms
Lecture 2 data structures and algorithmsLecture 2 data structures and algorithms
Lecture 2 data structures and algorithms
Aakash deep Singhal
 
5 parallel implementation 06299286
5 parallel implementation 062992865 parallel implementation 06299286
5 parallel implementation 06299286
Ninad Samel
 
On the Revision of Action Laws: An Algorithmic Approach
On the Revision of Action Laws: An Algorithmic ApproachOn the Revision of Action Laws: An Algorithmic Approach
On the Revision of Action Laws: An Algorithmic Approach
Ivan Varzinczak
 

Was ist angesagt? (20)

Lecture 2 data structures and algorithms
Lecture 2 data structures and algorithmsLecture 2 data structures and algorithms
Lecture 2 data structures and algorithms
 
A New Method for Vertical Parallelisation of TAN Learning Based on Balanced I...
A New Method for Vertical Parallelisation of TAN Learning Based on Balanced I...A New Method for Vertical Parallelisation of TAN Learning Based on Balanced I...
A New Method for Vertical Parallelisation of TAN Learning Based on Balanced I...
 
Al04605265270
Al04605265270Al04605265270
Al04605265270
 
Chapter two
Chapter twoChapter two
Chapter two
 
11.determination of spot price and optimal power flow in
11.determination of spot price and optimal power flow in11.determination of spot price and optimal power flow in
11.determination of spot price and optimal power flow in
 
Determination of spot price and optimal power flow in
Determination of spot price and optimal power flow inDetermination of spot price and optimal power flow in
Determination of spot price and optimal power flow in
 
Design of 32 bit Parallel Prefix Adders
Design of 32 bit Parallel Prefix Adders Design of 32 bit Parallel Prefix Adders
Design of 32 bit Parallel Prefix Adders
 
Ijsea04031014
Ijsea04031014Ijsea04031014
Ijsea04031014
 
Er24902905
Er24902905Er24902905
Er24902905
 
Fast Multiplier for FIR Filters
Fast Multiplier for FIR FiltersFast Multiplier for FIR Filters
Fast Multiplier for FIR Filters
 
5 parallel implementation 06299286
5 parallel implementation 062992865 parallel implementation 06299286
5 parallel implementation 06299286
 
Testing the Numerical Precisions Required to Execute Real World Programs
Testing the Numerical Precisions Required to Execute Real World Programs Testing the Numerical Precisions Required to Execute Real World Programs
Testing the Numerical Precisions Required to Execute Real World Programs
 
Optimized Reversible Vedic Multipliers for High Speed Low Power Operations
Optimized Reversible Vedic Multipliers for High Speed Low Power OperationsOptimized Reversible Vedic Multipliers for High Speed Low Power Operations
Optimized Reversible Vedic Multipliers for High Speed Low Power Operations
 
Hz3115131516
Hz3115131516Hz3115131516
Hz3115131516
 
Clustbigfim frequent itemset mining of
Clustbigfim frequent itemset mining ofClustbigfim frequent itemset mining of
Clustbigfim frequent itemset mining of
 
El text.tokuron a(2019).jung190711
El text.tokuron a(2019).jung190711El text.tokuron a(2019).jung190711
El text.tokuron a(2019).jung190711
 
Presentation eng
Presentation engPresentation eng
Presentation eng
 
Applying Linear Optimization Using GLPK
Applying Linear Optimization Using GLPKApplying Linear Optimization Using GLPK
Applying Linear Optimization Using GLPK
 
On the Revision of Action Laws: An Algorithmic Approach
On the Revision of Action Laws: An Algorithmic ApproachOn the Revision of Action Laws: An Algorithmic Approach
On the Revision of Action Laws: An Algorithmic Approach
 
Analysis of GF (2m) Multiplication Algorithm: Classic Method v/s Karatsuba-Of...
Analysis of GF (2m) Multiplication Algorithm: Classic Method v/s Karatsuba-Of...Analysis of GF (2m) Multiplication Algorithm: Classic Method v/s Karatsuba-Of...
Analysis of GF (2m) Multiplication Algorithm: Classic Method v/s Karatsuba-Of...
 

Andere mochten auch

The International Journal of Engineering and Science
The International Journal of Engineering and ScienceThe International Journal of Engineering and Science
The International Journal of Engineering and Science
theijes
 
The International Journal of Engineering and Science
The International Journal of Engineering and ScienceThe International Journal of Engineering and Science
The International Journal of Engineering and Science
theijes
 
相關網站 You tube
相關網站 You tube相關網站 You tube
相關網站 You tube
jenny61425
 
The International Journal of Engineering and Science
The International Journal of Engineering and ScienceThe International Journal of Engineering and Science
The International Journal of Engineering and Science
theijes
 
The International Journal of Engineering and Science
The International Journal of Engineering and ScienceThe International Journal of Engineering and Science
The International Journal of Engineering and Science
theijes
 
The International Journal of Engineering and Science
The International Journal of Engineering and ScienceThe International Journal of Engineering and Science
The International Journal of Engineering and Science
theijes
 

Andere mochten auch (17)

The International Journal of Engineering and Science
The International Journal of Engineering and ScienceThe International Journal of Engineering and Science
The International Journal of Engineering and Science
 
The International Journal of Engineering and Science
The International Journal of Engineering and ScienceThe International Journal of Engineering and Science
The International Journal of Engineering and Science
 
How to create user friendly blog in wordpress
How to create user friendly blog in wordpressHow to create user friendly blog in wordpress
How to create user friendly blog in wordpress
 
The International Journal of Engineering and Science (IJES)
The International Journal of Engineering and Science (IJES)The International Journal of Engineering and Science (IJES)
The International Journal of Engineering and Science (IJES)
 
相關網站 You tube
相關網站 You tube相關網站 You tube
相關網站 You tube
 
The International Journal of Engineering and Science
The International Journal of Engineering and ScienceThe International Journal of Engineering and Science
The International Journal of Engineering and Science
 
The International Journal of Engineering and Science
The International Journal of Engineering and ScienceThe International Journal of Engineering and Science
The International Journal of Engineering and Science
 
The International Journal of Engineering and Science (IJES)
The International Journal of Engineering and Science (IJES)The International Journal of Engineering and Science (IJES)
The International Journal of Engineering and Science (IJES)
 
The International Journal of Engineering and Science (IJES)
The International Journal of Engineering and Science (IJES)The International Journal of Engineering and Science (IJES)
The International Journal of Engineering and Science (IJES)
 
The International Journal of Engineering and Science (IJES)
The International Journal of Engineering and Science (IJES)The International Journal of Engineering and Science (IJES)
The International Journal of Engineering and Science (IJES)
 
The International Journal of Engineering and Science (IJES)
The International Journal of Engineering and Science (IJES)The International Journal of Engineering and Science (IJES)
The International Journal of Engineering and Science (IJES)
 
The International Journal of Engineering and Science (IJES)
The International Journal of Engineering and Science (IJES)The International Journal of Engineering and Science (IJES)
The International Journal of Engineering and Science (IJES)
 
The International Journal of Engineering and Science (IJES)
The International Journal of Engineering and Science (IJES)The International Journal of Engineering and Science (IJES)
The International Journal of Engineering and Science (IJES)
 
The International Journal of Engineering and Science (IJES)
The International Journal of Engineering and Science (IJES)The International Journal of Engineering and Science (IJES)
The International Journal of Engineering and Science (IJES)
 
The International Journal of Engineering and Science (IJES)
The International Journal of Engineering and Science (IJES)The International Journal of Engineering and Science (IJES)
The International Journal of Engineering and Science (IJES)
 
The International Journal of Engineering and Science (IJES)
The International Journal of Engineering and Science (IJES)The International Journal of Engineering and Science (IJES)
The International Journal of Engineering and Science (IJES)
 
The International Journal of Engineering and Science
The International Journal of Engineering and ScienceThe International Journal of Engineering and Science
The International Journal of Engineering and Science
 

Ähnlich wie The International Journal of Engineering and Science

JOURNAL PAPER
JOURNAL PAPERJOURNAL PAPER
JOURNAL PAPER
Raj kumar
 
Iaetsd implementation of power efficient iterative logarithmic multiplier usi...
Iaetsd implementation of power efficient iterative logarithmic multiplier usi...Iaetsd implementation of power efficient iterative logarithmic multiplier usi...
Iaetsd implementation of power efficient iterative logarithmic multiplier usi...
Iaetsd Iaetsd
 
Technical Trends_Study of Quantum
Technical Trends_Study of QuantumTechnical Trends_Study of Quantum
Technical Trends_Study of Quantum
Hardik Gohel
 
Programming techniques
Programming techniquesProgramming techniques
Programming techniques
Prabhjit Singh
 
Iaetsd low power high speed vedic multiplier using reversible
Iaetsd low power high speed vedic multiplier using reversibleIaetsd low power high speed vedic multiplier using reversible
Iaetsd low power high speed vedic multiplier using reversible
Iaetsd Iaetsd
 

Ähnlich wie The International Journal of Engineering and Science (20)

F011123134
F011123134F011123134
F011123134
 
JOURNAL PAPER
JOURNAL PAPERJOURNAL PAPER
JOURNAL PAPER
 
Iaetsd implementation of power efficient iterative logarithmic multiplier usi...
Iaetsd implementation of power efficient iterative logarithmic multiplier usi...Iaetsd implementation of power efficient iterative logarithmic multiplier usi...
Iaetsd implementation of power efficient iterative logarithmic multiplier usi...
 
FPGA IMPLEMENTATION OF HIGH SPEED BAUGH-WOOLEY MULTIPLIER USING DECOMPOSITION...
FPGA IMPLEMENTATION OF HIGH SPEED BAUGH-WOOLEY MULTIPLIER USING DECOMPOSITION...FPGA IMPLEMENTATION OF HIGH SPEED BAUGH-WOOLEY MULTIPLIER USING DECOMPOSITION...
FPGA IMPLEMENTATION OF HIGH SPEED BAUGH-WOOLEY MULTIPLIER USING DECOMPOSITION...
 
Fpga implementation of high speed
Fpga implementation of high speedFpga implementation of high speed
Fpga implementation of high speed
 
Technical Trends_Study of Quantum
Technical Trends_Study of QuantumTechnical Trends_Study of Quantum
Technical Trends_Study of Quantum
 
Programming techniques
Programming techniquesProgramming techniques
Programming techniques
 
Iaetsd low power high speed vedic multiplier using reversible
Iaetsd low power high speed vedic multiplier using reversibleIaetsd low power high speed vedic multiplier using reversible
Iaetsd low power high speed vedic multiplier using reversible
 
Implementation of 16 x16 bit multiplication algorithm by using vedic mathemat...
Implementation of 16 x16 bit multiplication algorithm by using vedic mathemat...Implementation of 16 x16 bit multiplication algorithm by using vedic mathemat...
Implementation of 16 x16 bit multiplication algorithm by using vedic mathemat...
 
Programing techniques
Programing techniquesPrograming techniques
Programing techniques
 
A Time-Area-Power Efficient High Speed Vedic Mathematics Multiplier using Com...
A Time-Area-Power Efficient High Speed Vedic Mathematics Multiplier using Com...A Time-Area-Power Efficient High Speed Vedic Mathematics Multiplier using Com...
A Time-Area-Power Efficient High Speed Vedic Mathematics Multiplier using Com...
 
International Journal of Engineering Research and Development (IJERD)
International Journal of Engineering Research and Development (IJERD)International Journal of Engineering Research and Development (IJERD)
International Journal of Engineering Research and Development (IJERD)
 
01 Notes Introduction Analysis of Algorithms Notes
01 Notes Introduction Analysis of Algorithms Notes01 Notes Introduction Analysis of Algorithms Notes
01 Notes Introduction Analysis of Algorithms Notes
 
High Speed Signed multiplier for Digital Signal Processing Applications
High Speed Signed multiplier for Digital Signal Processing ApplicationsHigh Speed Signed multiplier for Digital Signal Processing Applications
High Speed Signed multiplier for Digital Signal Processing Applications
 
A045030105
A045030105A045030105
A045030105
 
A045030105
A045030105A045030105
A045030105
 
R01732105109
R01732105109R01732105109
R01732105109
 
Analytical Study and Newer Approach towards Frequent Pattern Mining using Boo...
Analytical Study and Newer Approach towards Frequent Pattern Mining using Boo...Analytical Study and Newer Approach towards Frequent Pattern Mining using Boo...
Analytical Study and Newer Approach towards Frequent Pattern Mining using Boo...
 
booths_algorithm.ppt
booths_algorithm.pptbooths_algorithm.ppt
booths_algorithm.ppt
 
Parallel Hardware Implementation of Convolution using Vedic Mathematics
Parallel Hardware Implementation of Convolution using Vedic MathematicsParallel Hardware Implementation of Convolution using Vedic Mathematics
Parallel Hardware Implementation of Convolution using Vedic Mathematics
 

The International Journal of Engineering and Science

  • 1. The International Journal of Engineering And Science (IJES) ||Volume|| 1 ||Issue|| 1 ||Pages|| 18-21 ||2012|| ISSN: 2319 – 1813 ISBN: 2319 – 1805 Multiplication another Hue And Cry Barun Biswas 1, Samar Sen Sarma2, Krishnendu Basuli3 1 CVPR Un it, Indian Statistical Institute, 203 B.T Road Kolkata-700108, India 2 Department of Co mputer Science and Engineering, University of Calcutta, 92, A.P.C. Road, Kolkata –700 009, India. 3 Dept. of Co mputer Science, West Bengal State University, India -----------------------------------------------------------------Abstract-------------------------------------------------------- Multi plication process is not only bounded only in mathematics. It is also applied in many other fields where a sequence of summing or additi on is to be applied. Multi plication is nothing but a sequence of addi tion performed repeatedl y. Our basic approach is to consider as many bits of multi plier as possible so that the total number of partial product. In this paper we tried to i mplement such a techni que where we can consider more than one two bi ts(compared to Booth’s process of multi plication) of the multi plier to decrease the total number of parti al product with the other operation like addi tion, shift and complement. Key Words: Partial product, Shift operation, Comp lement operation, Booth’s process of multiplication, Shift and add, repeated addition, Div ide and conquer, ---------------------------------------------------------------------------------------------------------------------------------------- ----- Date of Submission: 23, October, 2012 Date of Publication: 10, November 2012 -------------------------------------------------------------------------------------------------------------------------------------------- I. Introduction For examp le, 4+4+4+4+4+4+4=28 is Multiplication is not new in the field of equivalent to the multip licat ion equation 7*4=28. mathematics. It was developed in ancient age. Around 18000BC it was developed [6]. II. Previous Work Multiplication is the process of mult iplying or Before discussing the proposed process of extending some values to a desired value. For this mu ltip licat ion let us take a look to those previous process we need two numbers: mu ltiplicand and works that are available at present. To make our mu ltip lier. Mu ltiplicand is the number which will be presentation clear it is necessary to discuss them. mu ltip lied and multip lier is the number by which mu ltip licand will be multip lied. We know that A. Repeated additi on multi plication: [4][5] mu ltip licat ion is commutative and distributed over Among the available mu ltiplication algorith ms addition and subtraction [6]. the most simple one is repeated addition In the field of mu ltip lication we notice many mu ltip licat ion. It has the complexity of O(n) all the new developed processes, many new techniques are time. The logic behind this process is very simple, being proposed. Many of them are widely accepted. simp ly decrease the multiplier by 1 and add the There are many variat ions in the technique of mu ltip licand to the accumulator and repeat the mu ltip licat ion. We will see shortly many of these process until the mult iplier become 0(zero). It is clear techniques in brief. that the process will run number of t imes equals to Let see the original process of the mult iplier. mu ltip licat ion. In the mu ltip lication process there are two main factors namely mu ltiplicand and multip lier. B. Shift and add [4][5 ] The operation of mult iplication is performed as a The next process of mult iplication is “shift and summation of mu ltiple additions. The following add”. This process is performed on the binary process describes it in short. The result of number. Here the LSB of multip lier is checked, if it mu ltip licat ion is the total number (product) that is 1 then mu ltiplicand is added otherwise the previous would be obtained by combin ing several (mu ltip lier) partial product is shift one bit to the right. This groups of similar size (mu ltip licand). The same result process is continued until the MSB of the multiplier can be obtained by repeated addition. If we are is checked. This is a sequential multiplication scheme combin ing 7 groups with 4 objects in each group, we with worst case time delay proportional to the could arrive at the same answer by addition. numebr of bits O(n). So in this process we notice that www.theijes.com The IJES Page 18
  • 2. Multiplication another Hue And Cry the pertial product of the process is less tahn the E. Booth’s Multi plication[1][3] previous process. But in this process if all the Booth's mul ti plication algorithm is a multip lication multiplier bit is 1 jthen the total number of pertial algorith m that multip lies two signed binary numbers product is equal to the number of bit present in the in two's co mplement notation. The algorith m was multiplier. invented by Andrew Donald Booth in 1951 wh ile doing research on crystallography at Birkbeck C. Array multi plier [4][5] College in Bloo msbury, London. Booth used desk The next topic is to be discussed is Array calculators that were faster at shift ing than adding multiplier. Checking the bits of the multiplier one at and created the algorithm to increase their speed. time and forming the pertial product is a shift Booth's algorithm is of interest in the study of operation that requirs a sequence of add and shift computer architecture microperation. The multiplication of two binary numbers can be done with one micro operation by means of a combinational circuit that forms the Booth's algorithm involves repeatedly product bits all at once. adding one of two predetermined values Multiplicand and Multiplier to a product, then performing a Let us illustrate the process with an rightward arith metic shift on product. Let M and Q example, let there are two bit multiplicand be the multiplicand and multip lier, respectively; and let x and y represent the number of bits in m and r. Then the number of bit in the product is equal to the The operation is as follows (x+y+1). The Booth’s multip licat ion process is based on the four basic steps. In this process the two mu ltip lier bit is checked and depending on their combination (2^2=4) four different steps is performed. Now let us discuss the Booth’s mu ltip licat ion by taking an examp le. A combinational circuit binary multiplier with more bits can be constructed in a similar Let M(mu lt iplicand) = 000000000001101 fashion. A bit of the multiplier is ANDed with each bit of the multiplicand in as many levels as there are Q(mu ltip lier) =0000000001010101 bits in multiplier. Binary out put in each level of AND gate is added in parallel with partial product of M =0000000000001101 the product. For j multiplier bits and k multiplicand bits wee need j*k AND gates and (j-1)*k bits adders to produce a product of j+k bits. Q =0000000001010101 As our process is based on the concept of =1111111111110011 // mult iplier bit 10 the Booth’s multip lication we shall discuss the =000000000001101* // mult iplier bit 01 Booth’s process next . =11111111110011** // mult iplier bit 10 =0000000001101*** // mult iplier bit 01 D. Divide and conquer [2] =111111110011**** // mult iplier bit 10 In traditional process of mu ltip licat ion we see that =00000001101***** // mult iplier bit 01 the process of mu ltiplication of two n b it binary =1111110011****** // mult iplier bit 10 number require O( ) digit operation . but in d ivide- =000001101******* // multip lier b it 01 n-conquer technique the multip lication requires =0000010001010001 // product O( ) or O( ) (appro ximately) bit operation. In this process binary number is divided into two In the above examp le we notice that there are three parts: say the number is X, so the number can be operations performed, namely shift, addition, represented as X= a + b. So in this process we see complement. that there may be four n/2 bit operation but the The number of operation is as follows product (say X*Y) can be represented as three n/2 bit Shift = 7 mu ltip licat ion. So in this process the complexity can Addition= 7 be represented as O( ) = O( ). Co mplement= 4. www.theijes.com The IJES Page 19
  • 3. Multiplication another Hue And Cry I. MOTIVATION In the proposed process we have seen a new One of the techniques of mu ltip lication is Shift process of mu ltip licat ion. No w let us take an example and Add mult iplication. We observed the modified to illustrate the process and show how efficient this Shift and Add process by Feynman. This technique is process is. The example is given below. illustrated in below to clear the topic. Let M=10 and Q=10011 Let Mult iplicand(M) is 22(10110) and So according to the proposed process the mu ltip lier(Q) is 5(101). So the multip lication process mu ltip licat ion of the numbers is as follows is as follo ws M =10110 M =00000010 Q =101 Q =00010011 10110 =11111110 //mult iplier b its 110 10110** =000010** // mult iplier bits 001 1101110 =1110**** //mult iplier b its 010 =010***** //mult iplier b its 001 In the above process we notice that the process =00100110 //final product of mult iplication is a Shift and Add multip lication process, but when a 0(zero) occur the shift as twice. So in the illustrated process we notice that a big So here is the logic that when there are one or more advantage is achieved. If the booth process is applied than one 0s we can take them as one sequence of in the same mu ltiplier (Q) the number of partial 0s.We can apply this logic to some other algorithm to product, shift operation and complement operation make that algorithm more efficient. are as follows Partial product =4 Shift operation =5 II. PROPOS ED PROCESS Co mplement operation=2 In the previously discussed process we notice Whereas the same operations in the proposed is as one thing that when there is a sequence of 0’s we follows consider each 0(zero) for one single step. Here for Partial product =3 this reason the number of steps increases each time. Shift operation =5 So our observation is that if we can consider a Co mplement operation=2 sequence of zeros in a single step then the whole In the Booth’s process when there is a long number of steps decreases. One more thing when sequence of 0’s or 1’s the whole sequence is treated there a sequence of 1’s we can take the sequence as individually, whereas in our p roposed the whole one step. We notice this process can be applied to sequence is treated at a single step. As a result the Booth’s algorithm to make it more efficient. number of steps is decreased. It is easily The proposed algorithm is as follows understandable that if the numbers of steps decrease Algorithm: the space complexity also decreased. And also it is While starting this algorith m we will take noticeable that as the number of bits decreased the one thing in consideration that one extra 0 is added partial products also decrease. Here is the main goal as the LSB. Three bits will be considered at a time in of the proposed process. general and the last bit fro m previous bit pattern will If we consider chips to perform these operations be considered. then we can see that the time required for shift Step 1. If the bits are 000 then continue checking operation (4 bit bidirectional Un iversal shift register the bits until the bit is 1. Then shift the partial LS 194) is 1/ 36 ns [7] [8], add operation (4 b it carry product to the right same as the number of the 0s. look ahead adder LS 7483) is 45 ns [7] [8] and for Step 2. If the bits are 001 then continue the complement operation (LS hex inverter 7404) is 12 checking the next bit until it is 1. Then add ns [7] [8]. So here we can make an assumption that mu ltip licand and shift the partial p roduct to the right how much time is saved if we apply this process of as the number of 0s. mu ltip licat ion instead of others. Step 3. If the bits are 010 then subtract multiplicand and shift the partial product three positions right. Step 4. If the bits are 101 then add multiplicand and shift the partial product three positions right. Step 5. If the bits are 110 then check the next bits until it is 0 and subtract the multiplicand and shift the partial p roduct to the right as the number of 1s. www.theijes.com The IJES Page 20
  • 4. Multiplication another Hue And Cry III. Future Scope In the proposed process of multip licat ion we notice that if we consider the consecutive 0’s or 1’s in a single step then the number of partial product Dr. Samar Sen S arma decreases also the other operations like shift Professor, Depart ment of Co mputer operation and complement operation. So here the Science and Engineering, Un iversity total number of other operations also decreases and Of Calcutta, India hence the space and time co mplexity of the whole operation also decreases. We notice that the divide and conquer process can also decreases the time and space required for an operation. So we will try to merge the proposed process of mult iplication with the divide and conquer technique so that the total number of operation with the time and space comp lexity can be decreased. We notice in different case where divide and conquer process technique were applied and the result were as expected. We think in our case it would not be an exception. IV. Conclusion In our proposed process we notice that some time it seems that considering the sequence of 0’s and 1’s at a single step may increase the maintenance complexity and over burden the whole process. But when the proposed process is in real the process is a big advantage over the existing process of mu ltip licat ion. REFERENCES [1] A. Booth, “A signed binary multiplication technique,” Q. J. Me& Appl. March., vol. 4, pp. 236-240, 19.51. [2] Alfred V. Aho, John E. Hopcroft, Jeffrey D. Ullmant “The design and analysis of computer algorithm” Pearson, 1974. [3] Booth Multiplication Algorithm Abenet Getahun Fall 2003 CSCI 401 [4] John P. Hayes “Computer architecture and organization”, Second Edition, McGraw-Hill, 1988. [5] M. Morris Mano “Computer System Architecture”, Third Addition, Prentice Hall, 1993. [6] http://en.wikipedia.org/wiki/Multiplication, visited at 12 nov. 2012 [7] William D.Anderson, Roberts Loyd Morris, John Miller “Designing with TTL integrated circuit”, McGraw-Hill, 1971 [8] “TTL data book for design Engineer”, 2 nd edition, Texas instrument Inc, 1981 Barun Biswas CVPR Unit, Indian Statistical Institute, 203 B.T Road Ko lkata-700108, India Krishnendu Basuli Assistant Professor, Depart ment of Co mputer Science, West Bengal State University www.theijes.com The IJES Page 21