vote up 12 vote down star
5

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 really can't see how they got as far as they did.

I understand that the computation is faster with floating point numbers, however, I can think of only a few cases that they actually the right data type would be using. If you sat back and think about every time you used a floating point value, how many times did you say, well, some error would be ok, as long as the result was a few microseconds faster.

It really makes me think because Jeff was talking about NP completeness, and how heuristics give an answer that is kind of right. And well, computers shouldn't do that. They should give you the answer that is correct. Yet we see floating point values used in many applications where they are completely not valid.

What really bugs me, isn't that floating point exists, but that in many languages, there isn't even a viable alternative, non-floating point, decimal value. A lot of programmers when doing financial applications have to fall back to storing the number of cents in an integer field. Which brings with it all kinds of other problems.

Why do floats continue to be so prolific, even though they can't represent the real answer, and we expect computers to be accurate?

[EDIT]

Just to clarify, I was talking about Base 2 floating points, and not base 10 floating points. .Net offers the Decimal data type, which is a base 10 floating point value which offers a much better representation of the numbers we deal with on a daily basis in most computer programs. I find it hard to believe that even modern languages like Java don't support base 10 floating point values, unless you want to move into the realm of things like BigDecimal, which isn't really the right answer either in a lot of situations.

flag

47% accept rate
Unless you are using a factorial base representation, ALL fractional arithmetic performed on a computer is approximate. – Mitch Wheat Nov 29 '08 at 1:55
Unless you happen to use one of the few fractions that has an exact represnetation... – Mitch Wheat Nov 29 '08 at 1:55
@Kibbee: was this a joke question? – Mitch Wheat Nov 29 '08 at 1:57
2  
@Kibbee - for a question where the title says it all, there's an awful lot of text here. – Michael Burr Nov 29 '08 at 4:05
I agree with Mike B – Joseph Nov 29 '08 at 4:57
show 1 more comment

19 Answers

vote up 6 vote down

Floating point sucks, but how else would you express (1.0 / 3.0) that can be multiplied 3.0 again and produce 1.0? Plus there's the IEEE 754-1985 everyone agreed on: v = (-1)^sign * s^(exponent-exponent_bias) * (1 + fraction)

Note (1 + fraction).

I think what's bad is that no one seems to really understand that floating point does NOT express simple values like 0.1 accurately and that you can easily introduce rounding error using things like truncation.

link|flag
Your examaple of (1.0 / 3.0) * 3.0 == 1.0 is probably not a very good example because this depends on representation. Quite often it doesn't exactly equal the original value (eg. 0.999999999...) – Mitch Wheat Nov 29 '08 at 1:48
Great. So we can represent 0.33333333.... but we can't represent 0.1. What genius thought up that one. – Kibbee Nov 29 '08 at 1:48
In base 2, you can't represent 0.33333333... exactly. – Mitch Wheat Nov 29 '08 at 1:50
Aside from a fraction type there will aways be trivial values that can't be represented in any finite representation. Even then, transcendental function muck it up. – BCS Nov 29 '08 at 2:14
@Mitch, == comparison is meaningless in floating point, because everything is approximation. I am not claiming float can express 1.0/3.0 accurately, but (1.0 / 3.0) * 3.0 will come close enough to 1.0 because it has rounding built in. – eed3si9n Nov 29 '08 at 2:37
show 5 more comments
vote up 0 vote down

They are so prolific because there are more of them! Dividing one integer by another will more often produce a fractional result.

The integers are countable, whereas the reals (floats) are not.

link|flag
Is that meant to be funny? – Kibbee Nov 29 '08 at 1:47
1  
now I'm going to complain my language doesn't have a native irrational number type. – Jimmy Nov 29 '08 at 1:48
About the integers being counatable and reals not? No. I'm serious. It's taught at all uni level mathematics courses. – Mitch Wheat Nov 29 '08 at 1:49
floats are most certainly countable. They have a fixed binary representation, and each valid float can be enumerated. There is a finite number of floats. – Dour High Arch Nov 29 '08 at 2:03
floats are, but The Reals (|R) are not. – Mitch Wheat Nov 29 '08 at 2:06
show 7 more comments
vote up 2 vote down

Faster than what? Integers? FP is slower than ints.

FP is the only choice for anything other than rational numbers and most things that aren't integers, aren't rational either.

link|flag
You're right: floating point is the only rational choice. Ha! Hahaha! – sylvarking Nov 29 '08 at 5:00
What about fixed-point numbers? They're seldom the right choice, but they are an alternative. – Kevin Nov 29 '08 at 8:36
fixed point works, but has most of the issues of FP and then some. The only advantage is you can get reasonable perf without a FP unit. (some work in that direction: klabs.org/mapld04/presentations/…) – BCS Nov 29 '08 at 17:48
vote up 5 vote down

the standard binary float is an integer times a power of 2. in base 2, it is exact up to a certain number of digits. The problem in the question is then, why isn't it base 10 instead of base 2. Well, i think that is where the decimal types (or base 10 floats) come in.

link|flag
The standard float is actually not simply an integer times a power of 2. It's (1 + fraction) times a power of 2. – eed3si9n Nov 29 '08 at 2:29
vote up 1 vote down

Some things are rather hard to do without using inexact arithmetic, working out sin(22) exactly is perhaps slightly more complex than most hardware could deal with.

link|flag
vote up 20 vote down

Because there's no alternative. You need to be able to represent values of very different magnitudes, from the tiniest fraction to ridiculous numbers like 10^300.

And to provide some measure of efficiency, a fixed-size representation has to be used. A primitive datatype that could conceivably grow to hundreds of bytes just won't work out.

So the only plausible approach is to use a datatype which allows you a certain number of significant digits, and then an exponent so you can slide the decimal point back and forth to represent numbers of pretty much any magnitude. And that's what floating point numbers are. And yes, they have rounding errors, because they have finite precision, just like any number you might write down in base 10 on a notepad. It too contains rounding errors. Try writing down a simple number like "a third". Now try writing down all the digits of pi.

In both cases, you'll lose precision and get rounding errors. And obviously a CPU has to deal with the same constraints (it too has to pick a representation, even if it means some numbers can't be expressed accurately, like a third in base10, and it has to use a finite number of bits, so it can only represent a finite number of digits).

No matter how you represent your numbers, you will run up against the limits of the finite number of bits allocated for the number, and the limitations that not all fractional values can be represented accurately in a given number base.

Integers aren't perfect either. Try multiplying 3 billion by 2 in a standard 32-bit integer, and see what you get. Now try dividing 8 with 3, and see what you get. That's right, integers have rounding errors too and a limited number of digits too.

It's not that floating point is a bad choice of representation, it's just that it has its limitations, just like any other option would, and too many programmers are unaware of this.

Edit: In response to your edit, no, base10 is not "better". It suffers from the exact same problems for many values, just not 0.1. But you'd still get rounding errors when performing computations with a finite base10 datatype.

The key is to accept that these datatypes can never be entirely accurate, and write your program so that it can handle this uncertainty. And you'd have to do this whether your program used base 2, 10, 16 or 137.

link|flag
Your conclusion is correct (the last paragraph) but the rational behind is wrong (the first 2 paragraphs). It takes 8 microseconds to compute 10**300 in Python (25 -- 600) if it were the mere question of efficiency I would prefer a bit slow but correct answer. The answer is deeper is.gd/9ZwX – J.F. Sebastian Dec 3 '08 at 4:29
So based on what you would prefer, you conclude that everyone else's rationale is wrong? ;) Taking multiple microseconds to perform a single operation is not always acceptable. – jalf Dec 3 '08 at 5:04
Have you read my answer? The point is even if we disregard performance issues there are fundamental reasons why a computer can't always get a precise answer (regardless of time it takes). – J.F. Sebastian Dec 3 '08 at 16:09
Which answer? A link which points to this thread? And I don't see how that contradicts what I said. A computer can never get a precise answer, and floating-point happens to be a good, efficient approximation. – jalf Dec 3 '08 at 19:05
Here's correct link: stackoverflow.com/questions/327020/… (is.gd eaten the anchor tag) – J.F. Sebastian Dec 3 '08 at 23:15
vote up 1 vote down

Floating point numbers are the default choice because they can represent equally well tiny and huge numbers, which is often the need in scientific computing. You cannot accomplish the same using fixed point numbers with constant (and reasonable) size.

Both floating point (mostly with respect to addition of small with big numbers) and fixed point numbers are subject to rounding. The difference is that in fixed point computation the rounding error must be considered negligible with respect to the least significant digit of the data type, whereas in a floating point operation it must be considered negligible with respect to the result.

Now, the main issue with floating point rounding is that, while there are strategies to deal with it (say, in numerical integration), the rounding error is often difficult to estimate a priori in a general computation, since it depends on the final as well as all the intermediate results.

When 1) you don't have to represent huge numbers like 10^50 as well as tiny numbers like 10^-50, 2) computations are mainly sums and differences, and 3) rounding must be kept strictly under control, as is the case with money amounts, fixed point numbers are indeed the best choice.

link|flag
vote up 7 vote down

English answer: because mathematicians have proven that it's impossible to represent real numbers exactly on a digital computer. Even if you give your computer an infinite number of bytes of memory and you only want to be able to exactly represent all real numbers between 0 and 1, it's still provably impossible.

Mathematical answer: real numbers form an uncountably infinite set. Computer memory is made of discrete bits. Even assuming a (countably) infinite number of memory bits, digital computers can never represent an uncountably infinite set exactly.

As jalf suggested, try thinking about how to exactly represent irrational numbers like pi and e.

Another thought to ponder: why should computers use base 10? The only thing special about base 10 is that we have 10 fingers so most societies that have mathematical abilities use base 10.

link|flag
"Even if you give your computer an infinite number of bytes of memory and you only want to be able to exactly represent all real numbers between 0 and 1" - if that was the case, you could represent real numbers. – Federico Ramponi Nov 29 '08 at 3:32
And don't stick with the uncountability subject. The set of rational numbers is indeed countable, but still you can't represent exactly all the rational numbers between 0 and 1 with a finite memory computer. – Federico Ramponi Nov 29 '08 at 3:36
Not true... 1, 2, 3, etc. are all real numbers... to be accurate, no scheme can exactly represent EVERY real number... but each scheme can exactly represent a different subset of all the real numbers... – Charles Bretana Nov 29 '08 at 4:25
@Charles: Each scheme can only represent a countable subset. – Mr Fooz Nov 29 '08 at 6:10
@Frederico: the real numbers between 0 and 1 still form an uncountable set, thus representing that set is "still provably impossible." – Mr Fooz Nov 29 '08 at 6:12
show 3 more comments
vote up 3 vote down

There is absolutely nothing wrong with floating point numbers if you know what you're doing. The difficulty comes from people expecting exactness when it's made quite explicit that floating point numbers do not do that in the vast majority of cases.

People complain about rounding errors but, if you think about it, let's say that 1/3 turns out to be 0.333333333 in floating point. The error there is at most 0.0000000004 divided by 0.333333333 or 4 parts per 333,333,333 which turns out to be 1.2 millionths of a percent.

That is truly insignificant. And, the good thing is, whether you're talking about numbers as small as 10-43 or as high as a Googolplex (1010100), the relative error remains small.

People say there is also an issue with adding numbers like 10100 and 10-100 since there aren't enough bits to successfully include both numbers, but you need to understand that 10100 plus 10-100 is, to all intents and purposes, 10100.

Mathematicians understand this concept just fine; it's mostly the laypeople that can't wrap their heads around it.

Your wish for a language that can provide a "viable alternative, non-floating point, decimal value" is difficult to achieve since it would soon run out of storage if you required perfect accuracy (a la the aforementioned 10100 + 10-100 requiring 200 digits of storage for a single number and 1/3 requiring an infinite number of digits).

link|flag
NOT for all intents and purposes. E.g.: universe simulation. You could have an object at 10^100, and 10^100 + 10^-100; it's NOT the same. – TraumaPony Nov 29 '08 at 4:15
Nothing in a computer can give perfect accuracy for every possible real number. Each numeric representation scheme includes a (different) set of real numbers that it can represent exactly. For each scheme, all other numbers must be rounded to the nearest one it CAN represent. – Charles Bretana Nov 29 '08 at 4:35
@Trauma, when you're talking distances like 10^100, the only force applicable is gravitational and that follows an inverse square law (power diminishes relative to the distance squared). Do the calculations and you'll discover a 10^-100 difference has NO relevant effect on 10^100 distance. – paxdiablo Nov 29 '08 at 5:10
Unless you know more about physics than I do, which is a possiblity, I guess. In which case, feel free to educate me. – paxdiablo Nov 29 '08 at 5:10
Even with decimal arithmetic, you can still hold very large and very small numbers with limited precision: just use scientific notation. For example, the REXX programming language uses decimal floating-point, in which the number 250 trillion can be represented as 2.5E14, and its reciprocal as 4E-15. Also, exact decimal arithmetic is very relevant to the real world. If I buy, say, a $24.95 gift card so I can buy an item online for $24.95, I will be disappointed if the transaction does not go through on account of me being 1/200000000 of a cent short. – Robert L Sep 11 at 8:04
vote up 2 vote down

I am beginning to delve into Lisp. It seems that lisp may have a type called RATIO so that fractions can be expressed. Here are some examples...

* (/ 1 10)

1/10
* (/ 1 3)

1/3
* (describe 1/10)

1/10 is a RATIO.
* (describe 1/3)

1/3 is a RATIO.
* (* 1/3 3)

1
*

When I multiply one third times three, I get one as expected.

link|flag
vote up 5 vote down

There is such misunderstanding about this. Binary Floats are NOT less accurate than any other representation. The difference is not the level of accuracy, but simply in which numbers can be represented exactly. Binary floats can represent floating point numbers which are powers of 2 (in both mantissaa and exponent) exactly, where decimal floats can represent decimal numbers exactly.

No representation scheme in a computer can give perfect accuracy for every possible real number. Each numeric representation scheme includes a (different) set of real numbers that it can represent exactly. For each scheme, all other numbers must be rounded - to the nearest one it CAN represent.

A Binary float can represent 1.001110101001 x 2^-101221 exactly, a decimal float cannot. whilst a decimal float can represent 3.65233543 x 10^-1231 exactly and a binary float cannot. Decimal floats have the SAME rounding errors when attempting to represent a number that is not in THEIR inventory (like 1/32, or 7/64, which a binary float can represent with no rounding error)

What these numbers are for, in either case, is for when you are "measuring" continuously variable things, like height, weight, distance, time intervals, density, pressure, frequencies, etc., etc. and not "counting" things... It is only when counting things that "exact" accuracy is necessary.. When measuring things, it is meaningless to expect two values to be exactly equal to each other.. (How can one person's weight be EXACTLY equal to anothers? or one time interval be exactly equal to another? When you are counting, (including counting money, where we count pennies by using 2-place decimal values) you need to be able t ocompare values exactly, then you need to use integer or decimals.. When you are measuring things, otoh, use regular IEEE binary floating point numbers...

link|flag
vote up 0 vote down

Why do floats continue to be so prolific, even though they can't represent the real answer, and we expect computers to be accurate?

Due to some equations that arise from real-world problems do not have integer solutions, e.g.:

2*x = 1

Or

x*x = 2

Or

x*x = -1

Or

ei*x = -1

Therefore there is no finite representation (whether fixed-point or floating-point) that could represent x in all such cases precisely. In other words computers just can't be always completely accurate.

Thus we have to resort to approximations and a floating point representation is a superior than a fixed point one in that context as many answers have explained already.

link|flag
How do you represent the solution to X*X = -1 in a float ? (grin) – Charles Bretana Nov 29 '08 at 4:20
@CharlesB, @JF didn't say it was a float, just that it wasn't an integer; however I've yet to see native language support for imaginary numbers (although plenty of classes for it). – paxdiablo Nov 29 '08 at 10:24
@Pax: I think both gcc (as an extension) and C99 have a native complex data type. – CesarB Nov 29 '08 at 14:35
vote up 0 vote down

Floating point is either much slower than integer or consumes many more gates than an integer alu. IEEE-754 in particular. Some processors today are willing to consume the gates so that the alu and the fpu perform the operation in a single cycle. Some even let the fpu computer faster than the alu. Do not mistake this as an assumption that fpu is fast or cheap (relative to fixed point). Floating point is very expensive.

Both fixed and floating point have problems in computers, programmers are particularly lazy and floating point saves you more often than fixed point, so naturally programmers are going to use it and move on with their lives.

link|flag
vote up 2 vote down

Short form of my answer:

  1. It hasn't always been so
  2. C-implemented languages have made the decimal number common in mainframe languages an extra load.
  3. Users of those language have carried over that idea as advisories to their code.

The C-language hypothesis: So many language implementations have C underlying them. C is a stripped-down language. And really was the choice when client-server was coming along, in the early 80s. Perl, Ruby, Python, and Java are all built with C-innards.

When Java was an all-object language, they introduced primitives to speed up the VM, and they pretty much left it to C primitives. Before this, there is little reason to believe that Java's BigDecimals would be seen as that much more expensive than creating an Integer. Java's travails have resulted in software policies against Object creation in some instances, and just a awareness in programmers of the cost of non-primitives.

Thus for the C/Java family of languages, economy has been more important than correctness. On the other side, decimals abound in the mainframe world! You'll find that mainframe languages, like COBOL and PL/1, offer defined-width numeric fields as part of the language. When you declare a number in COBOL, you have to add an extra flag to make sure it's computational and not numeric. Floating-point numbers are typically only invoked for engineering applications. I believe though that these complex implementations represent what C is "stripped down" from.

This is not to say that C-implemented-languages don't have decimal types. In Perl, they are additional packages to use. Ruby follows suit. Python has a Bignum. Java has java.lang.BigDecimal. But all of them are arbitrary precision, that compute fixed precision numbers correctly. But I wonder at what expense to the optimal implementation of fixed-width numbers.

Computing digit-by-digit is more expensive in COBOL as well, which is why software policies were introduced to use COMP-3, where possible some places.

link|flag
I agree, I would just like to add that the distinction goes back to hardware, not just languages. Mainframe processors (since System/360) have support for decimal operations in hardware, while other processors (x86 on desktops etc.) have not. – J S Dec 1 '08 at 18:41
Well, I think that's the drawback of portable code--and thus why C chose not to carry the baggage everywhere. I would put that down to C's "stripped down" value, again. So C created a lowest common denominator approach, IMO. – Axeman Dec 2 '08 at 22:20
vote up 0 vote down

http://en.wikipedia.org/wiki/Floating_point#Accuracy_problems

a way for equality test on floats from that article:

if (abs(x-y) < epsilon) ...

I think epsilon should be at least less than the minimum difference between your inputs.

also note to the reminder: ...where epsilon is sufficiently small and tailored to the application, such as 1.0E-13 - see machine epsilon). The wisdom of doing this varies greatly. It is often better to organize the code in such a way that such tests are unnecessary.

link|flag
vote up 1 vote down

Interestingly enough, binary is really the most efficient base to store floating point values in. Benford's Law suggests that lower bases (base 2 for example) in a floating point system are more accurate on average than higher bases (base 10 or 16).

link|flag
vote up 0 vote down

Just use ASCII arithmetic. As long as you have infinite RAM and time you'll get your answer...

link|flag
vote up 1 vote down

however, I can think of only a few cases that they actually the right data type would be using. If you sat back and think about every time you used a floating point value, how many times did you say, well, some error would be ok, as long as the result was a few microseconds faster.

Apart from the fact that precise representation of all numbers is impossible: limited-precision floating point numbers are used as the best tool all the time in natural science and engineering calculations (mainly the numerical solving of differential equations). Using integers is actually a rare exception in these fields.

Your view stems from the overwhelming primacy of discrete mathematics and discrete entities in computer science (cryptography, combinatorics) and in the kind of systems most developers build (i.e. work flow, accounting and inventory apps of one kind or another).

But that is a later development. Computers used to be primarily intended for engineering calculations. If you look at the original von Neumann papers that the architecture of all today's computers is based on, you'll see that one of the first things they discuss (and which influence the whole architecture) is how many digits of precision are needed for differential equations. He concludes that 27 binary digits are necessary - round that up to the nearest power of two and you get today's ubiquitous 32 bit float.

Basically, the better support for limited-precision floating point types over the kind of arbitrary-precision decimal floats that are more useful for the kind of applications most developers work on today is a historical holdover from the times when it was not so.

Another field where speed matters far more than limited precision are 3D games, by the way. Of course, these are at heart simulations and thus somewhat related to scientific computing.

It really makes me think because Jeff was talking about NP completeness, and how heuristics give an answer that is kind of right. And well, computers shouldn't do that. They should give you the answer that is correct.

You'd rather wait a billion years for a perfect answer than get one that's guaranteed to be within 5% of the optimum in under a second? The world doesn't care what people think it "should" be like.

link|flag
vote up 0 vote down

Fixed Decimal has been an alternative to floating point numbers for years. It's essentially an integer with some number of decimal digits to the right of the decimal point. It used to be popular with Cobol and PL/I for financial calculations because there is no roundoff or truncation error. Double precision floating point operations are now precise enough for financial applications, and hardware floating point operations have made the speed more than acceptable.

That said, there are still cases with floating point operations where you need to beware of roundoff and truncation errors.

link|flag

Your Answer

Get an OpenID
or

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