Tagged Questions
44
votes
16answers
8k views
Is JavaScript's Math broken?
0.1 + 0.2 == 0.3
// returns false
0.1 + 0.2
// returns 0.30000000000000004
Any ideas why this happens?
4
votes
2answers
105 views
floating point numbers - closest number to 1.7
I'm preparing for some exams and one of the questions given in the past is to find the closest number to 1.7 given an imaginary floating point format that has a total of 8 bits (1 for sign, 3 for ...
3
votes
5answers
139 views
Floating-Point Arithmetic = What is the worst precision/difference from Dec to Binary?
as all know decimal fractions (like 0.1) , when stored as floating point (like double or float) will be internally represented in "binary format" (IEEE 754). And some decimal fractions can not ...
3
votes
6answers
791 views
How can I turn a floating point number into the closest fraction represented by a byte numerator and denominator?
How can I write an algorithm that given a floating point number, and attempts to represent is as accurately as possible using a numerator and a denominator, both restricted to the range of a Java ...