Search: in
Binary logarithm
Binary logarithm Encyclopedia
  Tutorials     Encyclopedia     Dictionary     Directory  
Binary_logarithm Email this to a friend      Binary_logarithm

Binary logarithm

Plot of log2 x
Plot of log2 x

In mathematics, the binary logarithm (log2 n) is the logarithm for base 2. It is the inverse function of n \mapsto 2^n.

The binary logarithm is often used in computer science and information theory (where it is frequently written lg n, or ld n, from Latin logarithmus dualis [although the ISO specification is that it should be lb (n), lg (n) being reserved for log10 n] ), because it is closely connected to the binary numeral system. The number of digits (bits) in the binary representation of a positive integer n is the integral part of 1 + lg n, i.e.

\lfloor \lg n\rfloor + 1.

In information theory, the definition of the amount of self-information and information entropy involves the binary logarithm; this is needed because the unit of information, the bit, refers to information resulting from an occurrence of one of two equally probable alternatives.

The binary logarithm also frequently appears in the analysis of algorithms. If a number n greater than 1 is divided by 2 repeatedly, the number of iterations needed to get a value at most 1 is again the integral part of lg n. This idea is used in the analysis of several algorithms and data structures. For example, in binary search, the size of the problem to be solved is halved with each iteration, and therefore roughly lg n iterations are needed to obtain a problem of size 1, which is solved easily in constant time. Similarly, a perfectly balanced binary search tree containing n elements has height lg n+1.

However, the running time of an algorithm is usually expressed in big O notation, ignoring constant factors. Since log2 n = (1/logk 2)logk n, where k can be any number greater than 1, algorithms that run in O(log2 n) time can also be said to run in, say, O(log13 n) time. The base of the logarithm in expressions such as O(log n) or O(n log n) is therefore not important. In other contexts, though, the base of the logarithm needs to be specified. For example O(2lg n) is not the same as O(2ln n) because the former is equal to O(n) and the latter to O(n0.6931...).

Algorithms with running time n lg n are sometimes called linearithmic. Some examples of algorithms with running time O(lg n) or O(n lg n) are:

Using calculators

An easy way to calculate the log2(n) on calculators that do not have a log2-function is to use the natural logarithm "ln" or the common logarithm "log" functions, which are found on most "scientific calculators". The formulae for this are:

log2(n) = ln(n)/ln(2) = log(n)/log(2)

so

log2(n) = loge(n)×1.442695... = log10(n)×3.321928...

and this produces the curiosity that log2(n) is within 0.6% of loge(n)+log10(n). loge(n)+log10(n) is actually log2.008135929...(n) where the base is elog10e(10)

Algorithm

Integer

For integer domain and range, the binary logarithm can be computed rounding up, or rounding down. These two forms of integer binary logarithm are related by this formula:

\lfloor \log_2(n) \rfloor = \lceil \log_2(n + 1) \rceil - 1, \mbox{where }n \ge 1. [1]

The following example code in the C language computes the binary logarithm (rounding down) of an integer, rounded down. [2] The operator '>>' represents 'unsigned right shift'. The rounding down form of binary logarithm is identical to computing the position of the most significant 1 bit.

Real number

For a general real number, the binary logarithm may be computed in two parts:

  1. Compute the integer part, \lfloor\lg(x)\rfloor
  2. Compute the fractional part

Computing the integral part is straightforward. For any x > 0, there exists a unique integer n such that 2^n \leq x < 2^{n+1}, or equivalently 1 \leq 2^{-n}x < 2. Now the integral part of the logarithm is simply n, and the fractional part is \lg(2^{-n}x). In other words:

\lg x = n + \lg(y) \quad\text{where } y = 2^{-n}x \text{ and } y \in [1,2)

The fractional part of the result is \lg y, and can be computed recursively, using only elementary multiplication and division. To compute the fractional part:

  1. We start with a real number y \in [1,2).
  2. Now square y repeatedly until the result is \geq 2. Call the result z, and let m be the number of squarings needed.
  3. Now z = y^{2\uparrow m} and so \lg z = 2^m \lg y. Thus:
  4. \lg y = \frac{ \lg z }{ 2^m } = \frac{ 1 + \lg(z/2) }{ 2^m }
  5. \lg y = 2^{-m} + 2^{-m}\lg(z/2)
  6. Notice that z/2 is once again a real number in the interval [1,2).
  7. If z/2 < 1+\epsilon (where \epsilon is the desired precision), then \lg(z/2)\approx 0 and we are done. Otherwise, return to step 1, and compute the binary logarithm of z/2 using the same method recursively.

The result of all of this is:

\lg x = n + 2^{-m_1} \left( 1 + 2^{-m_2} \left( 1 + 2^{-m_3} \left( 1 + \cdots \right)\right)\right)

After computing m_{1\ldots i}, the error in the result is less than 2^{-(m_1+m_2+\ldots+m_i)}.

Example code

The following Python computes the binary logarithm using the recursive method outlined above, showing the steps along the way:[3]

Since Python does not optimize tail recursion, this can be implemented more efficiently with iteration. Here is an iterative version:

References

See also

es:Logaritmo binario pl:Logarytm binarny





Source: Wikipedia | The above article is available under the GNU FDL. | Edit this article



Related Links in Binary logarithm

Search for Binary logarithm in Tutorials
Search for Binary logarithm in Encyclopedia
Search for Binary logarithm in Dictionary
Search for Binary logarithm in Open Directory
Search for Binary logarithm in Store
Search for Binary logarithm in PriceGig



Help build the largest human-edited directory on the web.
Submit a Site - Open Directory Project - Become an Editor

Advertisement

Advertisement



Binary logarithm
Binary_logarithm top Binary_logarithm

Home - Add TutorGig to Your Site - Disclaimer

©2008-2009 TutorGig.com. All Rights Reserved. Privacy Statement