Question

Difficulty: EasyNumber Bases and Conversions

Convert the fractional binary number 0.110120.1101_2 to its equivalent base 10 (decimal) value. What is the decimal value?

Answer: 0.8125

Answer

The base 10 value of 0.110120.1101_2 is 0.81250.8125.
To convert a fractional binary number to decimal, expand each digit after the radix point using decreasing negative powers of 2 (21,22,23,242^{-1}, 2^{-2}, 2^{-3}, 2^{-4}). Evaluating 1(0.5)+1(0.25)+0(0.125)+1(0.0625)1(0.5) + 1(0.25) + 0(0.125) + 1(0.0625) yields 0.81250.8125.

Step-by-Step Solution

1
Write the given binary fraction in place-value expansion using powers of 2
0.11012=121+122+023+1240.1101_2 = 1 \cdot 2^{-1} + 1 \cdot 2^{-2} + 0 \cdot 2^{-3} + 1 \cdot 2^{-4}
Positions after the binary point represent negative powers of 2 starting from 212^{-1}.
2
Evaluate each fractional component
21=0.52^{-1} = 0.5, 22=0.252^{-2} = 0.25, 23=0.1252^{-3} = 0.125, 24=0.06252^{-4} = 0.0625
Calculating standard decimal values for binary fractional places.
3
Add the non-zero fractional terms together
0.5+0.25+0.0625=0.81250.5 + 0.25 + 0.0625 = 0.8125
Summing the decimal values gives the complete converted decimal representation.

Key Concept

Conversion of fractional numbers from base 2 to base 10
Rate this question