In decimal (base 10), 1/3 can only be approximated to 0.33333 repeating.
What number is the equivalent in binary that can only be represented as an approximation?
|
|
In decimal (base 10), What number is the equivalent in binary that can only be represented as an approximation? |
|||
|
|
0.1 is one such example, as well as 0.2 This question is also similar to this other SO question, which already has very good answers. |
||||||||||||||||
|
|
|
I am assuming that you mean to ask which rational numbers can be expressed in binary using a finite representation. I am deducing this from your example of 1/3 in decimal. The fact is that every rational number can be expressed in binary if you allow infinite representations. But this question is only interesting from a computer science perspective if you only permit finite representations. I am further assuming that you are not asking about specific computer representations (say, IEEE 754) but rather merely asking about general positional representations. A rational number In particular, a rational number |
|||
|
|
|
|
The numbers that can be exactly represented in base 2 are the dyadic rationals. These are numbers that can be written in the form k/2^n for some integer k and whole number n. Any number that cannot be written in that form will have a non-terminating representation in base 2. However, you seem to be asking not about what numbers are representable in base 2, but rather what numbers are representable in some fixed floating-point type, such as |
||
|
|
|
|
It's every number that can't be expressed as k/2^n for integer k and whole number n. The easy way to find all these numbers is to write down some prime numbers that do not include 2. 3, 5, 7, 11, 13, 17 and 19 are good examples of prime numbers that don't include 2. Start multiplying. 1/3, 2/3, 1/5, 2/5, 3/5, 4/5, 1/6, 5/6, 1/7, 2/7, etc. if you do this -- and you avoid numbers of the form k/2^n -- you'll enumerate every possible fraction that cannot be exactly represented in binary. You should probably stop enumerating when you get to numbers for which the left-most 64-bits are all identical. |
|||
|
|
|
|
The same set of numbers that can't be exactly represented by base 10 can't exactly be represented by base 2. There shouldn't be a difference there. |
||||||||
|
|
|
A better question is to ask what numbers can be represented exactly in binary. Everything else can only be approximated or not represented at all. See What every computer scientist should know about floating point arithmetic. |
||
|
|
|
binary(.00011001100110011...) == decimal(.1) |
||
|
|
|
|
In python 2.4:
That indicates that base 2 has a hard time representing it exactly. |
||
|
|
|
|
Well, there are infinite numbers that can't be precisely represented in that notation, but here's one: 1/10. |
||||||
|
|
|
I'm going to take a stab at infinity |
||||||||||||
|
k/2^nfor integerkand whole numbern. – Welbog Nov 4 at 15:23