IEEE 754 is the Institute of Electrical and Electronics Engineers standard for floating-point computation, and is the most common & widely used implementation thereof.

learn more… | top users | synonyms

99
votes
10answers
4k 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 ...
85
votes
3answers
8k views
+100

PHP Type-Juggling and (strict) Greater/Lesser Than Comparisons

PHP is famous for its type-juggling. I must admit it puzzles me and I'm having a hard time to find out basic logical/fundamental things in comparisons. For example: If $a > $b is true and $b > ...
43
votes
3answers
9k 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 ...
38
votes
7answers
1k views

In binary notation, what is the meaning of the digits after the radix point “.”?

I have this example on how to convert from a base 10 number to IEEE 754 float representation Number: 45.25 (base 10) = 101101.01 (base 2) Sign: 0 Normalized form N = 1.0110101 * 2^5 Exponent esp = 5 ...
31
votes
3answers
1k views

Is a float guaranteed to be preserved when transported through a double in C/C++?

Assuming IEEE-754 conformance, is a float guaranteed to be preserved when transported through a double? In other words, will the following assert always be satisfied? int main() { float f = ...
30
votes
5answers
2k 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 / ...
29
votes
2answers
4k 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 ...
27
votes
8answers
2k views

What is the rationale for all comparisons returning false for IEEE754 NaN values?

Why do comparisons of NaN values behave differently from all other values? That is, all comparisons with the operators ==, <=, >=, <, > where one or both values is NaN returns false, contrary to ...
24
votes
7answers
2k views

Portability of binary serialization of double/float type in C++

The C++ standard does not discuss the underlying layout of float and double types, only the range of values they should represent. (This is also true for signed types, is it two's compliment or ...
23
votes
4answers
2k 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 ...
22
votes
8answers
19k views

Formatting doubles for output in C#

Running a quick experiment related to Is double Multiplication Broken in .NET? and reading a couple of articles on C# string formatting, I thought that this: { double i = 10 * 0.69; ...
21
votes
3answers
741 views

Why is “Divide by Zero” or any other exception not raised?

I have a double[] on which a LINQ operation is being performed: MD = MD.Select(n => n * 100 / MD.Sum()).ToArray(); In some cases, all elements of MD are 0 and then Sum is also zero. Then 0 * 100 ...
20
votes
2answers
624 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 ...
19
votes
9answers
847 views

Why does this loop never end? [duplicate]

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
2answers
373 views

Coercing floating-point to be deterministic in .NET?

I've been reading a lot about floating-point determinism in .NET, i.e. ensuring that the same code with the same inputs will give the same results across different machines. Since .NET lacks options ...
16
votes
6answers
1k 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
2answers
2k views

Detecting a negative 0 stored as a double in C++

I am doing some mathematical calculations (trying to convert Matlab code into C++, using VS2010) and I need to be able to tell if at some point I get a negative 0. According to the IEEE standard ...
16
votes
1answer
267 views

IEEE-754 floating point computations, equality and narrowing

In the following code, the functions foo1,foo2 and foo3 are intended to be equivalent. However when run foo3 does not terminate from the loop, is there a reason why this is the case? template ...
16
votes
3answers
414 views

Floating point comparison revisited

This topic has come up many times on StackOverflow, but I believe this is a new take. Yes, I have read Bruce Dawson's articles and What Every Computer Scientist Should Know About Floating-Point ...
14
votes
6answers
780 views

next higher/lower IEEE double precision number

I am doing high precision scientific computations. In looking for the best representation of various effects, I keep coming up with reasons to want to get the next higher (or lower) double precision ...
14
votes
3answers
1k views

Do any real-world CPUs not use IEEE 754?

I'm optimizing a sorting function for a numerics/statistics library based on the assumption that, after filtering out any NaNs and doing a little bit twiddling, floats can be compared as 32-bit ints ...
14
votes
2answers
1k views

How cross-platform is Google's Protocol Buffer's handling of floating-point types in practice?

Google's Protocol Buffers allows you to store floats and doubles in messages. I looked through the implementation source code wondering how they managed to do this in a cross-platform manner, and ...
13
votes
7answers
13k views

32-bit to 16-bit Floating Point Conversion

I need a cross-platform library/algorithm that will convert between 32-bit and 16-bit floating point numbers. I don't need to perform math with the 16-bit numbers; I just need to decrease the size of ...
13
votes
1answer
2k views

How to check if C++ compiler uses IEEE 754 floating point standard

I would like to ask a question that follows this one which is pretty well answered by the define check if the compiler uses the standard. However this woks for C only. Is there a way to do the same in ...
12
votes
13answers
6k views

Why are c/c++ floating point types so oddly named?

C++ offers three floating point types: float, double, and long double. I infrequently use floating-point in my code, but when I do, I'm always caught out by warnings on innocuous lines like float ...
12
votes
7answers
11k views

Precision of Floating Point

So, I know a little bit about how floating point are represented, but not enough to be sure of my answer. The general question: for a given precision (for my purposes, the number of accurate decimal ...
12
votes
2answers
473 views

With IEEE-754, 0 < ABS(const) < 1, is (x / const) * const guaranteed to return distinct results for distinct values of X?

Assume I do this operation: (X / const) * const with double-precision arguments as defined by IEEE 754-2008, division first, then multiplication. const is in the range 0 < ABS(const) < 1. ...
11
votes
3answers
16k views

The Double Byte Size in 32 bit and 64 bit OS

Is there a difference in double size when I run my app on 32 and 64 bit environment? If I am not mistaken the double in 32 bit environment will take up 16 digits after 0, whereas the double in 64 ...
11
votes
7answers
1k views

Do-s and Don't-s for floating point arithmetic?

What are some good do-s and don't-s for floating point arithmetic (IEEE754 in case there's confusion) to ensure good numerical stability and high accuracy in your results? I know a few like don't ...
11
votes
2answers
195 views

Properties of 80-bit extended precision computations starting from double precision arguments

Here are two implementations of interpolation functions. Argument u1 is always between 0. and 1.. #include <stdio.h> double interpol_64(double u1, double u2, double u3) { return u2 * (1.0 - ...
10
votes
3answers
594 views

In Scala, why is NaN not being picked up by pattern matching?

My method is as follows def myMethod(myDouble: Double): Double = myDouble match { case Double.NaN => ... case _ => ... } The IntelliJ debugger is showing NaN but this is not being ...
10
votes
4answers
362 views

In C, is specifying 2.0f the same as 2.000000f?

Are these lines the same? float a = 2.0f; and float a = 2.000000f;
10
votes
3answers
268 views

IEEE Std 754 Floating-Point: let t := a - b, does the standard guarantee that a == b + t?

Assume that t,a,b are all double (IEEE Std 754) variables, and both values of a, b are NOT NaN (but may be Inf). After t = a - b, do I necessarily have a == b + t?
10
votes
2answers
15k views

How do I convert from a decimal number to IEEE 754 single-precision floating-point format?

How would I go about manually changing a decimal (base 10) number into IEEE 754 single-precision floating-point format? I understand that there is three parts to it, a sign, a exponential, and a ...
10
votes
1answer
2k views

Half-precision floating-point in Java

Is there a Java library anywhere that can perform computations on IEEE 754 half-precision numbers or convert them to and from double-precision? Either of these approaches would be suitable: Keep ...
10
votes
4answers
705 views

CLR JIT optimizations violates causality?

I was writing an instructive example for a colleague to show him why testing floats for equality is often a bad idea. The example I went with was adding .1 ten times, and comparing against 1.0 (the ...
10
votes
3answers
226 views

For a floating point value a: Does a*0.0 == 0.0 always evaluate true for finite values of a?

I was always assuming that the following test will always succeed for finite values (no INF, no NAN) of somefloat: assert(somefloat*0.0==0.0); In Multiply by 0 optimization it was stated that ...
10
votes
4answers
953 views

Are IEEE floats valid key types for std::map and std::set?

Background The requirement for a comparator on the key type of an associative container (for example std::map) is that it imposes a strict weak order on the elements of the key type. For a given ...
10
votes
1answer
208 views

Why is pow(-infinity, positive non-integer) +infinity?

C99 annex F (IEEE floating point support) says this: pow(−∞, y) returns +∞ for y > 0 and not an odd integer. But, say, (−∞)0.5 actually has the imaginary values ±∞i, not +∞. C99’s own sqrt(−∞) ...
10
votes
2answers
577 views

How to simulate Single precision rounding with Doubles?

i had a problem where i was trying to reconstruct the the formula used in an existing system, a fairly simple formula of one input and one output: y = f(x) After a lot of puzzling, we managed to ...
10
votes
2answers
1k views

flush-to-zero behavior in floating-point arithmetic

While, as far as I remember, IEEE 754 says nothing about a flush-to-zero mode to handle denormalized numbers faster, some architectures offer this mode (e.g. ...
9
votes
6answers
5k views

Large numbers erroneously rounded in Javascript

See this code: <html> <head> <script src="http://www.json.org/json2.js" type="text/javascript"></script> <script type="text/javascript"> var jsonString = ...
9
votes
5answers
474 views

Why float variable saves value by cutting digits after point in a weird way?

I have this simple code line: float val = 123456.123456; when i print this val or look in scope, it stores value 123456.13 Ok, it's fine, it can't store all those digits after point just in 4 ...
9
votes
3answers
847 views

Does floor() return something that's exactly representable?

In C89, floor() returns a double. Is the following guaranteed to work? double d = floor(3.0 + 0.5); int x = (int) d; assert(x == 3); My concern is that the result of floor might not be exactly ...
9
votes
7answers
543 views

Does 64-bit floating point numbers behave identically on all modern PCs?

I would like to know whether i can assume that same operations on same 64-bit floating point numbers gives exactly the same results on any modern PC and in most common programming languages? (C++, ...
9
votes
4answers
622 views

How many distinct floating-point numbers in a specific range?

How many rep­re­sentable floats are there be­tween 0.0 and 0.5? And how many representable floats are there between 0.5 and 1.0? I'm more interested in the math behind it, and I need the answer ...
9
votes
5answers
314 views

Why are floating point numbers printed so differently?

It's kind of a common knowledge that (most) floating point numbers are not stored precisely (when IEEE-754 format is used). So one shouldn't do this: 0.3 - 0.2 === 0.1; // very wrong ... as it will ...
9
votes
4answers
965 views

Will this C++ convert PDP-11 floats to IEEE?

I am maintaining a program that takes data from a PDP-11 (emulated!) program and puts it into a modern Windows-based system. We are having problems with some of the data values being reported as ...
9
votes
3answers
1k views

what languages expose IEEE 754 traps to the developer?

I'd like to play with those traps for educational purpose. A common problem with the default behavior in numerical calculus is that we "miss" the Nan (or +-inf) that appeared in a wrong operation. ...
8
votes
7answers
1k views

Representing integers in doubles

Can a double (of a given number of bytes, with a reasonable mantissa/exponent balance) always fully precisely hold the range of an unsigned integer of half that number of bytes? E.g. can an eight ...

1 2 3 4 5 7