I am looking for square root functions (to use in java) that can give square roots upto atleast to 5-6 decimal places accurately. If there is a way to control accuracy of java.lang.Math.sqrt(double) or any external math library, please mention it.
|
|
What problem are you trying to solve? I believe java.lang.Math's sqrt is supposed to be accurate to the full double width. Do you need more than this? |
|||
|
|
|
Try out the code at this link, which uses Newton's method to compute square roots for large numbers (and gets BigDecimal output) to see if it fits your needs. If not, you can modify it :) . |
|||
|
|
|
You can always implement your own using Newton's Method. Then you can make it as accurate as you want (at the cost of CPU of course). Numerical Recipes in C has code and in-depth discussion. However make sure you check the license before using their code in your product. |
|||
|
|
|
You can use this formula to get it to an arbitrary accuracy:
I doubt that it will be particularly fast though. You'd also need a way to store numbers with larger than type(double) accuracy. |
||||
|
|
|
You could roll your own using BigDecimal and a method like Newton-Raphson. That would allow you to specify a precision. Have a look at Numerical Recipes if you need any inspiration. |
|||
|
|
|
Math.sqrt public static double sqrt(double a) Returns the correctly rounded positive square root of a double value. Special cases:
Otherwise, the result is the double value closest to the true mathematical square root of the argument value. Parameters:
Returns:
|
|||
|
|
|
This question has been answered thoroughly enough already, but here is an experimental way to verify that
This prints out |
|||
|
|
|
I usually recommend Apache commons as a first place to look for most tasks.. But it appears the commons.math does not include sqrt(). |
||||
|
|