You are on page 1of 2

Calculating the Square Root without a Calculator

As you probably know, the square root of a non-negative real number, x, is a non-negative real number,y , such that y 2= x . Another way to write it is " y= x ". In order to calculate the square root you can use the "Long Division" algorithm. This algorithm is based on the algebraic identity ab2 =a 22abb2 .

How to Calculate?
Divide the page into areas:

A line for the result above the argument. The argument under the radical (" Space for products and remainders.

").

A left margin for the factors (twenty times the current result + next digit).

Steps: 1 Separate the digits of the argument the following way: 1.1 Left of the decimal point: starting at the rightmost digit add a space to the right of each two digits. For example: "12345" -> "1 23 45". 1.2 Right of the decimal point: starting at the leftmost digit add a space to the left of each two digits. If the number of digits is odd, append a zero. For example: "56789" -> "56 78 90" 2. Calculate the 1st digit of the result. It is the largest number, n, such that n 2 is smaller than the 1st pair. Write that digit above the 1st pair For example: 1

17 23 .81 21

3. Write the square of the 1st digit under the 1st pair. Subtract the square from the first pair, and write the difference under it. Call the difference "remainder". 1 2 1 1 4 For each of the remaining pairs, starting from the left, perform the following steps: 4.1 Add the next pair to the right of the remainder. 1 2 1 1 17 4.2 Multiply the current result, r, by 20, and add the largest digit, d, such that d(20r + d) is smaller than the remainder. Write 20r + d left of the remainder. Append d to the result. 17 23 .81 21

17 23 .81 21

1 2 1 24| 1

4 17 23 .81 21 17

4.3 Multiply (20r + d) by d, write the product under the remainder justified right, and subtract the product from the remainder. [ Ignore the decimal point, just remember where to place it. ] 1 2 1 24| 1 17 96 21 4.4 Repeat steps 4.2 - 4.3 until done. 1 2 1 24| 1 287| 294.3| 294.69| 17 21 1 23 09 14 26 .81 .29 .52 .52 21 21 == 96 20 4 17 7 23 .3 .81 9 21 4 17 23 .81 21

88 26 Notes:

==

1. You can add pairs of zeros to the argument according to the desired precision. 2. Additional actions required for rounding are not included in the steps. To find it check if the next digit is larger than- or equal to 5.

You might also like