Tagged Questions

Floating point numbers are approximations of real numbers that can represent larger ranges than integers which use the same amount of memory, at the cost of lower precision. Floating point numbers are a source of surprises for many programmers because their semantics are different from real numbers. For example, on many systems, 0.1 + 0.1 + 0.1 != 0.3, and NaN != NaN.

learn more… | top users | synonyms

473
votes
8answers
47k views

Why doesn't GCC optimize a*a*a*a*a*a to (a*a*a)*(a*a*a)?

I am doing some numerical optimization on a scientific application. One thing I noticed is that, GCC will not recognize pow(a,6), and will call the library function pow, (although it recognizes ...
130
votes
11answers
4k views

Can anyone explain this strange behaviour?

Here is the example with comments: class Program { // first version of structure public struct D1 { public double d; public int f; } // during some changes in ...
89
votes
21answers
8k views

Why can't decimal numbers be represented exactly in binary?

There have been several questions posted to SO about floating-point representation. For example, the decimal number 0.1 doesn't have an exact binary representation, so it's dangerous to use the == ...
85
votes
10answers
2k views

Are floating-point numbers consistent in C#? Can they be?

No, this is not another "Why is (1/3.0)x3 != 1.0" question. I've been reading about floating-points a lot lately; specifically, how the same calculation might give different results on different ...
66
votes
8answers
2k views

In which order should floats be added to get the most precise result?

This was a question I was asked at my recent interview and I want to know (I don't actually remember the theory of the numerical analysis, so please help me :) If we have some function, which ...
50
votes
6answers
1k views

Why does Double.NaN==Double.NaN return false?

I was just studying OCPJP questions and I found this strange code: public static void main(String a[]) { System.out.println(Double.NaN==Double.NaN); ...
50
votes
17answers
31k views

Most effective way for float and double comparison

What would be the most efficient way to compare two doubles or two floats (single precision)? Simply doing this is not correct: bool CompareDoubles1 (double A, double B) { return A == B; } But ...
47
votes
6answers
1k views

How many double numbers are there between 0.0 and 1.0?

This is something that's been on my mind for years, but I never took the time to ask before. Many (pseudo) random number generators generate a random number between 0.0 and 1.0. Mathematically there ...
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 != ...
43
votes
13answers
58k views

round() for float in C++

I need a simple floating point rounding function, thus: double round(double); round(0.1) = 0 round(-0.1) = 0 round(-0.9) = -1 I can find ceil() and floor() in the math.h - but not round(). Is it ...
41
votes
8answers
4k views

When should I use double instead of decimal?

I can name three advantages to using double (or float) instead of decimal: Uses less memory. Faster because floating point math operations are natively supported by processors. Can represent a ...
39
votes
12answers
1k views

Is floating-point == ever OK?

Just today I came across a third party software we're using and in their sample code there was something along these lines: // defined in somewhere.h static const double BAR = 3.14; // code ...
33
votes
5answers
18k views

How to nicely format floating types to String?

An 64-bit double can represent integer +/- 253 exactly Given this fact I choose to use a double type as a single type for all my types, since my largest integer is unsigned 32-bit. But now I have to ...
32
votes
12answers
68k views

How do you round a floating point number in Perl?

How can I round a decimal number (floating point) to the nearest integer? e.g. 1.2 = 1 1.7 = 2
30
votes
8answers
48k views

python limiting floats to two decimal points

I want a to be rounded to 13.95 >>> a 13.949999999999999 >>> round(a, 2) 13.949999999999999 The round function does not work [the way I expect].
29
votes
6answers
848 views

How computer does floating point arithmetic?

I have seen long articles explaining how floating point numbers can be stored and how the arithmetic of those numbers is being done, but please briefly explain why when I write cout << 1.0 / ...
28
votes
2answers
985 views

Can 0.99999999999 be rounded to 1.0 when multiplying?

When multiplying a floating number that is very close to 1 with an int > 0, can it ever be interpreted as 1. That is, if Math.random() returns its highest possible result (which is 1 step below ...
28
votes
1answer
1k views

Optimizing numerical array performance in Haskell

I'm working on a terrain generation algorithm for a MineCraft-like world. Currently, I'm using simplex noise based on the implementation in the paper 'Simplex Noise Demystified' [PDF], since simplex ...
28
votes
4answers
7k views

When should I use the “strictfp” keyword in java?

Ok, I've looked up what this does, but does anyone actually have an example of when you would use the "strictfp" keyword in java? Has anyone actually found a use for this? Would there be any ...
27
votes
2answers
443 views

To infinity and back

There are mathematical operations that yield real numbers from +/- infinity. For example exp(-infinity) = 0. Is there a standard for mathematical functions in the standard C library that accept ...
27
votes
3answers
5k views

Double vs float on the iPhone

I have just heard that the iphone cannot do double natively thereby making them much slower that regular float. Is this true? Evidence? I am very interested in the issue because my program needs ...
26
votes
7answers
830 views

Emulate “double” using 2 “float”s

I am writing a program for an embedded hardware that only support 32-bit single-precision floating point arithmetic. The algorithm I am implementing, however, requires a 64-bit double-precision ...
25
votes
12answers
4k views

How can I write a power function myself?

I was always wondering how I can make a function which calculates the power (e.g. 23) myself. In most languages these are included in the standard library, mostly as pow(double x, double y), but how ...
24
votes
5answers
855 views

How can I test for negative zero?

Initially I thought Math.Sign would be the proper way to go but after running a test it seems that it treats -0.0 and +0.0 the same.
24
votes
5answers
10k views

how can I force division to be floating point in Python?

I have two integer values a and b, but I need their ratio in floating point. I know that a<b and I want to calculate a/b, so if I use integer division I'll always get 0 with a remainder of a. How ...
23
votes
6answers
4k views

Why not use Double or Float to represent currency?

So I've always been told NEVER to do this, and this time I pose the question to you: why? I'm sure there is a very good reason, I simply do not know what it is. :-P
23
votes
7answers
1k views

Why do programming languages round down until .6?

If you put a decimal in a format where has to be rounded to the nearest 10th, and it is: 1.55, it'll round to 1.5. 1.56 will then round to 1.6. In school I recall learning that you round up when you ...
23
votes
8answers
21k views

How do I print a double value with full precision using cout?

So I've gotten the answer to my last question (I don't know why I didn't think of that). I was printing a double using cout that got rounded when I wasn't expecting it. How can I make cout print a ...
22
votes
21answers
2k views

Why are floating point values so prolific?

So, title says it all. Why are floating point values so prolific in computer programming. Due to problems like rounding errors, and not being able to even accurately represent numbers such as 0.1, I ...
21
votes
5answers
904 views

Floating point comparison

int main() { float a = 0.7; float b = 0.5; if (a < 0.7) { if (b < 0.5) printf("2 are right"); else printf("1 is right"); } else printf("0 are ...
21
votes
2answers
503 views

Map a 32 bit float to a 32 bit integer

Is there a way to map floats to ints or unsigned ints so that with the exception of NaN, order is preserved? So if a and b are floats, and F is the mapping function, a < b implies F(a) < F(b) ...
21
votes
2answers
2k views

Usefulness of signaling NaN?

I've recently read up quite a bit on IEEE 754 and the x87 architecture. I was thinking of using NaN as a "missing value" in some numeric calculation code I'm working on, and I was hoping that using ...
21
votes
3answers
4k views

Why is SSE scalar sqrt(x) slower than rsqrt(x) * x?

I've been profiling some of our core math on an Intel Core Duo, and while looking at various approaches to square root I've noticed something odd: using the SSE scalar operations, it is faster to take ...
21
votes
10answers
7k views

Why doesn't C have unsigned floats?

I know, the question seems to be strange. Programmers sometimes think too much. Please read on... In C I use signed and unsigned integers a lot. I like the fact that the compiler warns me if I do ...
21
votes
11answers
2k views

How to alter a float by its smallest increment (or close to it)?

I have a double value f and would like a way to nudge it very slightly larger (or smaller) to get a new value that will be as close as possible to the original but still strictly greater than (or less ...
20
votes
1answer
500 views

Random generation of C programs with floating-point

Does anyone know a random generator of C programs that include floating-point computations? I am looking for something that would be a little bit like Csmith, except that Csmith does not generate ...
20
votes
4answers
1k views

Converting IEEE 754 floating point in Haskell Word32/64 to and from Haskell Float/Double

Question In Haskell, the base libraries and Hackage packages provide several means of converting binary IEEE-754 floating point data to and from the lifted Float and Double types. However, the ...
20
votes
8answers
6k views

Floating point vs integer calculations on modern hardware

I am doing some performance critical work in C++, and we are currently using integer calculations for problems that are inherently floating point because "its faster". This causes a whole lot of ...
20
votes
5answers
2k views

How best to sum up lots of floating point numbers?

Imagine you have a large array of floating point numbers, of all kinds of sizes. What is the most correct way to calculate the sum, with the least error? For example, when the array looks like this: ...
20
votes
7answers
16k views

Using NaN in C++?

What's the best way to use NaNs in C++? I found std::numeric_limits<double>::quiet_NaN() and std::numeric_limits<double>::signaling_NaN(). I'd like to use signaling_NaN to represent an ...
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?
19
votes
9answers
772 views

Why does this loop never end? [closed]

Possible Duplicate: problem in comparing double values in C# I've read it elsewhere, but really forget the answer so I ask here again. This loop seems never end regardless you code it in ...
18
votes
4answers
755 views

Why [float.MaxValue == float.MaxValue + 1] does return true?

I wonder if you could explain the Overflow in floating-point types. float.MaxValue == float.MaxValue + 1 // returns true
18
votes
9answers
1k views

C++: how can I test if a number is power of ten?

I want to test if a number double x is an integer power of 10. I could perhaps use cmath's log10 and then test if x == (int) x? edit: Actually, my solution does not work because doubles can be very ...
18
votes
18answers
9k views

Elegant workaround for JavaScript floating point number problem

I have the following dummy test script: function test(){ var x = 0.1 * 0.2; document.write(x); } test(); This will print the result 0.020000000000000004 while it should just print 0.02 (if ...
18
votes
6answers
2k views

“Approximate” greatest common divisor

Suppose you have a list of floating point numbers that are approximately multiples of a common quantity, for example 2.468, 3.700, 6.1699 which are approximately all multiples of 1.234. How would ...
18
votes
6answers
8k views

How do you generate a random number in C#?

I would like to generate a random floating point number between 2 values. What is the best way to do this in C#?
17
votes
7answers
680 views

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

(int)(33.46639 * 1000000) returns 33466389 Why does this happen?

1 2 3 4 5 28