Binary Fraction to Decimal Converter
Convert binary fractions (e.g., 1011.0101) to their decimal equivalents instantly. See how each bit after the radix point maps to negative powers of 2 — with full step-by-step breakdowns.
What is Binary Fraction to Decimal Converter?
The Binary Fraction to Decimal Converter is a specialized tool designed to convert binary numbers that contain a radix point (binary point) into their decimal equivalents. Unlike whole-number binary converters, this tool handles fractional binary values like 101.1101 — numbers that represent values between integers.
This tool exists because fractional binary conversion involves negative powers of 2, which can be tricky to calculate manually. Each digit after the binary point represents 2⁻¹ (0.5), 2⁻² (0.25), 2⁻³ (0.125), and so on. Our converter instantly breaks down these calculations step by step, making it invaluable for students studying computer science, engineers working with fixed-point arithmetic, and anyone dealing with binary precision in programming.
Understanding binary fractions is essential for grasping concepts like floating-point representation (IEEE 754), precision loss in programming languages, and how computers store decimal values internally.
Binary Fraction to Decimal Converter Formula
Toggle the bits past the radix point to see how negative powers of 2 combine to form a decimal fraction.
Why 0.1 Can't Be Exact in Binary
Many common decimal fractions like 0.1, 0.2, and 0.3 produce infinitely repeating patterns in binary — just like 1/3 = 0.333… in decimal.
This is why 0.1 + 0.2 ≠ 0.3 in most programming languages. The tiny rounding error from truncating the repeating binary fraction accumulates.
Enter a decimal fraction below to see its binary representation and whether it terminates or repeats. Common Binary Fractions Table
The fractions that can be represented exactly in binary are sums of negative powers of 2.
| Binary | Decimal | Fraction | Power of 2 |
|---|---|---|---|
| 0.1 | 0.5 | 1/2 | 2⁻¹ |
| 0.01 | 0.25 | 1/4 | 2⁻² |
| 0.001 | 0.125 | 1/8 | 2⁻³ |
| 0.0001 | 0.0625 | 1/16 | 2⁻⁴ |
| 0.00001 | 0.03125 | 1/32 | 2⁻⁵ |
| 0.11 | 0.75 | 3/4 | 2⁻¹ + 2⁻² |
| 0.101 | 0.625 | 5/8 | 2⁻¹ + 2⁻³ |
| 0.111 | 0.875 | 7/8 | 2⁻¹ + 2⁻² + 2⁻³ |
| 0.0011 | 0.1875 | 3/16 | 2⁻³ + 2⁻⁴ |
| 0.1001 | 0.5625 | 9/16 | 2⁻¹ + 2⁻⁴ |
Other Number System Conversions
Related numeral systems converters for number conversion between binary, decimal, hexadecimal, octal, and ASCII text.