Methods of computing square roots
The square root of a number is whatever number equals when multiplied by itself (squared). There are many ways to calculate square roots, and even more ways to estimate them.
The mathematical operation of finding a root is the opposite operation of exponentiation, and therefore involves a similar but reverse thought process.
Firstly, one needs to know how precise the result is expected to be. This is because often square roots are irrational. For example, square root of a nice round whole number 28 is a fraction which in its decimal notation has infinite length, and therefore it is impossible to express it exactly:
Moreover, for some real numbers the square root is a complex number. For example, square root of -4 is a complex number 2i :
In many cases there may be multiple valid answers. For example, square root of 4 is 2, but -2 is also a valid answer. One can verify that they are both valid answers by squaring each candidate answer and checking if you obtain 4 as the result of verification:
Please note that calculating a square root is a special case of the problem of calculating Nth root.
Calculating
Most calculators provide a function for calculation of a square root.
General Steps | Example | |
---|---|---|
How to calculate a square root using a simple calculator. |
|
|
Estimating
If the result does not have to be very precise, the following estimation techniques could be helpful:
Methodology | Example |
---|---|
Suppose you need to estimate the square root of some number .
Find some whole number such that is less than , while is greater than . Now we know that the square root of is somewhere between and , so we can use as an approximate square root of . |
Suppose we need to estimate the square root of 2.
, which is less than 2, and , which is more than 2. The halfway point of 1 and 2 is 1.5. Therefore, is approximately 1.5. |
References