You can put this solution on YOUR website! Dear Sir/Madam,
How to find square root of five digit and six digit numbers in an easy way?
------
y = sqrt(x)
----
No matter what form "x" has, if it has perfect square factors, it
can be simplified. Find those factors and take the square root of
them outside the radical.
--
If "x" has no perfect square factors you cannot simply the process.
==================
Example:
sqrt(24) = sqrt(4*6) = sqrt(4)*sqrt(6) = 2sqrt(6)
---
but sqrt(29) is simply sqrt(29)
===================================
Cheers,
Stan H.
===============