Binary logarithm

From testwiki
Jump to navigation Jump to search

Template:Good article

Graph of Template:Math as a function of a positive real number Template:Mvar

In mathematics, the binary logarithm (Template:Math) is the power to which the number Template:Math must be raised to obtain the value Template:Mvar. That is, for any real number Template:Mvar,

For example, the binary logarithm of Template:Math is Template:Math, the binary logarithm of Template:Math is Template:Math, the binary logarithm of Template:Math is Template:Math, and the binary logarithm of Template:Math is Template:Math.

The binary logarithm is the logarithm to the base Template:Math. The binary logarithm function is the inverse function of the power of two function. As well as Template:Math, alternative notations for the binary logarithm include Template:Math, Template:Math, Template:Math (the notation preferred by ISO 31-11 and ISO 80000-2), and (with a prior statement that the default base is 2) Template:Math.

Historically, the first application of binary logarithms was in music theory, by Leonhard Euler: the binary logarithm of a frequency ratio of two musical tones gives the number of octaves by which the tones differ. Binary logarithms can be used to calculate the length of the representation of a number in the binary numeral system, or the number of bits needed to encode a message in information theory. In computer science, they count the number of steps needed for binary search and related algorithms. Other areas in which the binary logarithm is frequently used include combinatorics, bioinformatics, the design of sports tournaments, and photography.

Binary logarithms are included in the standard C mathematical functions and other mathematical software packages. The integer part of a binary logarithm can be found using the find first set operation on an integer value, or by looking up the exponent of a floating point value. The fractional part of the logarithm can be calculated efficiently.

History

Template:Main

Leonhard Euler was the first to apply binary logarithms to music theory, in 1739.

The powers of two have been known since antiquity; for instance, they appear in Euclid's Elements, Props. IX.32 (on the factorization of powers of two) and IX.36 (half of the Euclid–Euler theorem, on the structure of even perfect numbers). And the binary logarithm of a power of two is just its position in the ordered sequence of powers of two. On this basis, Michael Stifel has been credited with publishing the first known table of binary logarithms in 1544. His book Arithmetica Integra contains several tables that show the integers with their corresponding powers of two. Reversing the rows of these tables allow them to be interpreted as tables of binary logarithms.[1][2]

Earlier than Stifel, the 8th century Jain mathematician Virasena is credited with a precursor to the binary logarithm. Virasena's concept of ardhacheda has been defined as the number of times a given number can be divided evenly by two. This definition gives rise to a function that coincides with the binary logarithm on the powers of two,[3] but it is different for other integers, giving the 2-adic order rather than the logarithm.[4]

The modern form of a binary logarithm, applying to any number (not just powers of two) was considered explicitly by Leonhard Euler in 1739. Euler established the application of binary logarithms to music theory, long before their applications in information theory and computer science became known. As part of his work in this area, Euler published a table of binary logarithms of the integers from 1 to 8, to seven decimal digits of accuracy.[5][6]

Definition and properties

The binary logarithm function may be defined as the inverse function to the power of two function, which is a strictly increasing function over the positive real numbers and therefore has a unique inverse.[7] Alternatively, it may be defined as Template:Math, where Template:Math is the natural logarithm, defined in any of its standard ways. Using the complex logarithm in this definition allows the binary logarithm to be extended to the complex numbers.[8]

As with other logarithms, the binary logarithm obeys the following equations, which can be used to simplify formulas that combine binary logarithms with multiplication or exponentiation:[9]

For more, see list of logarithmic identities.

Notation

In mathematics, the binary logarithm of a number Template:Mvar is often written as Template:Math.[10] However, several other notations for this function have been used or proposed, especially in application areas.

Some authors write the binary logarithm as Template:Math,[11][12] the notation listed in The Chicago Manual of Style.[13] Donald Knuth credits this notation to a suggestion of Edward Reingold,[14] but its use in both information theory and computer science dates to before Reingold was active.[15][16] The binary logarithm has also been written as Template:Math with a prior statement that the default base for the logarithm is Template:Math.[17][18][19] Another notation that is often used for the same function (especially in the German scientific literature) is Template:Math,[20][21][22] from Latin logarithmus dualis[20] or logarithmus dyadis.[20] The Template:Interlanguage link multi, ISO 31-11 and ISO 80000-2 standards recommend yet another notation, Template:Math. According to these standards, Template:Math should not be used for the binary logarithm, as it is instead reserved for the common logarithm Template:Math.[23][24][25]

Applications

Information theory

The number of digits (bits) in the binary representation of a positive integer Template:Mvar is the integral part of Template:Math, i.e.[12]

In information theory, the definition of the amount of self-information and information entropy is often expressed with the binary logarithm, corresponding to making the bit the fundamental unit of information. However, the natural logarithm and the nat are also used in alternative notations for these definitions.[26]

Combinatorics

A 16-player single elimination tournament bracket with the structure of a complete binary tree. The height of the tree (number of rounds of the tournament) is the binary logarithm of the number of players, rounded up to an integer.

Although the natural logarithm is more important than the binary logarithm in many areas of pure mathematics such as number theory and mathematical analysis,[27] the binary logarithm has several applications in combinatorics:

Computational complexity

Binary search in a sorted array, an algorithm whose time complexity involves binary logarithms

The binary logarithm also frequently appears in the analysis of algorithms,[19] not only because of the frequent use of binary number arithmetic in algorithms, but also because binary logarithms occur in the analysis of algorithms based on two-way branching.[14] If a problem initially has Template:Mvar choices for its solution, and each iteration of the algorithm reduces the number of choices by a factor of two, then the number of iterations needed to select a single choice is again the integral part of Template:Math. 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 Template:Math iterations are needed to obtain a solution for a problem of size Template:Math.[34] Similarly, a perfectly balanced binary search tree containing Template:Mvar elements has height Template:Math.[35]

The running time of an algorithm is usually expressed in big O notation, which is used to simplify expressions by omitting their constant factors and lower-order terms. Because logarithms in different bases differ from each other only by a constant factor, algorithms that run in Template:Math time can also be said to run in, say, Template:Math time. The base of the logarithm in expressions such as Template:Math or Template:Math is therefore not important and can be omitted.[11][36] However, for logarithms that appear in the exponent of a time bound, the base of the logarithm cannot be omitted. For example, Template:Math is not the same as Template:Math because the former is equal to Template:Math and the latter to Template:Math.

Algorithms with running time Template:Math are sometimes called linearithmic.[37] Some examples of algorithms with running time Template:Math or Template:Math are:

Binary logarithms also occur in the exponents of the time bounds for some divide and conquer algorithms, such as the Karatsuba algorithm for multiplying Template:Mvar-bit numbers in time Template:Math,[42] and the Strassen algorithm for multiplying Template:Math matrices in time Template:Math.[43] The occurrence of binary logarithms in these running times can be explained by reference to the master theorem for divide-and-conquer recurrences.

Bioinformatics

A microarray for approximately 8700 genes. The expression rates of these genes are compared using binary logarithms.

In bioinformatics, microarrays are used to measure how strongly different genes are expressed in a sample of biological material. Different rates of expression of a gene are often compared by using the binary logarithm of the ratio of expression rates: the log ratio of two expression rates is defined as the binary logarithm of the ratio of the two rates. Binary logarithms allow for a convenient comparison of expression rates: a doubled expression rate can be described by a log ratio of Template:Math, a halved expression rate can be described by a log ratio of Template:Math, and an unchanged expression rate can be described by a log ratio of zero, for instance.[44]

Data points obtained in this way are often visualized as a scatterplot in which one or both of the coordinate axes are binary logarithms of intensity ratios, or in visualizations such as the MA plot and RA plot that rotate and scale these log ratio scatterplots.[45]

Music theory

In music theory, the interval or perceptual difference between two tones is determined by the ratio of their frequencies. Intervals coming from rational number ratios with small numerators and denominators are perceived as particularly euphonious. The simplest and most important of these intervals is the octave, a frequency ratio of Template:Math. The number of octaves by which two tones differ is the binary logarithm of their frequency ratio.[46]

To study tuning systems and other aspects of music theory that require finer distinctions between tones, it is helpful to have a measure of the size of an interval that is finer than an octave and is additive (as logarithms are) rather than multiplicative (as frequency ratios are). That is, if tones Template:Mvar, Template:Mvar, and Template:Mvar form a rising sequence of tones, then the measure of the interval from Template:Mvar to Template:Mvar plus the measure of the interval from Template:Mvar to Template:Mvar should equal the measure of the interval from Template:Mvar to Template:Mvar. Such a measure is given by the cent, which divides the octave into Template:Math equal intervals (Template:Math semitones of Template:Math cents each). Mathematically, given tones with frequencies Template:Math and Template:Math, the number of cents in the interval from Template:Math to Template:Math is[46]

The millioctave is defined in the same way, but with a multiplier of Template:Math instead of Template:Math.[47]

Sports scheduling

In competitive games and sports involving two players or teams in each game or match, the binary logarithm indicates the number of rounds necessary in a single-elimination tournament required to determine a winner. For example, a tournament of Template:Math players requires Template:Math rounds to determine the winner, a tournament of Template:Math teams requires Template:Math rounds, etc. In this case, for Template:Mvar players/teams where Template:Mvar is not a power of 2, Template:Math is rounded up since it is necessary to have at least one round in which not all remaining competitors play. For example, Template:Math is approximately Template:Math, which rounds up to Template:Math, indicating that a tournament of Template:Math teams requires Template:Math rounds (either two teams sit out the first round, or one team sits out the second round). The same number of rounds is also necessary to determine a clear winner in a Swiss-system tournament.[48]

Photography

In photography, exposure values are measured in terms of the binary logarithm of the amount of light reaching the film or sensor, in accordance with the Weber–Fechner law describing a logarithmic response of the human visual system to light. A single stop of exposure is one unit on a base-Template:Math logarithmic scale.[49][50] More precisely, the exposure value of a photograph is defined as

where Template:Mvar is the f-number measuring the aperture of the lens during the exposure, and Template:Mvar is the number of seconds of exposure.[51]

Binary logarithms (expressed as stops) are also used in densitometry, to express the dynamic range of light-sensitive materials or digital sensors.[52]

Calculation

TI SR-50 scientific calculator (1974). The ln and log keys are in the second row; there is no log2Template:Hspkey.

Conversion from other bases

An easy way to calculate Template:Math on calculators that do not have a Template:Math function is to use the natural logarithm (Template:Math) or the common logarithm (Template:Math or Template:Math) functions, which are found on most scientific calculators. The specific change of logarithm base formulae for this are:[50][53]

or approximately

Integer rounding

The binary logarithm can be made into a function from integers and to integers by rounding it up or down. These two forms of integer binary logarithm are related by this formula:

[54]

The definition can be extended by defining . Extended in this way, this function is related to the number of leading zeros of the 32-bit unsigned binary representation of Template:Mvar, Template:Math.

[54]

The integer binary logarithm can be interpreted as the zero-based index of the most significant Template:Math bit in the input. In this sense it is the complement of the find first set operation, which finds the index of the least significant Template:Math bit. Many hardware platforms include support for finding the number of leading zeros, or equivalent operations, which can be used to quickly find the binary logarithm. The fls and flsl functions in the Linux kernel[55] and in some versions of the libc software library also compute the binary logarithm (rounded up to an integer, plus one).

Iterative approximation

For a general positive real number, the binary logarithm may be computed in two parts.[56] First, one computes the integer part, (called the characteristic of the logarithm). This reduces the problem to one where the argument of the logarithm is in a restricted range, the interval [1, 2), simplifying the second step of computing the fractional part (the mantissa of the logarithm). For any Template:Math, there exists a unique integer Template:Mvar such that Template:Math, or equivalently Template:Math. Now the integer part of the logarithm is simply Template:Mvar, and the fractional part is Template:Math.[56] In other words:

For normalized floating-point numbers, the integer part is given by the floating-point exponent,[57] and for integers it can be determined by performing a count leading zeros operation.[58]

The fractional part of the result is Template:Math and can be computed iteratively, using only elementary multiplication and division.[56] The algorithm for computing the fractional part can be described in pseudocode as follows:

  1. Start with a real number Template:Mvar in the half-open interval Template:Math. If Template:Math, then the algorithm is done, and the fractional part is zero.
  2. Otherwise, square Template:Mvar repeatedly until the result Template:Mvar lies in the interval Template:Math. Let Template:Mvar be the number of squarings needed. That is, Template:Math with Template:Mvar chosen such that Template:Mvar is in Template:Math.
  3. Taking the logarithm of both sides and doing some algebra:
  4. Once again Template:Math is a real number in the interval Template:Math. Return to step 1 and compute the binary logarithm of Template:Math using the same method.

The result of this is expressed by the following recursive formulas, in which is the number of squarings required in the i-th iteration of the algorithm:

In the special case where the fractional part in step 1 is found to be zero, this is a finite sequence terminating at some point. Otherwise, it is an infinite series that converges according to the ratio test, since each term is strictly less than the previous one (since every Template:Math). For practical use, this infinite series must be truncated to reach an approximate result. If the series is truncated after the Template:Mvar-th term, then the error in the result is less than Template:Math.[56]

It is possible to square the number repeatedly regardless of whether it reaches interval Template:Math or beyond, and extract the bits of the result from the number anyways. For example, gives solutions . Finding is equivalent to finding , and finding otherwise shows that . Using instead gives , where if Template:Mvar is 0, , when it is 1, , when it is 2, , and when it is 3, .

When looking at these values for from in terms of the result, it can be seen that contains the bits of the result starting from the being the highest bit of Template:Mvar. This works well in IEEE 754 binary64 or binary32 numbers by extracting the base-2 exponent. For binary64, Template:Mvar can be squared 10 times at most (otherwise the result can overflow to infinity), and maximum of 7 times for binary32 (the maximum is the number of exponent bits in the format, minus one, as the exponent needs to be able to store ). After performing the multiplications, the number needs to be reduced back to range Template:Math, which is simply setting the exponent to 0. The same operation can then be performed all over again, and the new bits appended to the result. Using this format, instead of performing 1 multiplication and comparison at a time, up to 10 (or 7) multiplications and then some bit-shifting can be done at a time.

Software library support

The log2 function is included in the standard C mathematical functions. The default version of this function takes double precision arguments but variants of it allow the argument to be single-precision or to be a long double.[59] In MATLAB, the argument to the log2 function is allowed to be a negative number, and in this case the result will be a complex number.[60]

References

Template:Reflist

External links

  1. Template:Citation.
  2. Template:Citation. A copy of the same table with two more entries appears on p. 237, and another copy extended to negative powers appears on p. 249b.
  3. Template:Citation.
  4. See, e.g., Template:Citation.
  5. Template:Citation.
  6. Template:Citation.
  7. Template:Citation.
  8. For instance, Microsoft Excel provides the IMLOG2 function for complex binary logarithms: see Template:Citation.
  9. Template:Citation.
  10. For instance, this is the notation used in the Encyclopedia of Mathematics and The Princeton Companion to Mathematics.
  11. 11.0 11.1 Template:Citation
  12. 12.0 12.1 Template:Citation.
  13. Template:Citation.
  14. 14.0 14.1 Template:Citation, p. 11. The same notation was in the 1973 2nd edition of the same book (p. 23) but without the credit to Reingold.
  15. Template:Citation.
  16. Template:Citation.
  17. Template:Citation.
  18. Template:Citation.
  19. 19.0 19.1 Template:Citation
  20. 20.0 20.1 20.2 Template:Cite book
  21. Template:Cite book
  22. Template:Cite book.
  23. For DIN 1302 see Template:Citation.
  24. For ISO 31-11 see Template:Citation.
  25. For ISO 80000-2 see Template:Citation.
  26. Template:Citation.
  27. Template:Citation.
  28. Template:Citation.
  29. Template:Citation.
  30. Equivalently, a family with Template:Mvar distinct elements has at most Template:Math distinct sets, with equality when it is a power set.
  31. Template:Citation.
  32. Template:Citation.
  33. Template:Citation.
  34. Template:Citation.
  35. Template:Citation.
  36. Template:Citation.
  37. Template:Harvtxt, p. 186.
  38. Cormen et al., p. 156; Goodrich & Tamassia, p. 238.
  39. Cormen et al., p. 276; Goodrich & Tamassia, p. 159.
  40. Cormen et al., pp. 879–880; Goodrich & Tamassia, p. 464.
  41. Template:Citation.
  42. Cormen et al., p. 844; Goodrich & Tamassia, p. 279.
  43. Cormen et al., section 28.2.
  44. Template:Citation.
  45. Template:Citation.
  46. 46.0 46.1 Template:Citation.
  47. Template:Citation.
  48. Template:Citation.
  49. Template:Citation.
  50. 50.0 50.1 Template:Citation.
  51. Template:Harvtxt, p. 235.
  52. Template:Citation.
  53. Template:Citation.
  54. 54.0 54.1 Template:Citation
  55. fls, Linux kernel API, kernel.org, retrieved 2010-10-17.
  56. 56.0 56.1 56.2 56.3 Template:Citation.
  57. Template:Citation.
  58. Template:Citation.
  59. Template:Citation.
  60. Template:Citation.