Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles / Languages / C#

What is the Lower Limit of Floating Point?

5.00/5 (2 votes)
13 Jan 2018CPOL2 min read 13.9K  
Microsoft Versus Google: Who is correct?

Microsoft Versus Google: Who is Correct?

Microsoft Floating Point Range in C# Documentation

Microsoft Floating Point Range

Image 1

Google Floating Point Range Returned from its Search

Google Floating Point Range

Image 2

While their higher float point limit tallied, Microsoft and Google are giving different values for lower limit! What is going on? One of them has to be correct! Make a guess before the answer is unveiled!

Answer

Both Microsoft and Google are correct! Google answer is correct from normalized number perspective while Microsoft lower range takes into account subnormal numbers (also known as denormalized numbers).

As you may recollect from your computer science school days, IEEE 754 floating point format consists of 3 components: a sign bit, mantissa and exponent. The actual value is derived from multiplying mantissa by base number raised to power of exponent.

Normal Floating Point

In a normal floating point number, its mantissa always implies a leading binary one on left side of decimal point. Since it is always present, mantissa does not store this leading one.

1.xxxx

Since the left side of decimal point is always one, how do you store, say 0.5?

0.5 can be derived from multiplying 1(mantissa) with 2 raised to power of -1(exponent).
Note: Mantissa and exponent values are stored in base 2, not base 10, so we raise 2 to power of exponent.

1 * 2^(-1) = 0.5

Subnormal Floating Point

In a subnormal floating point number, its mantissa has a leading binary zero on the left side of decimal point.

0.xxxx

But but... didn't I just tell you the left leading one is always there? So how is a subnormal number defined? To give you a definitive answer, we have to go through every nook and cranny of floating point format which is, frankly speaking, too long to fit into this short tip. As promised, the floating-point guide is finally here!

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)