vote up 0 vote down star

Possible Duplicate:
Why can’t decimal numbers be represented exactly in binary?

I am told that the floating point representation of 1/10 may be different from that of 0.1 ... can someone explain this to me.

How many bits do I need to represent 0.1?

How many bits do I need to represent 1/10?

xf

flag
2  
en.wikipedia.org/wiki/Floating_point – ChaosPandion Nov 7 at 4:51
1  
there are many questions on this topic on SO already... – Mitch Wheat Nov 7 at 4:51
search SO for precision or representation – Mitch Wheat Nov 7 at 4:52

closed as exact duplicate by Mitch Wheat, Jay Riggs, Jonathan Leffler, Michael Petrotta, ChssPly76 Nov 7 at 7:12

6 Answers

vote up 5 vote down

You need an infinite number of bits to exactly represent 0.1. In decimal, the first digit after the decimal is the tenths place. In binary, its the halveth (sp?) place. And then quarterth, eighth, sixtenth, etc. So to represent 0.1, you need to do 1/16 + 1/32 + ... whatever. Since you only have a finite number of bits, and none of these fractions will exactly add up to 0.1, you can't represent it exactly.

Asking how many bits you need to represent 1/10 doesn't really make sense. What data type are you using? Like Bob said, that'll evaluate to 0 in most languages (integer division), or if you're using floats, it's the same as what I just wrote above. If you keep it as a fraction, however, I suppose it would be equivalent to two integers (= 16 bits, usually).

link|flag
vote up 2 vote down

Binary fractions can only combine 1/2, 1/4, 1/8, ... (or 0.5, 0.25, 0.125, ...) and 1/10 or 0.1 requires 1/2 of 1/5, and there is no way to represent 1/5 as an exact sum of binary fractions (any more than there's an easy way to represent 1/3 as an exact decimal fraction). There is an infinite and recurring fraction that will do the job, but no finite representation.

So, you cannot represent 0.1 exactly in binary; you would need an infinite number of bits.

To represent 1/10, you could use as few as 5 bits; 1 bit to represent the numerator and 4 to represent the denominator. More likely, you'd use a multiple of 8 bits for each. This assumes you use a 'rational number', a ratio of two integers.

link|flag
vote up 1 vote down

Please see: Why can’t decimal numbers be represented exactly in binary? (one of many...)

link|flag
vote up 0 vote down

1/10 will be 0.

IEEE 754 representation of 0.1 (10 base) will be 1.5999999*2^(-4) = 0.099999999375(10 base)

For single precision (32bits), you have: 

Bit 31    (Sign Bit      ): 0
Bit 30-23 (Exponent Field): 01111011
Bit 22-0  (Significand   ): 10011001100110011001100

Play around with this IEEE 754 converter.

link|flag
vote up 0 vote down

There are high-level programming languages for specialised mathematical work that are capable of 'arbitrary precision' arithmetic, and of exactly evaluating infinite sums. I'm thinking of Mathematica in particular. It's probably not much use for ordinary programming tasks, but useful if you want to avoid or control roundoff errors in numerical work.

link|flag
vote up -1 vote down

"1/10" means "1 divided by 10", which would be an integer divide since both operands are integers. Hence the expression 1/10 equals zero, at least in many programming languages.

Let's assume you're talking about floating-point 1 / floating-point 10. In which case the result is 0.1, which is the same as your original literal 0.1.

Owing to peculiarities of how floating point division is implemented, however, the two values might not be identical. That is, the assertion

1.0 / 10.0 == 0.1

can be false in certain environments due to rounding errors or the way floating point division was implemented by the developers of the environment.

I don't remember the specific values involved, but early versions of Microsoft Excel suffered from this very problem, allegedly owing to the fact that the team that developed the arithmetic operations (+, -, *, /) was separate from the team that developed relational operations (==, <>, >, <).

link|flag
1  
Uhm.... except that you can't represent 0.1 exactly in floating point. – Mark Nov 7 at 4:53
1  
The issue is a bit more complex than that though. – BobbyShaftoe Nov 7 at 4:54

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