Rahul Sharma (Editor)

Methods of computing square roots

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit
Methods of computing square roots

In numerical analysis, a branch of mathematics, there are several square root algorithms or methods of computing the principal square root of a non-negative real number. For the square roots of a negative or complex number, see below.

Contents

Finding S is the same as solving the equation f ( x ) = x 2 S = 0 for a positive x . Therefore, any general numerical root-finding algorithm can be used. Newton's method, for example, reduces in this case to the so-called Babylonian method:

x n + 1 = x n f ( x n ) f ( x n ) = x n x n 2 S 2 x n = 1 2 ( x n + S x n )

These methods generally yield approximate results, but can be made arbitrarily precise by increasing the number of calculation steps.

Rough estimation

Many square root algorithms require an initial seed value. If the initial seed value is far away from the actual square root, the algorithm will be slowed down. It is therefore useful to have a rough estimate, which may be very inaccurate but easy to calculate. With S expressed in scientific notation as a × 10 2 n where 1 a < 100 and n is an integer, the square root S = a × 10 n can be estimated as

S { 2 10 n if  a < 10 , 6 10 n if  a 10.

The factors two and six are used because they approximate the geometric means of the lowest and highest possible values with the given number of digits: 1 10 = 10 4 2 and 10 100 = 1000 4 6 .

For S = 125348 = 12.5348 × 10 4 , the estimate is S 6 10 2 = 600 .

When working in the binary numeral system (as computers do internally), by expressing S as a × 2 2 n where 0.1 2 a < 10 2 , the square root S = a × 2 n can be estimated as S 2 n , since the geometric mean of the lowest and highest possible values is 0.1 2 10 2 = 1 4 = 1 .

For S = 125348 = 1 1110 1001 1010 0100 2 = 1.1110 1001 1010 0100 2 × 2 16 the binary approximation gives S 2 8 = 1 0000 0000 2 = 256 .

These approximations are useful to find better seeds for iterative algorithms, which results in faster convergence.

Babylonian method

Perhaps the first algorithm used for approximating S is known as the Babylonian method, named after the Babylonians, or "Hero's method", named after the first-century Greek mathematician Hero of Alexandria who gave the first explicit description of the method. It can be derived from (but predates by 16 centuries) Newton's method. The basic idea is that if x is an overestimate to the square root of a non-negative real number S then S/x will be an underestimate and so the average of these two numbers may reasonably be expected to provide a better approximation (though the formal proof of that assertion depends on the inequality of arithmetic and geometric means that shows this average is always an overestimate of the square root, as noted in the article on square roots, thus assuring convergence).

More precisely, if x is our initial guess of S and e is the error in our estimate such that S = (x+ e)2, then we can expand the binomial and solve for

e = S x 2 2 x + e S x 2 2 x , since e x .

Therefore, we can compensate for the error and update our old estimate as

x := x + e = S + x 2 2 x = x + S x 2

Since the computed error was not exact, this becomes our next best guess. The process of updating is iterated until desired accuracy is obtained. This is a quadratically convergent algorithm, which means that the number of correct digits of the approximation roughly doubles with each iteration. It proceeds as follows:

  1. Begin with an arbitrary positive starting value x0 (the closer to the actual square root of S, the better).
  2. Let xn + 1 be the average of xn and S/xn (using the arithmetic mean to approximate the geometric mean).
  3. Repeat step 2 until the desired accuracy is achieved.

It can also be represented as:

x 0 S , x n + 1 = 1 2 ( x n + S x n ) , S = lim n x n .

This algorithm works equally well in the p-adic numbers, but cannot be used to identify real square roots with p-adic square roots; one can, for example, construct a sequence of rational numbers by this method that converges to +3 in the reals, but to −3 in the 2-adics.

Example

To calculate S, where S = 125348, to six significant figures, use the rough estimation method above to get

x 0 = 6 10 2 = 600.000 x 1 = 1 2 ( x 0 + S x 0 ) = 1 2 ( 600.000 + 125348 600.000 ) = 404.457 x 2 = 1 2 ( x 1 + S x 1 ) = 1 2 ( 404.457 + 125348 404.457 ) = 357.187 x 3 = 1 2 ( x 2 + S x 2 ) = 1 2 ( 357.187 + 125348 357.187 ) = 354.059 x 4 = 1 2 ( x 3 + S x 3 ) = 1 2 ( 354.059 + 125348 354.059 ) = 354.045 x 5 = 1 2 ( x 4 + S x 4 ) = 1 2 ( 354.045 + 125348 354.045 ) = 354.045

Therefore, 125348 ≈ 354.045.

Convergence

Let the relative error in xn be defined by

ε n = x n S 1

and thus

x n = S ( 1 + ε n ) .

Then it can be shown that

ε n + 1 = ε n 2 2 ( 1 + ε n )

and thus that

0 ε n + 2 min { ε n + 1 2 2 , ε n + 1 2 }

and consequently that convergence is assured provided that x0 and S are both positive.

Worst case for convergence

If using the rough estimate above with the Babylonian method, then the least accurate cases in ascending order are as follows:

S = 1 ; x 0 = 2 ; x 1 = 1.250 ; ε 1 = 0.250. S = 10 ; x 0 = 2 ; x 1 = 3.500 ; ε 1 < 0.107. S = 10 ; x 0 = 6 ; x 1 = 3.833 ; ε 1 < 0.213. S = 100 ; x 0 = 6 ; x 1 = 11.333 ; ε 1 < 0.134.

Thus in any case,

ε 1 2 2 . ε 2 < 2 5 < 10 1 . ε 3 < 2 11 < 10 3 . ε 4 < 2 23 < 10 6 . ε 5 < 2 47 < 10 14 . ε 6 < 2 95 < 10 28 . ε 7 < 2 191 < 10 57 . ε 8 < 2 383 < 10 115 .

Rounding errors will slow the convergence. It is recommended to keep at least one extra digit beyond the desired accuracy of the xn being calculated to minimize round off error.

Digit-by-digit calculation

This is a method to find each digit of the square root in a sequence. It is slower than the Babylonian method (if you have a calculator that can divide in one operation), but it has several advantages:

  • It can be easier for manual calculations.
  • Every digit of the root found is known to be correct, i.e., it does not have to be changed later.
  • If the square root has an expansion that terminates, the algorithm terminates after the last digit is found. Thus, it can be used to check whether a given integer is a square number.
  • The algorithm works for any base, and naturally, the way it proceeds depends on the base chosen.
  • Napier's bones include an aid for the execution of this algorithm. The shifting nth root algorithm is a generalization of this method.

    Basic principle

    First, let's consider the simplest possible case of finding the square root of a number Z, that is the square of a 2 digit number XY, where X is the ten's digit and Y is the unit's digit. Specifically:

    Z = (10X + Y)2 = 100X2 + 20XY + Y2

    Now using the Digit-by-Digit algorithm, we first determine the value of X. X is the largest digit such that X2 is less or equal to Z from which we removed the 2 rightmost digits.

    In the next iteration, we pair the digits, multiply X by 2, and place it in the tenth's place while we try to figure out what the value of Y is.

    Since this is a simple case where the answer is a perfect square root XY, the algorithm stops here.

    The same idea can be extended to any arbitrary square root computation next. Suppose we are able to find the square root of N by expressing it as a sum of n positive numbers such that

    N = ( a 1 + a 2 + a 3 + + a n ) 2 .

    By repeatedly applying the basic identity

    ( x + y ) 2 = x 2 + 2 x y + y 2 ,

    the right-hand-side term can be expanded as

    ( a 1 + a 2 + a 3 + + a n ) 2 = a 1 2 + 2 a 1 a 2 + a 2 2 + 2 ( a 1 + a 2 ) a 3 + a 3 2 + + a n 1 2 + 2 ( i = 1 n 1 a i ) a n + a n 2 = a 1 2 + [ 2 a 1 + a 2 ] a 2 + [ 2 ( a 1 + a 2 ) + a 3 ] a 3 + + [ 2 ( i = 1 n 1 a i ) + a n ] a n .

    This expression allows us to find the square root by sequentially guessing the values of a i s. Suppose that the numbers a 1 , , a m 1 have already been guessed, then the m-th term of the right-hand-side of above summation is given by Y m = [ 2 P m 1 + a m ] a m , where P m 1 = i = 1 m 1 a i is the approximate square root found so far. Now each new guess a m should satisfy the recursion

    X m = X m 1 Y m ,

    such that X m 0 for all 1 m n , with initialization X 0 = N . When X n = 0 , the exact square root has been found; if not, then the sum of a i s gives a suitable approximation of the square root, with X n being the approximation error.

    For example, in the decimal number system we have

    N = ( a 1 10 n 1 + a 2 10 n 2 + + a n 1 10 + a n ) 2 ,

    where 10 n i are place holders and the coefficients a i { 0 , 1 , 2 , , 9 } . At any m-th stage of the square root calculation, the approximate root found so far, P m 1 and the summation term Y m are given by

    P m 1 = i = 1 m 1 a i 10 n i = 10 n m + 1 i = 1 m 1 a i 10 m i 1 , Y m = [ 2 P m 1 + a m 10 n m ] a m 10 n m = [ 20 i = 1 m 1 a i 10 m i 1 + a m ] a m 10 2 ( n m ) .

    Here since the place value of Y m is an even power of 10, we only need to work with the pair of most significant digits of the remaining term X m 1 at any m-th stage. The section below codifies this procedure.

    It is obvious that a similar method can be used to compute the square root in number systems other than the decimal number system. For instance, finding the digit-by-digit square root in the binary number system is quite efficient since the value of a i is searched from a smaller set of binary digits {0,1}. This makes the computation faster since at each stage the value of Y m is either Y m = 0 for a m = 0 or Y m = 2 P m 1 + 1 for a m = 1 . The fact that we have only two possible options for a m also makes the process of deciding the value of a m at m-th stage of calculation easier. This is because we only need to check if Y m X m 1 for a m = 1. If this condition is satisfied, then we take a m = 1 ; if not then a m = 0. Also, the fact that multiplication by 2 is done by left bit-shifts helps in the computation.

    Decimal (base 10)

    Write the original number in decimal form. The numbers are written similar to the long division algorithm, and, as in long division, the root will be written on the line above. Now separate the digits into pairs, starting from the decimal point and going both left and right. The decimal point of the root will be above the decimal point of the square. One digit of the root will appear above each pair of digits of the square.

    Beginning with the left-most pair of digits, do the following procedure for each pair:

    1. Starting on the left, bring down the most significant (leftmost) pair of digits not yet used (if all the digits have been used, write "00") and write them to the right of the remainder from the previous step (on the first step, there will be no remainder). In other words, multiply the remainder by 100 and add the two digits. This will be the current value c.
    2. Find p, y and x, as follows:
    3. Let p be the part of the root found so far, ignoring any decimal point. (For the first step, p = 0).
    4. Determine the greatest digit x such that x ( 20 p + x ) c . We will use a new variable y = x(20p + x).
    5. Note: 20p + x is simply twice p, with the digit x appended to the right).
    6. Note: You can find x by guessing what c/(20·p) is and doing a trial calculation of y, then adjusting x upward or downward as necessary.
    7. Place the digit x as the next digit of the root, i.e., above the two digits of the square you just brought down. Thus the next p will be the old p times 10 plus x.
    8. Subtract y from c to form a new remainder.
    9. If the remainder is zero and there are no more digits to bring down, then the algorithm has terminated. Otherwise go back to step 1 for another iteration.

    Examples

    Find the square root of 152.2756.

    1 2. 3 4 / / 01 52.27 56 01 1*1 <= 1 < 2*2 x = 1 01 y = x*x = 1*1 = 1 00 52 22*2 <= 52 < 23*3 x = 2 00 44 y = (20+x)*x = 22*2 = 44 08 27 243*3 <= 827 < 244*4 x = 3 07 29 y = (240+x)*x = 243*3 = 729 98 56 2464*4 <= 9856 < 2465*5 x = 4 98 56 y = (2460+x)*x = 2464*4 = 9856 00 00 Algorithm terminates: Answer is 12.34

    Find the square root of 2.

    1. 4 1 4 2 / / 02.00 00 00 00 02 1*1 <= 2 < 2*2 x = 1 01 y = x*x = 1*1 = 1 01 00 24*4 <= 100 < 25*5 x = 4 00 96 y = (20+x)*x = 24*4 = 96 04 00 281*1 <= 400 < 282*2 x = 1 02 81 y = (280+x)*x = 281*1 = 281 01 19 00 2824*4 <= 11900 < 2825*5 x = 4 01 12 96 y = (2820+x)*x = 2824*4 = 11296 06 04 00 28282*2 <= 60400 < 28283*3 x = 2 The desired precision is achieved: The square root of 2 is about 1.4142

    Binary numeral system (base 2)

    Inherent to digit-by-digit algorithms is a search and test step: find a digit, e , when added to the right of a current solution r , such that ( r + e ) ( r + e ) x , where x is the value for which a root is desired. Expanding: r r + 2 r e + e e x . The current value of r r —or, usually, the remainder—can be incrementally updated efficiently when working in binary, as the value of e will have a single bit set (a power of 2), and the operations needed to compute 2 r e and e e can be replaced with faster bit shift operations.

    Example

    Here we obtain the square root of 81, which when converted into binary gives 1010001. The numbers in the left column gives the option between that number or zero to be used for subtraction at that stage of computation. The final answer is 1001, which in decimal is 9.

    1 0 0 1 --------- √ 1010001 1 1 1 --------- 101 01 0 -------- 1001 100 0 -------- 10001 10001 10001 ------- 0

    This gives rise to simple computer implementations:

    Using the notation above, the variable "bit" corresponds to e m 2 which is ( 2 m ) 2 = 4 m , the variable "res" is equal to 2 r e m , and the variable "num" is equal to the current X m which is the difference of the number we want the square root of and the square of our current approximation with all bits set up to 2 m + 1 . Thus in the first loop, we want to find the highest power of 4 in "bit" to find the highest power of 2 in e . In the second loop, if num is greater than res + bit, then X m is greater than 2 r e m + e m 2 and we can subtract it. The next line, we want to add e m to r which means we want to add 2 e m 2 to 2 r e m so we want res = res + bit<<1. Then update e m to e m 1 inside res which involves dividing by 2 or another shift to the right. Combining these 2 into one line leads to res = res>>1 + bit. If X m isn't greater than 2 r e m + e m 2 then we just update e m to e m 1 inside res and divide it by 2. Then we update e m to e m 1 in bit by dividing it by 4. The final iteration of the 2nd loop has bit equal to 1 and will cause update of e to run one extra time removing the factor of 2 from res making it our integer approximation of the root.

    Faster algorithms, in binary and decimal or any other base, can be realized by using lookup tables—in effect trading more storage space for reduced run time.

    Exponential identity

    Pocket calculators typically implement good routines to compute the exponential function and the natural logarithm, and then compute the square root of S using the identity found using the properties of logarithms ( ln x n = n ln x ) and exponentials ( e ln x = x ):

    S = e 1 2 ln S .

    The denominator in the fraction corresponds to the nth root. In the case above the denominator is 2, hence the equation specifies that the square root is to be found. The same identity is used when computing square roots with logarithm tables or slide rules.

    Bakhshali approximation

    This method for finding an approximation to a square root was described in an ancient Indian mathematical manuscript called the Bakhshali manuscript. It is equivalent to two iterations of the Babylonian method beginning with N. The original presentation goes as follows: To calculate S , let N2 be the nearest perfect square to S. Then, calculate:

    d = S N 2 P = d 2 N A = N + P S A P 2 2 A

    This can be also written as:

    S N + d 2 N d 2 8 N 3 + 4 N d = 8 N 4 + 8 N 2 d + d 2 8 N 3 + 4 N d = N 4 + 6 N 2 S + S 2 4 N 3 + 4 N S = N 2 ( N 2 + 6 S ) + S 2 4 N ( N 2 + S )

    Example

    Find 9.2345

    N = 3 d = 9.2345 3 2 = 0.2345 P = 0.2345 2 × 3 = 0.0391 A = 3 + 0.0391 = 3.0391 9.2345 3.0391 0.0391 2 2 × 3.0391 3.0388

    Vedic duplex method for extracting a square root

    The Vedic duplex method from the book 'Vedic Mathematics' is a variant of the digit-by-digit method for calculating the square root. The duplex is the square of the central digit plus double the cross-product of digits equidistant from the center. The duplex is computed from the quotient digits (square root digits) computed thus far, but after the initial digits. The duplex is subtracted from the dividend digit prior to the second subtraction for the product of the quotient digit times the divisor digit. For perfect squares the duplex and the dividend will get smaller and reach zero after a few steps. For non-perfect squares the decimal value of the square root can be calculated to any precision desired. However, as the decimal places proliferate, the duplex adjustment gets larger and longer to calculate. The duplex method follows the Vedic ideal for an algorithm, one-line, mental calculation. It is flexible in choosing the first digit group and the divisor. Small divisors are to be avoided by starting with a larger initial group.

    Basic principle

    We proceed as with the digit-by-digit calculation by assuming that we want to express a number N as a square of the sum of n positive numbers as

    N = ( a 0 + a 1 + + a n 1 ) 2 = a 0 2 + 2 a 0 i = 1 n 1 a i + a 1 2 + 2 a 1 i = 2 n 1 a i + + a n 1 2 .

    Define divisor as q = 2 a 0 and the duplex for a sequence of m numbers as

    d m = { a m / 2 2 + i = 1 m / 2 2 a i a m i + 1 for  m  odd i = 1 m / 2 2 a i a m i + 1 for  m  even .

    Thus, we can re-express the above identity in terms of the divisor and the duplexes as

    N a 0 2 = i = 1 n 1 ( q a i + d i ) .

    Now the computation can proceed by recursively guessing the values of a m so that

    X m = X m 1 q a m d m ,

    such that X m 0 for all 1 m n 1 , with initialization X 0 = N a 0 2 . When X m = 0 the algorithm terminates and the sum of a i s give the square root. The method is more similar to long division where X m 1 is the dividend and X m is the remainder.

    For the case of decimal numbers, if

    N = ( a 0 10 n 1 + a 1 10 n 2 + + a n 2 10 + a n 1 ) 2

    where a i { 0 , 1 , 2 , , 9 } , then the initiation X 0 = N a 0 2 10 2 ( n 1 ) and the divisor will be q = 2 a 0 10 n 1 . Also the product at any m-th stage will be q a m 10 n m 1 = 2 a 0 a m 10 2 n m 2 and the duplexes will be d m = d ~ m 10 2 n m 3 , where d ~ m are the duplexes of the sequence a 1 , a 2 , , a m . At any m-th stage, we see that the place value of the duplex d ~ m is one less than the product 2 a 0 a m . Thus, in actual calculations it is customary to subtract the duplex value of the m-th stage at (m+1)-th stage. Also, unlike the previous digit-by-digit square root calculation, where at any given m-th stage, the calculation is done by taking the most significant pair of digits of the remaining term X m 1 , the duplex method uses only a single most significant digit of X m 1 .

    In other words, to calculate the duplex of a number, double the product of each pair of equidistant digits plus the square of the center digit (of the digits to the right of the colon).

    Number => Calculation = Duplex 3 ==> 32 = 9 14 ==>2(1·4) = 8 574 ==> 2(5·4) + 72 = 89 1,421 ==> 2(1·1) + 2(4·2) = 2 + 16 = 18 10,523 ==> 2(1·3) + 2(0·2) + 52 = 6+0+25 = 31 406,739 ==> 2(4·9)+ 2(0·3)+ 2(6·7) = 72+0+84 = 156

    In a square root calculation the quotient digit set increases incrementally for each step.

    Example

    Consider the perfect square 2809 = 532. Use the duplex method to find the square root of 2,809.

  • Set down the number in groups of two digits.
  • Define a divisor, a dividend and a quotient to find the root.
  • Given 2809. Consider the first group, 28.
  • Find the nearest perfect square below that group.
  • The root of that perfect square is the first digit of our root.
  • Since 28 > 25 and 25 = 52, take 5 as the first digit in the square root.
  • For the divisor take double this first digit (2 · 5), which is 10.
  • Next, set up a division framework with a colon.
  • 28: 0 9 is the dividend and 5: is the quotient. (Note: the quotient should always be a single digit number, and it should be such that the dividend in the next stage is non-negative.)
  • Put a colon to the right of 28 and 5 and keep the colons lined up vertically. The duplex is calculated only on quotient digits to the right of the colon.
  • Calculate the remainder. 28: minus 25: is 3:.
  • Append the remainder on the left of the next digit to get the new dividend.
  • Here, append 3 to the next dividend digit 0, which makes the new dividend 30. The divisor 10 goes into 30 just 3 times. (No reserve needed here for subsequent deductions.)
  • Repeat the operation.
  • The zero remainder appended to 9. Nine is the next dividend.
  • This provides a digit to the right of the colon so deduct the duplex, 32 = 9.
  • Subtracting this duplex from the dividend 9, a zero remainder results.
  • Ten into zero is zero. The next root digit is zero. The next duplex is 2(3·0) = 0.
  • The dividend is zero. This is an exact square root, 53.
  • Find the square root of 2809. Set down the number in groups of two digits. The number of groups gives the number of whole digits in the root. Put a colon after the first group, 28, to separate it. From the first group, 28, obtain the divisor, 10, since 28>25=52 and by doubling this first root, 2x5=10. Gross dividend: 28: 0 9. Using mental math: Divisor: 10) 3 0 Square: 10) 28: 30 9 Duplex, Deduction: 25: xx 09 Square root: 5: 3. 0 Dividend: 30 00 Remainder: 3: 00 00 Square Root, Quotient: 5: 3. 0

    A two-variable iterative method

    This method is applicable for finding the square root of 0 < S < 3 and converges best for S 1 . This, however, is no real limitation for a computer based calculation, as in base 2 floating point and fixed point representations, it is trivial to multiply S by an integer power of 4, and therefore S by the corresponding power of 2, by changing the exponent or by shifting, respectively. Therefore, S can be moved to the range 1 2 S < 2 . Moreover, the following method does not employ general divisions, but only additions, subtractions, multiplications, and divisions by powers of two, which are again trivial to implement. A disadvantage of the method is that numerical errors accumulate, in contrast to single variable iterative methods such as the Babylonian one.

    The initialization step of this method is

    a 0 = S c 0 = S 1

    while the iterative steps read

    a n + 1 = a n a n c n / 2 c n + 1 = c n 2 ( c n 3 ) / 4

    Then, a n S (while c n 0 ).

    Note that the convergence of c n , and therefore also of a n , is quadratic.

    The proof of the method is rather easy. First, rewrite the iterative definition of c n as

    1 + c n + 1 = ( 1 + c n ) ( 1 c n / 2 ) 2 .

    Then it is straightforward to prove by induction that

    S ( 1 + c n ) = a n 2

    and therefore the convergence of a n to the desired result S is ensured by the convergence of c n to 0, which in turn follows from 1 < c 0 < 2 .

    This method was developed around 1950 by M. V. Wilkes, D. J. Wheeler and S. Gill for use on EDSAC, one of the first electronic computers. The method was later generalized, allowing the computation of non-square roots.

    Iterative methods for reciprocal square roots

    The following are iterative methods for finding the reciprocal square root of S which is 1 / S . Once it has been found, find S by simple multiplication: S = S ( 1 / S ) . These iterations involve only multiplication, and not division. They are therefore faster than the Babylonian method. However, they are not stable. If the initial value is not close to the reciprocal square root, the iterations will diverge away from it rather than converge to it. It can therefore be advantageous to perform an iteration of the Babylonian method on a rough estimate before starting to apply these methods.

  • Applying Newton's method to the equation ( 1 / x 2 ) S = 0 produces a method that converges quadratically using three multiplications per step:
  • x n + 1 = x n 2 ( 3 S x n 2 ) .
  • Another iteration is obtained by Halley's method, which is the Householder's method of order two. This converges cubically, but involves four multiplications per iteration:
  • y n = S x n 2 , x n + 1 = x n 8 ( 15 y n ( 10 3 y n ) ) .

    Goldschmidt’s algorithm

    Some computers use Goldschmidt's algorithm to simultaneously calculate S and 1 / S . Goldschmidt's algorithm finds S faster than Newton-Raphson iteration on a computer with a fused multiply–add instruction and either a pipelined floating point unit or two independent floating-point units. Two ways of writing Goldschmidt's algorithm are:

    b 0 = S Y 0 1 / S (typically using a table lookup) y 0 = Y 0 x 0 = S y 0

    Each iteration:

    b n + 1 = b n Y n 2 Y n + 1 = ( 3 b n + 1 ) / 2 x n + 1 = x n Y n + 1 y n + 1 = y n Y n + 1

    until b i is sufficiently close to 1, or a fixed number of iterations.

    which causes

    S = lim n x n . 1 / S = lim n y n .

    Goldschmidt's equation can be rewritten as:

    y 0 1 / S (typically using a table lookup) x 0 = S y 0 h 0 = y 0 / 2

    Each iteration: (All 3 operations in this loop are in the form of a fused multiply–add.)

    r n = ( 1 / 2 ) x n h n x n + 1 = x n + x n r n h n + 1 = h n + h n r n

    until r i is sufficiently close to 0, or a fixed number of iterations.

    which causes

    S = lim n x n . 1 / S = lim n 2 h n .

    Taylor series

    If N is an approximation to S , a better approximation can be found by using the Taylor series of the square root function:

    N 2 + d = n = 0 ( 1 ) n ( 2 n ) ! d n ( 1 2 n ) n ! 2 4 n N 2 n 1 = N + d 2 N d 2 8 N 3 + d 3 16 N 5 5 d 4 128 N 7 +

    As an iterative method, the order of convergence is equal to the number of terms used. With two terms, it is identical to the Babylonian method. With three terms, each iteration takes almost as many operations as the Bakhshali approximation, but converges more slowly. Therefore, this is not a particularly efficient way of calculation. To maximize the rate of convergence, choose N so that | d | N 2 is as small as possible.

    Other methods

    A completely different method for computing the square root is based on the CORDIC algorithm, which uses only very simple operations (addition, subtraction, bitshift and table lookup, but no multiplication). The square root of S may be obtained as the output x n using the hyperbolic coordinate system in vectoring mode, with the following initialization:

    x 0 = S + 1 y 0 = S 1 ω 0 = 0

    Continued fraction expansion

    Quadratic irrationals (numbers of the form a + b c , where a, b and c are integers), and in particular, square roots of integers, have periodic continued fractions. Sometimes what is desired is finding not the numerical value of a square root, but rather its continued fraction expansion, and hence its rational approximation. Let S be the positive number for which we are required to find the square root. Then assuming a to be a number that serves as an initial guess and r to be the remainder term, we can write S = a 2 + r . Since we have S a 2 = ( S + a ) ( S a ) , we can express the square root of S as

    S = a + r a + S .

    By applying this expression for S to the denominator term of the fraction, we have

    S = a + r a + ( a + r a + S ) = a + r 2 a + r a + S .

    Proceeding this way, we get a generalized continued fraction for the square root as

    S = a + r | | 2 a + r | | 2 a + r | | 2 a +

    For any S a possible choice for a and r is a = 1 and r = S - 1, yielding

    S = 1 + S 1 | | 2 + S 1 | | 2 + S 1 | | 2 +

    For example, for the square root of 2, we can take a = 1 and r = 1, giving us

    2 = 1 + 1 | | 2 + 1 | | 2 + 1 | | 2 +

    Taking the first three denominators give the rational approximation of 2 as [1;2,2,2] = 17/12 = 1.41667, correct up to first three decimal places. Taking the first five denominators gives the rational approximation to 2 as [1;2,2,2,2,2] = 99/70 = 1.4142857, correct up to first five decimal places. Taking more denominators give better approximations.

    As another example, for the square root of 3, we can select a = 2 and r = -1, giving us

    3 = 2 1 | | 4 1 | | 4 1 | | 4

    The first three denominators gives 3 as 1.73214, correct up to the first four decimal places. Note that it is not necessary to choose an integer valued a. For instance, we can take a = 2 and r = 1, such that

    3 = 2 + 1 | | 2 2 + 1 | | 2 2 + 1 | | 2 2 +

    We can do the same for the whole numbers as well. For instance,

    2 = 4 = 1 + 3 | | 2 + 3 | | 2 + 3 | | 2 +

    Algorithm

    The following iterative algorithm can be used to obtain the continued fraction expansion in canonical form (S is any natural number that is not a perfect square):

    m 0 = 0 d 0 = 1 a 0 = S m n + 1 = d n a n m n d n + 1 = S m n + 1 2 d n a n + 1 = S + m n + 1 d n + 1 = a 0 + m n + 1 d n + 1 .

    Notice that mn, dn, and an are always integers. The algorithm terminates when this triplet is the same as one encountered before. The algorithm can also terminate on ai when ai = 2 a0, which is easier to implement.

    The expansion will repeat from then on. The sequence [a0; a1, a2, a3, …] is the continued fraction expansion:

    S = a 0 + 1 a 1 + 1 a 2 + 1 a 3 +

    Example, square root of 114 as a continued fraction

    Begin with m0 = 0; d0 = 1; and a0 = 10 (102 = 100 and 112 = 121 > 114 so 10 chosen).

    114 = 114 + 0 1 = 10 + 114 10 1 = 10 + ( 114 10 ) ( 114 + 10 ) 114 + 10 = 10 + 114 100 114 + 10 = 10 + 1 114 + 10 14 . m 1 = d 0 a 0 m 0 = 1 10 0 = 10 . d 1 = S m 1 2 d 0 = 114 10 2 1 = 14 . a 1 = a 0 + m 1 d 1 = 10 + 10 14 = 20 14 = 1 .

    So, m1 = 10; d1 = 14; and a1 = 1.

    114 + 10 14 = 1 + 114 4 14 = 1 + 114 16 14 ( 114 + 4 ) = 1 + 1 114 + 4 7 .

    Next, m2 = 4; d2 = 7; and a2 = 2.

    114 + 4 7 = 2 + 114 10 7 = 2 + 14 7 ( 114 + 10 ) = 2 + 1 114 + 10 2 . 114 + 10 2 = 10 + 114 10 2 = 10 + 14 2 ( 114 + 10 ) = 10 + 1 114 + 10 7 . 114 + 10 7 = 2 + 114 4 7 = 2 + 98 7 ( 114 + 4 ) = 2 + 1 114 + 4 14 . 114 + 4 14 = 1 + 114 10 14 = 1 + 14 14 ( 114 + 10 ) = 1 + 1 114 + 10 1 . 114 + 10 1 = 20 + 114 10 1 = 20 + 14 114 + 10 = 20 + 1 114 + 10 14 .

    Now, loop back to the second equation above.

    Consequently, the simple continued fraction for the square root of 114 is

    114 = [ 10 ; 1 , 2 , 10 , 2 , 1 , 20 , 1 , 2 , 10 , 2 , 1 , 20 , 1 , 2 , 10 , 2 , 1 , 20 , ] . (sequence A010179 in the OEIS)

    Its decimal value is approximately 10.67707 82520 31311 21....

    Generalized continued fraction

    A more rapid method is to evaluate its generalized continued fraction. From the formula derived there:

    z = x 2 + y = x + y 2 x + y 2 x + y 2 x + = x + 2 x y 2 ( 2 z y ) y y 2 2 ( 2 z y ) y 2 2 ( 2 z y )

    and the fact that 114 is 2/3 of the way between 102=100 and 112=121 results in

    114 = 1026 3 = 32 2 + 2 3 = 32 3 + 2 / 3 64 + 2 64 + 2 64 + 2 64 + = 32 3 + 2 192 + 18 192 + 18 192 + ,

    which is simply the aforementioned [10;1,2, 10,2,1, 20,1,2, 10,2,1, 20,1,2, ...] evaluated at every third term. Combining pairs of fractions produces

    114 = 32 2 + 2 3 = 32 3 + 64 / 3 2050 1 1 2050 1 2050 = 32 3 + 64 6150 3 9 6150 9 6150 ,

    which is now [10;1,2, 10,2,1,20,1,2, 10,2,1,20,1,2, ...] evaluated at the third term and every six terms thereafter.

    Using Pell's equation

    Pell's equation (also known as Brahmagupta equation since he was the first to give a solution to this particular equation) and its variants yield a method for efficiently finding continued fraction convergents of square roots of integers. However, it can be complicated to execute, and usually not every convergent is generated. The ideas behind the method are as follows:

  • If (p, q) is a solution (where p and q are integers) to the equation p 2 = S q 2 ± 1 , then p q is a continued fraction convergent of S , and as such, is an excellent rational approximation to it.
  • If (pa, qa) and (pb, qb) are solutions, then so is:
  • (compare to the multiplication of quadratic integers)
  • More generally, if (p1, q1) is a solution, then it is possible to generate a sequence of solutions (pn, qn) satisfying:
  • The method is as follows:

  • Find positive integers p1 and q1 such that p 1 2 = S q 1 2 ± 1 . This is the hard part; It can be done either by guessing, or by using fairly sophisticated techniques.
  • To generate a long list of convergents, iterate:
  • To find the larger convergents quickly, iterate:
  • Notice that the corresponding sequence of fractions coincides with the one given by the Hero's method starting with p 1 q 1 .
  • In either case, p n q n is a rational approximation satisfying
  • Approximations that depend on the floating point representation

    A number is represented in a floating point format as m × b p which is also called scientific notation. Its square root is m × b p / 2 and similar formulae would apply for cube roots and logarithms. On the face of it, this is no improvement in simplicity, but suppose that only an approximation is required: then just b p / 2 is good to an order of magnitude. Next, recognise that some powers, p, will be odd, thus for 3141.59 = 3.14159x103 rather than deal with fractional powers of the base, multiply the mantissa by the base and subtract one from the power to make it even. The adjusted representation will become the equivalent of 31.4159x102 so that the square root will be √31.4159 x 10.

    If the integer part of the adjusted mantissa is taken, there can only be the values 1 to 99, and that could be used as an index into a table of 99 pre-computed square roots to complete the estimate. A computer using base sixteen would require a larger table, but one using base two would require only three entries: the possible bits of the integer part of the adjusted mantissa are 01 (the power being even so there was no shift, remembering that a normalised floating point number always has a non-zero high-order digit) or if the power was odd, 10 or 11, these being the first two bits of the original mantissa. Thus, 6.25 = 110.01 in binary, normalised to 1.1001 x 22 an even power so the paired bits of the mantissa are 01, while .625 = 0.101 in binary normalises to 1.01 x 2−1 an odd power so the adjustment is to 10.1 x 2−2 and the paired bits are 10. Notice that the low order bit of the power is echoed in the high order bit of the pairwise mantissa. An even power has its low-order bit zero and the adjusted mantissa will start with 0, whereas for an odd power that bit is one and the adjusted mantissa will start with 1. Thus, when the power is halved, it is as if its low order bit is shifted out to become the first bit of the pairwise mantissa.

    A table with only three entries could be enlarged by incorporating additional bits of the mantissa. However, with computers, rather than calculate an interpolation into a table, it is often better to find some simpler calculation giving equivalent results. Everything now depends on the exact details of the format of the representation, plus what operations are available to access and manipulate the parts of the number. For example, Fortran offers an EXPONENT(x) function to obtain the power. Effort expended in devising a good initial approximation is to be recouped by thereby avoiding the additional iterations of the refinement process that would have been needed for a poor approximation. Since these are few (one iteration requires a divide, an add, and a halving) the constraint is severe.

    Many computers follow the IEEE (or sufficiently similar) representation, and a very rapid approximation to the square root can be obtained for starting Newton's method. The technique that follows is based on the fact that the floating point format (in base two) approximates the base-2 logarithm. That is log 2 ( m × 2 p ) = p + log 2 ( m )

    So for a 32-bit single precision floating point number in IEEE format (where notably, the power has a bias of 127 added for the represented form) you can get the approximate logarithm by interpreting its binary representation as a 32-bit integer, scaling it by 2 23 , and removing a bias of 127, i.e.

    x int 2 23 127 log 2 ( x ) .

    For example, 1.0 is represented by a hexadecimal number 0x3F800000, which would represent 1065353216 = 127 2 23 if taken as an integer. Using the formula above you get 1065353216 2 23 127 = 0 , as expected from log 2 ( 1.0 ) . In a similar fashion you get 0.5 from 1.5 (0x3FC00000).

    To get the square root, divide the logarithm by 2 and convert the value back. The following program demonstrates the idea. Note that the exponent's lowest bit is intentionally allowed to propagate into the mantissa. One way to justify the steps in this program is to assume b is the exponent bias and n is the number of explicitly stored bits in the mantissa and then show that

    ( ( ( x int / 2 n b ) / 2 ) + b ) 2 n = ( x int 2 n ) / 2 + ( ( b + 1 ) / 2 ) 2 n .

    The three mathematical operations forming the core of the above function can be expressed in a single line. An additional adjustment can be added to reduce the maximum relative error. So, the three operations, not including the cast, can be rewritten as

    where a is a bias for adjusting the approximation errors. For example, with a = 0 the results are accurate for even powers of 2 (e.g., 1.0), but for other numbers the results will be slightly too big (e.g.,1.5 for 2.0 instead of 1.414... with 6% error). With a = -0x4C000, the errors are between about -3.5% and 3.5%.

    If the approximation is to be used for an initial guess for Newton's method to the equation ( 1 / x 2 ) S = 0 , then the reciprocal form shown in the following section is preferred.

    Reciprocal of the square root

    A variant of the above routine is included below, which can be used to compute the reciprocal of the square root, i.e., x 1 2 instead, was written by Greg Walsh. The integer-shift approximation produced a relative error of less than 4%, and the error dropped further to 0.15% with one iteration of Newton's method on the following line. In computer graphics it is a very efficient way to normalize a vector.

    Some VLSI hardware implements inverse square root using a second degree polynomial estimation followed by a Goldschmidt iteration.

    Negative or complex square

    If S < 0, then its principal square root is

    S = | S | i .

    If S = a+bi where a and b are real and b ≠ 0, then its principal square root is

    S = | S | + a 2 + sgn ( b ) | S | a 2 i .

    This can be verified by squaring the root. Here

    | S | = a 2 + b 2

    is the modulus of S. The principal square root of a complex number is defined to be the root with the non-negative real part.

    References

    Methods of computing square roots Wikipedia