How do I find the square root of a number which is not a perfect square?
'
----------
There are four ways, that I am aware of, to approximate the square root of an imperfect square.
Let's begin with the easiest one.
Method 1 :
Let x be the number whose square root we want to compute (x is referred to as the radicand).
First, we find the perfect square closest to x. Let this number be y.
The square root of x is then computed to be
Note : This method provides finite precision, often to only two decimal places. Using the closest perfect square is the key to finding acceptable solutions.
Computing a) and b)
a) 64 is the closest perfect square.
b) 25 is the closest perfect square.
Method 2 :
Again, x is the radicand and y is our best guess such that is closest to x.
We proceed as follows -
- Calculate
- Find average of and y. This becomes our new y,
- Repeat steps 2 and 3 until you get your desired precision. Output y when done.
Note : Greater the number of times one iterates, greater the precision one achieves. Also, closer the initial approximated value, faster one approaches the true value of the square root of x.
Computing
Let's start with y=5 as our initial guess, that is, .
Repeating steps 1 and 2,
Although we could have continued, let's stop here. We get y=4.8989 which is a decent approximation of the actual square root of 24.
Method 3:
This method is what they call the Long Division Method for finding square roots.
Finding
Method 4:
Note : It doesn't matter which logarithm function is used as long as the corresponding antilog function is used.
Computing
To sum up, method 1 is the easiest of all the procedures listed. Method 2, while being tedious and iterative, is easy to use and can provide greater precision, reliably. Use method 3 if you can remember the steps involved accurately. Use method 4 only if you have a logarithm table and are familiar with using one.