Approximating Square Root of Numbers by Averaging
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 . » Read more