List of utility methods to do Square Root Get
double retVal = Math.sqrt(val); if (n > 1) { retVal = squareRoot(retVal, n - 1); return retVal;