Binary point
From Wikipedia, the free encyclopedia
It has been suggested that this article or section be merged into Radix point. (Discuss) |
This article does not cite any references or sources. (October 2007) Please help improve this article by adding citations to reliable sources. Unverifiable material may be challenged and removed. |
The binary point is the binary equivalent of the decimal point. It is used in textual representations of binary numbers to designate the transisition from integer digit locations (where values represent non-negative powers of 2) to fractional digit locations (where values represent negative powers of 2).
Example: The binary number 1101.101 has the following digits:
power of 2: 3 2 1 0 -1 -2 -3 binary digit: 1 1 0 1 . 1 0 1
And has a decimal value of:
= 1*2^3 + 1*2^2 + 0*2^1 + 1*2^0 + 1*2^-1 + 0*2^-2 + 1*2^-3 = 1*8 + 1*4 + 0*2 + 1*1 + 1*0.5 + 0*0.25 + 1*0.125 = 8 + 4 + 0 + 1 + 0.5 + 0 + 0.125 = 13.625