All right. I myself am searching for another method, but this is far by the easiest...and the best.
Let me tell you the limitations well in advance:
- This method only works for perfect squares.
- You can calculate square roots of numbers upto 4 digits.
Let us take the number 9604.
It is obvious that the square root will have two digits. Let me make it easy to remember: the root of 3 and 4-digit numbers is always in 2 digits, while the root 2-digit numbers is always a single digit number.
The first two digits of 9604 are 96. Which number's square, from 0 to 9, makes 96, or anything atleast close to it? 9, of course (as 9 times 9 equals 81). So the first digit of the root is 9.
Now, what is the last digit of our number? 4. Which numbers square from 0 to 9
ends in 4? It is 8 and 2 (as 8*8=6
4 and 2*2=
4). So these are our second digits of our root. The results we get are 98 and 92 for the root.
Now we square anyone number to see if it is the right root. If the number you square, as in this case, does not produce 9604, the other number is the correct root, i.e. 98.
As a final note, remember, if the number has three digits, add a zero behind it before you compute it. For example, 961 becomes 0961. This is done so that you take the first two digits of 3-digit numbers, as in the case with the example I just provided, as 09, instead of 96.