Tagged Questions

Concerning the accuracy of operations performed on floating point numbers.

learn more… | top users | synonyms

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?
43
votes
3answers
2k views

Why 0.1 + 0.2 == 0.3?

assert(0.1 + 0.2 != 0.3); // shall be true is my favorite check that a language uses native floating point arithmetic. C++ #include <cstdio> int main() { printf("%d\n", (0.1 + 0.2 != ...
21
votes
18answers
9k views

What's wrong with using == to compare floats in Java?

According to this java.sun page == is the equality comparison operator for floating point numbers in Java. However, when I type this code: if(sectionID == currentSectionID) into my ...
19
votes
4answers
788 views

negative zero in python

[Python 3.1] I encountered negative zero in output from python; it's created for example as follows: k = 0.0 print(-k) The output will be -0.0. However, when I compare the -k to 0.0 for equality, ...
19
votes
7answers
2k views

PHP Math Precision

$a = '35'; $b = '-34.99'; echo ($a + $b); Results in 0.009999999999998 What is up with that? I wondered why my program kept reporting odd results. Why doesn't PHP return the expected 0.01?
17
votes
7answers
680 views

Why does (int)(33.46639 * 1000000) return 33466389?

(int)(33.46639 * 1000000) returns 33466389 Why does this happen?
16
votes
6answers
928 views

Is there a floating point value of x, for which x-x == 0 is false?

In most cases, I understand that a floating point comparison test should be implemented using over a range of values (abs(x-y) < epsilon), but does self subtraction imply that the result will be ...
16
votes
6answers
697 views

c++ floating point precision loss: 3015/0.00025298219406977296

The problem. Microsoft Visual C++ 2005 compiler, 32bit windows xp sp3, amd 64 x2 cpu. Code: double a = 3015.0; double b = 0.00025298219406977296; //*((unsigned __int64*)(&a)) == ...
10
votes
6answers
297 views

Floating point comparison irreproducibility

I and my Ph.D. student have encountered a problem in a physics data analysis context that I could use some insight on. We have code that analyzes data from one of the LHC experiments that gives ...
10
votes
1answer
690 views

If dealing with money in a float is bad, then why does money_format() do it?

I've been waffling on how to deal with currency display and math in PHP, and for a long time have been storing it in MySQL using the DECIMAL type, and using money_format() to format it for display on ...
10
votes
6answers
730 views

Floating point inaccuracy examples

How do you explain floating point inaccuracy to fresh programmers and laymen who still think computers are infinitely wise and accurate? Do you have a favourite example or anecdote which seems to get ...
9
votes
2answers
402 views

Does “epsilon” really guarantees anything in floating-point computations?

To make the problem short let's say I want to compute expression: a / (b - c) on float's. To make sure the result is meaningful, I can check if 'b' and 'c' are inequal: float EPS = ...
8
votes
7answers
841 views

Why does ghci say that 1.1 + 1.1 + 1.1 > 3.3 is True?

I've been going through a Haskell tutorial recently and noticed this behaviour when trying some simple Haskell expressions in the interactive ghci shell: Prelude> 1.1 + 1.1 == 2.2 True Prelude> ...
7
votes
1answer
182 views

What's difference between Math.pow(9, 18) and 9^18

when I use Math.pow(9, 18) =150094635296999136 when I use web Calculator 9^18 = 150094635296999121 (http://web2.0calc.com/) when I use goggle calculator 9^18 = 1.50094635 × 10^17 why it is ...
7
votes
5answers
440 views

Why is my number being rounded incorrectly?

This feels like the kind of code that only fails in-situ, but I will attempt to adapt it into a code snippet that represents what I'm seeing. float f = myFloat * myConstInt; /* Where myFloat==13.45, ...
7
votes
2answers
2k views

PHP/MySQL: Best money operations/storing practices?

First of all sorry for my English, it's not my native language. So, I am planning to make an application (PHP/MySQL) which deals a lot with money, and I am thinking about how to store and operate ...
7
votes
7answers
868 views

How to determine the accuracy of Pi (π)

Optimizing a game we're developing, we're running into the phase where every CPU cycle won counts. We using radians for position calculations of objects circling around other objects and I want to cut ...
6
votes
2answers
154 views

Addition error with ruby-1.9.2

When I add 0.1+0.2 I am getting 0.30000000000000004 but when I add the same number in ruby 1.8.7 I am getting the correct answer 0.3. I get 0.3 by rounding but I just want to get 0.3 on ruby 1.9.2 by ...
6
votes
6answers
553 views

How can I 'trim' a C# double to the value it will be stored as in an sqlite database?

I noticed that when I store a double value such as e.g. x = 0.56657011973046234 in an sqlite database, and then retrieve it later, I get y = 0.56657011973046201. According to the sqlite spec and the ...
6
votes
5answers
335 views

Floating point C++ compiler options | preventing a/b -> a* (1/b)

I'm writing realtime numeric software, in C++, currently compiling it with Visual-C++ 2008. Now using 'fast' floating point model (/fp:fast), various optimizations, most of them useful my case, but ...
6
votes
2answers
477 views

Perl modulo operator question

Why does the first example print a wrong result ? perl -le 'print $x = 100*1.15 % 5' 4 perl -le 'print $x = 1000*1.15 % 5' 0
6
votes
1answer
135 views

Can floating-point precision be thread-dependent?

I have a small 3D vector class in C# 3.0 based on struct that uses double as basic unit. An example: One vector's y-value is -20.0 straight I subtract a vector with an y-value of ...
6
votes
4answers
146 views

Can a calculation of floating point differ on different processors? (+passing doubles between C# and C)

I have an application written in C# that invokes some C code as well. The C# code gets some double as an input, performs some calculations on it, pass it to the native layer that perform its own ...
6
votes
8answers
2k views

Latitude/Longitude storage and compression in C

Does anyone know the most efficient representation for lat/long coordinates? Accuracy level should be enough for consumer GPS devices. Most implementations seem to use double for each unit, but I'm ...
6
votes
12answers
657 views

1.265 * 10000 = 126499.99999999999?

How come when I multiply 1.265 by 10000 I Get this 126499.99999999999 when using Javascript
6
votes
6answers
4k views

What is a simple example of floating point/rounding error?

I've heard of "error" when using floating point variables. Now I'm trying to solve this puzzle and I think I'm getting some rounding/floating point error. So I'm finally going to figure out the ...
5
votes
5answers
114 views

Why 4.1%2 returns 0.0999999999999996 using Ruby?But 4.2%2==0.2

Why 4.1%2 returns 0.0999999999999996?But 4.2%2==0.2.
5
votes
5answers
427 views

How to correctly and standardly compare floats?

Every time I start a new project and when I need to compare some float or double variables I write the code like this one: if (fabs(prev.min[i] - cur->min[i]) < 0.000001 && ...
5
votes
5answers
397 views

define double constant as hexadecimal?

I would like to have the closest number below 1.0 as a floating point. By reading wikipedia's article on IEEE-745 I have managed to find out that the binary representation for 1.0 is 3FF0000000000000, ...
5
votes
3answers
397 views

C++ vs Python precision

Trying out a problem of finding the first k digits of a num^num I wrote the same program in C++ and Python C++ long double intpart,num,f_digit,k; cin>>num>>k; f_digit= ...
5
votes
2answers
489 views

Does Fortran have inherent limitations on numerical accuracy compared to other languages?

While working on a simple programming exercise, I produced a while loop (DO loop in Fortran) that was meant to exit when a real variable had reached a precise value. I noticed that due to the ...
5
votes
3answers
1k views

Is there a bignum library for JavaScript?

Is there a bignum library for JavaScript that I can include like <script type="text/javascript" src="the_bignum_library.js"></script> ? I think my users would prefer to enter numbers ...
5
votes
6answers
1k views

Why can't I multiply a float? [closed]

Possible Duplicate: Dealing with accuracy problems in floating-point numbers I was quite surprised why I tried to multiply a float in C (with GCC 3.2) and that it did not do as I expected.. ...
5
votes
6answers
575 views

How to convert strings to floats with perfect accuracy?

I'm trying to write a function in the D programming language to replace the calls to C's strtold. (Rationale: To use strtold from D, you have to convert D strings to C strings, which is inefficient. ...
5
votes
3answers
2k views

How do I set the floating point precision in Perl?

Is there a way to set Perl script's floating point precision (to 3 digits), without having to change it specifically for every variable? Something similar to TCL's: global tcl_precision set ...
4
votes
3answers
109 views

Change in Python built in round() function between 2.4 and 2.7

Has the built in round() function in Python changed between 2.4 and 2.7? Python 2.4: Python 2.4.6 (#1, Feb 12 2009, 14:52:44) [GCC 3.4.6 20060404 (Red Hat 3.4.6-8)] on linux2 Type "help", ...
4
votes
2answers
802 views

Ruby float precision

As I understand it, Ruby (1.9.2) floats have a precision of 15 decimal digits. Therefore, I would expect rounding float x to 15 decimal places would equal x. For this calculation this isn't the case. ...
4
votes
4answers
140 views

IEEE 754: How exactly does it work?

Why does the following code behave as it does in C? float x = 2147483647; //2^31 printf("%f\n", x); //Outputs 2147483648 Here is my thought process: 2147483647 = 0 1001 1101 1111 1111 ...
4
votes
3answers
91 views

What should i know when using floats/doubles between different machines?

I've heard that there are many problems with floats/doubles on different CPU's. If i want to make a game that uses floats for everything, how can i be sure the float calculations are exactly the same ...
4
votes
4answers
166 views

Why do I need 17 significant digits (and not 16) to represent a double?

Can someone give me an example of a floating point number (double precision), that needs more than 16 significant decimal digits to represent it? I have found in this thread that sometimes you need ...
4
votes
6answers
205 views

Rounded numbers returned as '0.999999999992345' sometimes

I have a report that should return something along the lines of SELECT brand, ROUND(SUM(count * price) / SUM(count), 2) WHERE ... GROUP BY brand, ...; The problem is, I sometimes get ...
4
votes
4answers
2k views

Truncate float numbers with PHP

When a float number needs to be truncated to a certain digit after the floating point, it turns out that it is not easy to be done. For example if the truncating has to be done to second digit after ...
4
votes
6answers
298 views

float to double assignment

Consider the following code snippet float num = 281.583f; int amount = (int) Math.round(num*100f); float rounded = amount/100.0f; double dblPrecision = rounded; double dblPrecision2 = num; ...
4
votes
8answers
536 views

nth root of a number

I wrote a program to calculate nth root of a number upto 2 decimal places. eg 4th root of 81 is 3., 3rd root of 125 is 5.Its working nicely except for the 2nd root of 4. It's giving the output 1.99 ...
4
votes
4answers
392 views

python floating number

i am kind of confused why python add some additional decimal number in this case, please help to explain >>> mylist = ["list item 1", 2, 3.14] >>> print mylist ['list item 1', 2, ...
4
votes
2answers
466 views

jQuery and long int ids

I've faced with a next problem: In our database we have objects with ids, like 4040956363970588323. I'm writing some client-wizard on jQuery for interacting with such objects. Client receives base ...
4
votes
2answers
366 views

In R, what is the difference between these two?

0.9 == 1-0.1 >>> TRUE 0.9 == 1.1-0.2 >>> FALSE
4
votes
5answers
426 views

Counting digits in a float

I am following some beginner tutorials for OpenGL in c++ but as I started off as a c# programmer it has made me take a lot of things for granted. So my problem occurred when I was debug printing my ...
4
votes
8answers
2k views

Dealing with accuracy problems in floating-point numbers

I was wondering if there is a way of overcoming an accuracy problem that seems to be the result of my machine's internal representation of floating-point numbers: For the sake of clarity the problem ...
4
votes
3answers
3k views

SQL server 2005 numeric precision loss

Debugging some finance-related SQL code found a strange issue with numeric(24,8) mathematics precision. Running the following query on your MSSQL you would get A + B * C expression result to be ...

1 2 3 4