I use the following code:
//...
else if(number.equals(ZERO))
return BigDecimal.ZERO.setScale(precision);
The function is invoked via
BigDecimal num = new BigDecimal(0);
System.out.println(Newton.sqrt(num, 5));
and always returns 0E-100 (regardless of the precision provided), but I need 0.00000 etc. Thanks

BigDecimal.ZEROexists, you don't need to define your own constant for that. – fge Dec 16 '11 at 20:44BigDecimal.equals(Object)will returntrueonly iff the two instances' value and precision are the same. TryBigDecimal.compareTo(BigDecimal) == 0instead. Although, I'm not sure what's the purpose of your code. – Kohányi Róbert Dec 16 '11 at 20:46