There are several algorithms developed to manually calculate the square root of a number. My favorite is the method of averaging, which is probably the least complicated. In this method, the number is divided by the nearest square root estimate, and then the quotient and the square root estimate are averaged. The result is the new estimate.
Sounds complicated? Not really.
Example: Approximate .
Note: Using a calculator, .
Solution
We know that is between
and
. Between the two, it is nearer to
. So, the first estimate is
. Next, we divide
by the first estimate and “average” it with the quotient .
Second Estimate
Divide: .
Average:
Second estimate: (2 significant digits)
Third Estimate
Divide:
Average:
Third estimate: (4 significant digits)
Fourth Estimate
Divide:
Average:
Fourth estimate: (8 significant digits)
Notice that the third estimate is already correct up to 8 significant digits which means that this method is quite accurate. In the fifth, sixth, and seventh estimates, 16, 32 and 64 digits should be kept respectively. Of course, repeating the process over and over will obtain more accurate approximations.
Update: Don Cohen has a short Mathematica code for this method in his site.
Reference: Modern Elementary Mathematics








Approximating Square Root of Numbers by Averaging: There are several algorithms developed to manually calculate … http://t.co/i1k3Vew9
hmm..interestin.. Approximating Square Root of Numbers by Averaging http://t.co/z0C13Dlw
Me encanta este método para aproximar raíces! Approximating Square Root of Numbers by Averaging http://t.co/tp2MQ2L9
Guillermo,
The interesting thing about this method is that it is an example of iterating a function and finding infinite sequences. You can see this method using Mathematica, on my site at http://www.mathman.biz/html/sqrtbyav&iter.html with various links to other ways to use iteration to find infinite sequences with young people, and solving equations (Peter Farrell on Math 2.0 mentioned Newton’s method using iteration as another way to solve quadratic equations). This file is also on my A Map To Calculus at Pi and sqrts.
Don
Thank you for the information Don. I updated the blog and mentioned it above.