- Least significant bit
In
computing , the least significant bit (lsb) is thebit position in a binaryinteger giving the units value, that is, determining whether the number is even or odd. The lsb is sometimes referred to as the right-most bit, due to the convention inpositional notation of writing less significant digits further to the right. It is analogous to the least significant digit of adecimal integer, which is the digit in the ones (right-most) position. [http://support.microsoft.com/kb/130861]In referencing specific bits within a binary number, it is common to assign each bit a bit number, ranging from zero upwards to one less than the number of bits in the number. However, the order used for this assignment may be in either direction (see
Endianness ). Both orderings are used (in different contexts), which is why "lsb" is often used to designate the units bit instead of a bit number, which has the potential for confusion.By extension, the least significant bits (plural) are the bits of the number closest to, and including, the lsb.
The least significant bits have the useful property of changing rapidly if the number changes even slightly. For example, if 1 (binary 00000001) is added to 3 (binary 00000011), the result will be 4 (binary 00000100) and three of the least significant bits will change (011 to 100). By contrast, the three most significant bits stay unchanged (000 to 000).
Least significant bits are frequently employed in
pseudorandom number generator s,hash function s andchecksum s.LSB, in all capitals, can also stand for "Least Significant "Byte". The meaning is parallel to the above: it is the
byte (or octet) in that position of a multi-byte number which has the least potential value.Transmission
With
802.3 and802.4 , the least significant bit is transmitted first. [http://books.google.co.uk/books?id=kfNX516h3aQC&pg=PA32&lpg=PA32&dq=least+significant+bit+transmitted&source=web&ots=O0GlnbjVZX&sig=i0kpcld2yA8NUNbXMNIlcw0eMew&hl=en]Computing position of least significant 1 bit of an integer
The following code example for the C language is an algorithm to compute the position of least significant 1 bit of a 64 bit integer. Operator '>>' represents 'unsigned right shift'.
ee also
*
Most significant bit
*Binary numeral system
*Signed number representations
*Two's complement
*Bit numbering
*Endianness
*Binary logarithm
*Unit in the last place
Wikimedia Foundation. 2010.