How does one convert a decimal float to binary using the multiply by 2 method?

Click For Summary
SUMMARY

The discussion focuses on converting a decimal float to binary using the multiply by 2 method, specifically addressing the representation of the decimal number 0.1 in binary floating-point format. The author explains that 0.1 cannot be represented exactly in binary, resulting in an approximate representation of 1.1001100110011001100 × 2^-4. The conversion process involves multiplying the fractional part by 2 and determining the binary digits based on whether the result exceeds 1. The final representation is confirmed through both manual calculation and an online binary converter.

PREREQUISITES
  • Understanding of floating-point representation
  • Familiarity with binary and decimal number systems
  • Knowledge of the multiply by 2 method for converting fractions
  • Basic concepts of normalized binary scientific notation
NEXT STEPS
  • Learn the details of IEEE 754 floating-point representation
  • Study the process of converting decimal fractions to binary using the multiply by 2 method
  • Explore the implications of floating-point precision and rounding errors
  • Investigate tools for binary conversion, such as the floating-point converter at exploringbinary.com
USEFUL FOR

Students and professionals in computer science, software developers working with numerical analysis, and anyone interested in understanding floating-point arithmetic and binary conversions.

CGandC
Messages
326
Reaction score
34
I've started reading A concise introduction to numerical analysis, A.C. Foul and on the first page there's the following paragraph about how a floating point in fixed point precision can be represented:

We live in a continuous world with infinitely many real numbers. However, a computer has only a finite number of bits. This requires an approximate representation. In the past, several different representations of real numbers have been suggested, but now the most widely used by far is the floating point representation. Each floating point representations has a base ##\beta## (which is always assumed to be even) which is typically 2 (binary), 8 (octal), 10 (decimal), or 16 (hexadecimal), and a precision ##p## which is the number of digits (of base ##\beta## ) held in a floating point number. For example, if ##\beta=10## and ##p=5##, the number 0.1 is represented as ##1.0000 \times 10^{-1}##. On the other hand, if ##\beta=2## and ##p=20##, the decimal number 0.1 cannot be represented exactly but is approximately ##1.1001100110011001100 \times 2^{-4}##. We can write the representation as ##\pm d_0 . d_1 \cdots d_{p-1} \times \beta^e##, where ##d_0 . d_1 \cdots d_{p-1}## is called the significand (or mantissa) and has ##p## digits and ##e## is the exponent. If the leading digit ##d_0## is non-zero, the number is said to be normalized. More precisely ##\pm d_0 . d_1 \cdots d_{p-1} \times \beta^e## is the number
##
\pm\left(d_0+d_1 \beta^{-1}+d_2 \beta^{-2}+\cdots+d_{p-1} \beta^{-(p-1)}\right) \beta^\epsilon, 0 \leq d_i<\beta
##

I don't understand the example where it says " ##\beta=2## and ##p=20##, the decimal number 0.1 cannot be represented exactly but is approximately ##1.1001100110011001100 \times 2^{-4}## " . How did the author arrive to ##1.1001100110011001100 \times 2^{-4}##?

I've tried arriving to the result using a method ( I don't know how it's called, I've met in on the internet so I have no idea about its correctness ) in which one keeps multiplying the number after the decimal point by 2 and if it goes past 1.0 then we add 1 to the output, else we add 0 to the output. Also, using a decimal float to binary converter on the web such as on the site https://www.exploringbinary.com/floating-point-converter/ , doesn't give me the author's result.
 
  • Like
Likes   Reactions: pbuk
Computer science news on Phys.org
Well if I take the binary float of the mantissa above and convert it to decimal, I get 1.5999999, which when divide by 16 give 0.1 to 6 digits. So the answer in the book is correct. One way to look at it is that in floating point you want the binary mantissa to be 1.something. So what power of 2 do you need to multiply 0.1 by to give a binary mantissa that is 1.something?
0.4 = 0.0110011...
0.8 = 0.110011...
1.6 = 1.100110011...
3.2 = 11.00110011...

So this fixes the binary exponent as -4. Then you convert 1.6 to binary and you get the result above.
 
  • Like
Likes   Reactions: CGandC
Also, on the conversion site you linked, if you convert the decimal 0.1 to Normalized binary scientific notation, you get the result in the book.
 
Understood, thanks!. I missed the result at the site, sorry, my bad.
 
Note that the binary expansion of 0.1 can be obtained as \begin{split}<br /> \frac{1}{10} &amp;= \frac{3}{30} \\<br /> &amp;= \frac12 \cdot \frac{3}{15} \\<br /> &amp;= \frac12 \cdot \frac{3}{16} \cdot \frac{16}{15} \\<br /> &amp;= \frac{3}{32} \left(1 + \frac{1}{16} + \frac{1}{16^2} + \dots \right) \\<br /> &amp;= 2^{-5} \times (11.0011001100110011\dots)_2 \\<br /> &amp;= (1.100110011001100\dots)_2 \times 2^{-4}. \end{split} The basis of the technique is to ensure that the denominator is either 2^n, in which case the expansion terminates, or else has a factor of 2^n - 1 in which case the expansion eventually repeats, using <br /> \frac{1}{2^n - 1} = 2^{-n} \frac{1}{1 - 2^{-n}} = 2^{-n}(1 + 2^{-n} + 2^{-2n} + \dots).
 
  • Like
Likes   Reactions: phyzguy and CGandC

Similar threads

  • · Replies 4 ·
Replies
4
Views
2K
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 1 ·
Replies
1
Views
4K
Replies
2
Views
2K
  • · Replies 10 ·
Replies
10
Views
5K
Replies
6
Views
10K
Replies
6
Views
5K
  • · Replies 4 ·
Replies
4
Views
8K
  • · Replies 3 ·
Replies
3
Views
2K
  • · Replies 3 ·
Replies
3
Views
5K