Division algorithm

This article is about algorithms for division. For the theorem proving the existence of a unique quotient and remainder, see Euclidean division.

A division algorithm is an algorithm which, given two integers N and D, computes their quotient and/or remainder, the result of division. Some are applied by hand, while others are employed by digital circuit designs and software.

Division algorithms fall into two main categories: slow division and fast division. Slow division algorithms produce one digit of the final quotient per iteration. Examples of slow division include restoring, non-performing restoring, non-restoring, and SRT division. Fast division methods start with a close approximation to the final quotient and produce twice as many digits of the final quotient on each iteration. Newton–Raphson and Goldschmidt fall into this category.

Discussion will refer to the form , where

is the input, and

is the output.

Division by repeated subtraction

The simplest division algorithm, historically incorporated into a greatest common divisor algorithm presented in Euclid's Elements, Book VII, Proposition 1, finds the remainder given two positive integers using only subtractions and comparisons:

while  N  D do
  N := N  D
end
return N

The proof that the quotient and remainder exist and are unique, ascertained by Euclidean division, gives rise to a complete division algorithm using additions, subtractions, and comparisons:

function divide(N, D)
  if D = 0 then error(DivisionByZero) end
  if D < 0 then (Q,R) := divide(N, D); return (Q, R) end
  if N < 0 then
    (Q,R) := divide(N, D)
    if R = 0 then return (Q, 0)
    else return (Q1, DR) end
  end
  -- At this point, N ≥ 0 and D > 0
  Q := 0; R := N
  while R  D do
    Q := Q + 1
    R := R  D
  end
  return (Q, R)
end

This procedure always produces R ≥ 0. Although very simple, it takes Ω(Q) steps, and so is exponentially slower than even slow division algorithms like long division. It is useful if Q is known to be small (being an output-sensitive algorithm), and can serve as an executable specification.

Long division

Main article: Long division

Long division is the standard algorithm used for pen-and-paper division of multidigit numbers expressed in decimal notation. It shifts gradually from the left to the right end of the dividend, subtracting the largest possible multiple of the divisor at each stage; the multiples become the digits of the quotient, and the final difference is the remainder. When used with a binary radix, it forms the basis for the integer division (unsigned) with remainder algorithm below. Short division is an abbreviated form of long division suitable for one-digit divisors. Chunking (also known as the partial quotients method or the hangman method) is a less-efficient form of long division which may be easier to understand.

Integer division (unsigned) with remainder

The following algorithm, the binary version of the famous long division, will divide N by D, placing the quotient in Q and the remainder in R. All values are treated as unsigned integers.

if D == 0 then error(DivisionByZeroException) end
Q := 0                 -- initialize quotient and remainder to zero
R := 0                     
for i = n1...0 do     -- where n is number of bits in N
  R := R << 1          -- left-shift R by 1 bit
  R(0) := N(i)         -- set the least-significant bit of R equal to bit i of the numerator
  if R >= D then
    R := R  D
    Q(i) := 1
  end
end

Example

If we take N=11002 (1210) and D=1002 (410)

Step 1: Set R=0 and Q=0
Step 2: Take i=3 (one less than the number of bits in N)
Step 3: R=00 (left shifted by 1)
Step 4: R=01 (setting R(0) to N(i))
Step 5: R<D, so skip statement

Step 2: Set i=2
Step 3: R=010
Step 4: R=011
Step 5: R<D, statement skipped

Step 2: Set i=1
Step 3: R=0110
Step 4: R=0110
Step 5: R>=D, statement entered
Step 5b: R=10 (R−D)
Step 5c: Q=10 (setting Q(i) to 1)

Step 2: Set i=0
Step 3: R=100
Step 4: R=100
Step 5: R>=D, statement entered
Step 5b: R=0 (R−D)
Step 5c: Q=11 (setting Q(i) to 1)

end
Q=112 (310) and R=0.

Slow division methods

Slow division methods are all based on a standard recurrence equation

,

where:

Restoring division

Restoring division operates on fixed-point fractional numbers and depends on the following assumptions:

The quotient digits q are formed from the digit set {0,1}.

The basic algorithm for binary (radix 2) restoring division is:

P := N
D := D << n              -- P and D need twice the word width of N and Q
for i = n1..0 do        -- for example 31..0 for 32 bits
  P := 2P  D            -- trial subtraction from shifted value
  if P >= 0 then
    q(i) := 1            -- result-bit 1
  else
    q(i) := 0            -- result-bit 0
    P := P + D           -- new partial remainder is (restored) shifted value
  end
end

-- Where: N = Numerator, D = Denominator, n = #bits, P = Partial remainder, q(i) = bit #i of quotient

The above restoring division algorithm can avoid the restoring step by saving the shifted value 2P before the subtraction in an additional register T (i.e., T = P << 1) and copying register T to P when the result of the subtraction 2P  D is negative.

Non-performing restoring division is similar to restoring division except that the value of 2*P[i] is saved, so D does not need to be added back in for the case of TP[i] 0.

Non-restoring division

Non-restoring division uses the digit set {1,1} for the quotient digits instead of {0,1}. The basic algorithm for binary (radix 2) non-restoring division of non-negative numbers is:

 P := N
 D := D << n              * P and D need twice the word width of N and Q
 for i = n1..0 do        * for example 31..0 for 32 bits
   if P >= 0 then
     q[i] := +1
     P := 2*P  D
   else
     q[i] := 1
     P := 2*P + D
   end if
 end
 
 * Note: N=Numerator, D=Denominator, n=#bits, P=Partial remainder, q(i)=bit #i of quotient.

Following this algorithm, the quotient is in a non-standard form consisting of digits of 1 and +1. This form needs to be converted to binary to form the final quotient. Example:

Convert the following quotient to the digit set {0,1}:
Steps:
1. Form the positive term:
2. Mask the negative term*:
3. Subtract: minus :
*.( Signed binary notation with One's complement without Two's Complement )

If the −1 digits of are stored as zeros (0) as is common, then is and computing is trivial: perform a bit-complement on the original .

 Q := Q  (Q ^ (1))      * Appropriate if 1 Digits in Q are Represented as zeros as is common.

Finally, quotients computed by this algorithm are always odd: 5 / 2 = 3 R −1. To correct this add the following after Q is converted from non-standard form to standard form:

 if P < 0 then
    Q := Q  1
    P := P + D            * Needed only if the Remainder is of interest.
 end if

The actual remainder is P >> n.

SRT division

Named for its creators (Sweeney, Robertson, and Tocher), SRT division is a popular method for division in many microprocessor implementations. SRT division is similar to non-restoring division, but it uses a lookup table based on the dividend and the divisor to determine each quotient digit. The Intel Pentium processor's infamous floating-point division bug was caused by an incorrectly coded lookup table. Five of the 1066 entries had been mistakenly omitted.[1]

Fast division methods

Newton–Raphson division

Newton–Raphson uses Newton's method to find the reciprocal of and multiply that reciprocal by to find the final quotient .

The steps of Newton–Raphson division are:

  1. Calculate an estimate for the reciprocal of the divisor .
  2. Compute successively more accurate estimates of the reciprocal. This is where one employs the Newton–Raphson method as such.
  3. Compute the quotient by multiplying the dividend by the reciprocal of the divisor: .

In order to apply Newton's method to find the reciprocal of , it is necessary to find a function that has a zero at . The obvious such function is , but the Newton–Raphson iteration for this is unhelpful, since it cannot be computed without already knowing the reciprocal of . Moreover, multiple iterations for refining reciprocal are not possible, since higher-order derivatives do not exist for . A function that does work is , for which the Newton–Raphson iteration gives

which can be calculated from using only multiplication and subtraction, or using two fused multiply–adds.

From a computation point of view, the expressions and are not equivalent. To obtain a result with a precision of n bits while making use of the second expression, one must compute the product between and with double the required precision (2n bits). In contrast, the product between and need only be computed with a precision of n bits.

If the error is defined as , then:

This squaring of the error at each iteration step — the so-called quadratic convergence of Newton–Raphson's method — has the effect that the number of correct digits in the result roughly doubles for every iteration, a property that becomes extremely valuable when the numbers involved have many digits (e.g. in the large integer domain). But it also means that the initial convergence of the method can be comparatively slow, especially if the initial estimate is poorly chosen.

Apply a bit-shift to the divisor D to scale it so that 0.5  D  1. The same bit-shift should be applied to the numerator N so that the quotient does not change. Then one could use a linear approximation in the form

to initialize Newton–Raphson. To minimize the maximum of the relative error of this approximation on interval , one should use

The coefficients of the linear approximation are determined as follows. The relative error is . The minimum of the maximum relative error is determined by the Chebyshev equioscillation theorem applied to . The local extremum of occurs when , which has solution . The function at the extremum must be of opposite sign as the function at the endpoints, namely, . The two equations in the two unknowns have solution and , and the maximum relative error is . Using this approximation, the relative error of the initial value is less than

It is possible to generate a polynomial fit of degree larger than 1, computing the coefficients using the Remez algorithm. The trade-off is that the initial guess requires more computational cycles but hopefully in exchange for fewer iterations of Newton–Raphson.

Since for this method the convergence is exactly quadratic, it follows that

steps are enough to calculate the value up to binary places. This evaluates to 3 for IEEE single precision and 4 for both double precision and double extended formats.

Pseudocode

The following computes the quotient of N and D with a precision of P binary places:

Express D as M × 2e where 1  M < 2 (standard floating point representation)
D' := D / 2e+1   // scale between 0.5 and 1, can be performed with bit shift / exponent subtraction
N' := N / 2e+1
X := 48/17 − 32/17 × D'   // precompute constants with same precision as D
repeat  times   // can be precomputed based on fixed P
    X := X + X × (1 - D' × X)
end
return N' × X

For example, for a double-precision floating-point division, this method uses 10 multiplies, 9 adds, and 2 shifts.

Goldschmidt division

Goldschmidt (after Robert Elliott Goldschmidt)[2] division uses an iterative process of repeatedly multiplying both the dividend and divisor by a common factor Fi, chosen such that the divisor converges to 1. This causes the dividend to converge to the sought quotient Q:

The steps for Goldschmidt division are:

  1. Generate an estimate for the multiplication factor Fi .
  2. Multiply the dividend and divisor by Fi .
  3. If the divisor is sufficiently close to 1, return the dividend, otherwise, loop to step 1.

Assuming N/D has been scaled so that 0 < D < 1, each Fi is based on D:

Multiplying the dividend and divisor by the factor yields:

After a sufficient number k of iterations .

The Goldschmidt method is used in AMD Athlon CPUs and later models.[3][4]

Binomial theorem

The Goldschmidt method can be used with factors that allow simplifications by the binomial theorem. Assuming N/D has been scaled by a power of two such that . We choose and . This yields

.

After steps , the denominator can be rounded to with a relative error

which is maximum at when , thus providing a minimum precision of binary digits.

Large-integer methods

Methods designed for hardware implementation generally do not scale to integers with thousands or millions of decimal digits; these frequently occur, for example, in modular reductions in cryptography. For these large integers, more efficient division algorithms transform the problem to use a small number of multiplications, which can then be done using an asymptotically efficient multiplication algorithm such as the Karatsuba algorithm, Toom–Cook multiplication or the Schönhage–Strassen algorithm. It results that the computational complexity of the division is of the same order (up to a multiplicative constant) as that of the multiplication. Examples include reduction to multiplication by Newton's method as described above,[5] as well as the slightly faster Barrett reduction algorithm.[6] Newton's method is particularly efficient in scenarios where one must divide by the same divisor many times, since after the initial Newton inversion only one (truncated) multiplication is needed for each division.

Division by a constant

The division by a constant D is equivalent to the multiplication by its reciprocal. Since the denominator is constant, so is its reciprocal (1/D). Thus it is possible to compute the value of (1/D) once at compile time, and at run time perform the multiplication N·(1/D) rather than the division N/D. In floating-point arithmetic the use of (1/D) presents little problem, but in integer arithmetic the reciprocal will always evaluate to zero (assuming |D| > 1).

It is not necessary to use specifically (1/D); any value (X/Y) that reduces to (1/D) may be used. For example, for division by 3, the factors 1/3, 2/6, 3/9, or 194/582 could be used. Consequently, if Y were a power of two so the division step reduces to a fast right bit shift. The effect of calculating N/D as (N·X)/Y replaces a division with a multiply and a shift. Note that the parentheses are important, as N·(X/Y) will evaluate to zero.

However, unless D itself is a power of two, there is no X and Y that satisfies the conditions above. Fortunately, (N·X)/Y gives exactly the same result as N/D in integer arithmetic even when (X/Y) is not exactly equal to 1/D, but "close enough" that the error introduced by the approximation is in the bits that are discarded by the shift operation.[7][8][9]

As a concrete example, for 32-bit unsigned integers, division by 3 can be replaced with a multiply by 2863311531233, a multiplication by 2863311531 (hexadecimal 0xAAAAAAAB) followed by a 33 right bit shift. The value of 2863311531 is calculated as 2333, then rounded up.

Likewise, division by 10 can be expressed as a multiplication by 3435973837 (0xCCCCCCCD) followed by division by 235.

In some cases, division by a constant can be accomplished in even less time by converting the "multiply by a constant" into a series of shifts and adds or subtracts.[10] Of particular interest is division by 10, for which the exact quotient is obtained, with remainder if required.[11]

Rounding error

Round-off error can be introduced by division operations due to limited precision.

Further information: Floating point

See also

References

  1. "Statistical Analysis of Floating Point Flaw". Intel Corporation. 1994. Retrieved 22 October 2013.
  2. Goldschmidt, Robert E. (1964). Applications of Division by Convergence (PDF) (Thesis). M.Sc. dissertation. M.I.T. OCLC 34136725.
  3. Oberman, Stuart F. (1999). "Floating Point Division and Square Root Algorithms and Implementation in the AMD-K7 Microprocessor" (PDF). Proceedings of the IEEE Symposium on Computer Arithmetic: 106115.
  4. Soderquist, Peter; Leeser, Miriam (July–August 1997). "Division and Square Root: Choosing the Right Implementation" (PDF). IEEE Micro. 17 (4): 5666.
  5. Hasselström, Karl (2003). Fast Division of Large Integers: A Comparison of Algorithms (PDF) (M.Sc. in Computer Science thesis). Royal Institute of Technology. Retrieved 2011-03-23.
  6. Barrett, Paul (1987). "Implementing the Rivest Shamir and Adleman public key encryption algorithm on a standard digital signal processor". Proceedings on Advances in cryptology---CRYPTO '86. London, UK: Springer-Verlag. pp. 311323. ISBN 0-387-18047-8.
  7. Granlund, Torbjörn; Montgomery, Peter L. (June 1994). "Division by Invariant Integers using Multiplication" (PDF). SIGPLAN Notices. ACM. 29 (6): 61–72. doi:10.1145/773473.178249.
  8. Möller, Niels; Granlund, Torbjörn (February 2011). "Improved Division by Invariant Integers" (PDF). IEEE Transactions on Computers. IEEE. 60 (2): 165–175. doi:10.1109/TC.2010.143.
  9. ridiculous_fish. "Labor of Division (Episode III): Faster Unsigned Division by Constants". 2011.
  10. LaBudde, Robert A.; Golovchenko, Nikolai; Newton, James; and Parker, David; Massmind: "Binary Division by a Constant"
  11. Vowels, R. A. (1992). "Division by 10". Australian Computer Journal. 24 (3): 81–85.

External links

This article is issued from Wikipedia - version of the 10/20/2016. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.