Floating point numbers are stored in scientific notation using base 2 not base 10.
There are a limited number of bits so they are stored to a certain number of significant binary figures.
There are various number of bytes (bits) used to store the numbers - the bits being split between the mantissa (the number) and the exponent (the power of 10 (being in the base of the storage - in binary, 10 equals 2 in decimal) by which the mantissa is multiplied to get the binary/decimal point back to where it should be), examples:
The numbers are stored normalised:
In decimal numbers the digit before the decimal point is non-zero, ie one of {1, 2, ..., 9}.
In binary numbers, the only non-zero digit is 1, so *every* floating point number in binary (except 0) has a 1 before the binary point; thus the initial 1 (before the binary point) is not stored (it is implicit).
The exponent is stored by adding an offset of 2^(bits of exponent - 1), eg with 8 bit exponents it is stored by adding 2^7 = 1000 0000
Zero is stored by having an exponent of zero (and mantissa of zero).
Example 10 (decimal):
10 (decimal) = 1010 in binary → 1.010 × 10^11 (all digits binary) which is stored in single precision as:
sign = 0
exponent = 1000 0000 + 0000 0011 = 1000 00011
mantissa = 010 0000 0000 0000 0000 0000 (the 1 before the binary point is explicit).
Example -0.75 (decimal):
-0.75 decimal = -0.11 in binary (0.75 = ½ + ¼) → 1.1 × 10^-1 (all digits binary) → single precision:
sign = 1
exponent = 1000 0000 + (-0000 0001) = 0111 1111
mantissa = 100 0000 0000 0000 0000 0000
Note 0.1 in decimal is a recurring binary fraction 0.1 (decimal) = 0.0001100110011... in binary which is one reason floating point numbers have rounding issues when dealing with decimal fractions.
It is the use of scientific notation.
1.230 X 10^3
You can use websites like Wolfram Alpha, Scientific Calculator, or OnlineConversion to look up scientific notation. Simply enter the number in scientific notation and these websites will provide you with the equivalent decimal representation or vice versa.
Scientific notation produces convenient numbers when working with very small or very large quantities.
1.024 x 102On calculators and computers, this is usually represented as: 1.024E2
The correct scientific notation representation for 0.000214 is: 2.14 x 10-4
It is the use of scientific notation.
A value of float or floating point type represents a real number coded in a form of scientific notation. Depending on the computer it may be a binary coded form of scientific notation or a binary coded decimal (BCD) form of scientific notation, there are a nearly infinite number of ways of coding floating point but most computers today have standardized on the IEEE floating point specifications (e.g. IEEE 754, IEEE 854, ISO/IEC/IEEE 60559).
1.230 X 10^3
Computers need a method to store decimals. More to the point, they need a method to manage very large and very small numbers - numbers that we would normally show in scientific notation.
You can use websites like Wolfram Alpha, Scientific Calculator, or OnlineConversion to look up scientific notation. Simply enter the number in scientific notation and these websites will provide you with the equivalent decimal representation or vice versa.
Representation of very large or very small numbers or quantities in a straightforward way.
Think of the floating-point number as a number in scientific notation, for example, 5.3 x 106 (i.e., 5.3 millions). In this example, 5.3 is the mantissa, whereas 6 is the exponent. The situation is slightly more complicated, in that floating-point numbers used in computers are stored internally in binary. Some precision can be lost when converting between decimal and binary.Think of the floating-point number as a number in scientific notation, for example, 5.3 x 106 (i.e., 5.3 millions). In this example, 5.3 is the mantissa, whereas 6 is the exponent. The situation is slightly more complicated, in that floating-point numbers used in computers are stored internally in binary. Some precision can be lost when converting between decimal and binary.Think of the floating-point number as a number in scientific notation, for example, 5.3 x 106 (i.e., 5.3 millions). In this example, 5.3 is the mantissa, whereas 6 is the exponent. The situation is slightly more complicated, in that floating-point numbers used in computers are stored internally in binary. Some precision can be lost when converting between decimal and binary.Think of the floating-point number as a number in scientific notation, for example, 5.3 x 106 (i.e., 5.3 millions). In this example, 5.3 is the mantissa, whereas 6 is the exponent. The situation is slightly more complicated, in that floating-point numbers used in computers are stored internally in binary. Some precision can be lost when converting between decimal and binary.
Scientific notation produces convenient numbers when working with very small or very large quantities.
Scientific notation (i.e floating point) is used to represent the wide range of numbers that occur in the analysis of the fluid dynamics equations needed to design wings.
1.024 x 102On calculators and computers, this is usually represented as: 1.024E2
Scientific notation doesn't stop at a centillion. 1 centillion in scientific notation is 1 * 10303, but you can also write 1 * 10304 or even 9 * 109999999 in scientific notation. There is no upper limit to the numbers you can write in scientific notation.