vote up 0 vote down star

Possible Duplicate:
How is floating point stored? When does it matter?

How does float numbers represented in a binary string in any programming language or generally?

Because I understand that positive whole numbers are converted to binary by converting base with MSB 0, and negative whole number with a MSB 1.

But how do we represent exact float numbers? They have various decimal places and so on.

Float numbers can be in the form of 0.2222, 3.1428579, 10232312.02312, 5e-6.

And binary string is something like 1001 1101 0010 0101.

Please comment before voting.

flag

What do you mean by exact float numbers? 2.0? What do you mean by a binary string? Can you give some examples to resolve any ambiguity? – James Black Nov 5 at 6:54
@James - sure. will update – thephpdeveloper Nov 5 at 6:55
1  
Duplicate with stackoverflow.com/questions/56947/… how-is-floating-point-stored – mjv Nov 5 at 7:27

closed as exact duplicate by MSalters, starblue, Stephen Canon, ChssPly76, Shog9 Nov 8 at 5:06

2 Answers

vote up 1 vote down check

It is quite a complicated topic that you are delving into. Most languages (including C) hide such details from you for good reason. You will probably want to do a google search or wikipedia search to find more details than what i provide here.

Think of any floating point number as represented by the form

  • +12,232.3
  • (+/-) 12.2323 e 3
  • [sign] [significand-base.decimnal] e [power]

Most floating point numbers can be broken into components:

  • sign (bit indicating positive or negative)
  • significand-base (integer value to the left of the decimal-typically just a binary number eg. 7 == 0b111)
  • sgnificand-decimal (binary decimal notation where each succeeding bit indicates a decreasing power of two)
  • eg 0b1 -> 2^-1 -> 0.5
  • 0b01 -> 2^-2 -> 0.25
  • 0b001 -> 2^-3 -> 0.125

NOTE: It is the decimal portion of the representation that causes the inprecision found in floating part numbers.

  • power (integer value representing the power to raise the radix.decimal - typically a binary number)
link|flag
The prefix "0x" indicates hexadecimal. You probably want "0b". Also, "radix" is the wrong term; it refers to the b in b ** n. With binary floating point, the radix is 2. What you term the "radix" and "decimal" aren't often separate. Usually, they are stored together as the "significand". The components of floating point numbers are combined as: (-1 * sign) * significand * base ** exponent, where "base" is a constant. The internal format may require applying a bias (a constant additive) to the sign, significand or exponent fields. – outis Nov 5 at 7:51
vote up 1 vote down

Hi

IEEE 754 if I remember correctly, try Wikipedia

Mark

link|flag

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