Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can i get 64 bits of the fractional part of the square root of a number in java?

share|improve this question
I think you mean 53 bits. – Ignacio Vazquez-Abrams Dec 2 '10 at 6:46
i mean 64 bits. – elle Dec 2 '10 at 6:51

2 Answers

up vote 2 down vote accepted

You will have to find a library that calculates the value to 64 fractional bits, or study the algorithms and write it yourself. A double does not store 64 fractional bits; it stores 64 total bits. Only 53 of those are used to represent the fraction ("mantissa", technically speaking; a number like 1.xxxxxxx in binary, except the 1 is always 1, so there is no need to record it), 12 are used for an exponent (so that the double can represent very large numbers as well as numbers that are very close to zero), and 1 is used for a sign (so that it can represent negative numbers).

share|improve this answer

If you need 64-bits, you can use double precision to get up to 53-bits (note for values 1 or more, you will get less fractional precision) and then use BigDecimal and successive approximation to get more bits of precision.

Is this homework? I can't see a practical use for this.

share|improve this answer
this is not homework. I'm trying to generate this to use them in implementing SHA512. – elle Dec 2 '10 at 10:01

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.