HOME

TheInfoList



OR:

In
probability theory Probability theory is the branch of mathematics concerned with probability. Although there are several different probability interpretations, probability theory treats the concept in a rigorous mathematical manner by expressing it through a set o ...
and
computer science Computer science is the study of computation, automation, and information. Computer science spans theoretical disciplines (such as algorithms, theory of computation, information theory, and automation) to practical disciplines (includin ...
, a log probability is simply a
logarithm In mathematics, the logarithm is the inverse function to exponentiation. That means the logarithm of a number  to the base  is the exponent to which must be raised, to produce . For example, since , the ''logarithm base'' 10 of ...
of a
probability Probability is the branch of mathematics concerning numerical descriptions of how likely an Event (probability theory), event is to occur, or how likely it is that a proposition is true. The probability of an event is a number between 0 and ...
. The use of log probabilities means representing probabilities on a logarithmic scale, instead of the standard , 1/math>
unit interval In mathematics, the unit interval is the closed interval , that is, the set of all real numbers that are greater than or equal to 0 and less than or equal to 1. It is often denoted ' (capital letter ). In addition to its role in real analys ...
. Since the probabilities of
independent Independent or Independents may refer to: Arts, entertainment, and media Artist groups * Independents (artist group), a group of modernist painters based in the New Hope, Pennsylvania, area of the United States during the early 1930s * Independe ...
events multiply, and logarithms convert multiplication to addition, log probabilities of independent events add. Log probabilities are thus practical for computations, and have an intuitive interpretation in terms of
information theory Information theory is the scientific study of the quantification, storage, and communication of information. The field was originally established by the works of Harry Nyquist and Ralph Hartley, in the 1920s, and Claude Shannon in the 1940s. ...
: the negative of the average log probability is the information entropy of an event. Similarly,
likelihood The likelihood function (often simply called the likelihood) represents the probability of random variable realizations conditional on particular values of the statistical parameters. Thus, when evaluated on a given sample, the likelihood funct ...
s are often transformed to the log scale, and the corresponding log-likelihood can be interpreted as the degree to which an event supports a
statistical model A statistical model is a mathematical model that embodies a set of statistical assumptions concerning the generation of sample data (and similar data from a larger population). A statistical model represents, often in considerably idealized form, ...
. The log probability is widely used in implementations of computations with probability, and is studied as a concept in its own right in some applications of information theory, such as
natural language processing Natural language processing (NLP) is an interdisciplinary subfield of linguistics, computer science, and artificial intelligence concerned with the interactions between computers and human language, in particular how to program computers to proc ...
.


Motivation

Representing probabilities in this way has several practical advantages: # Speed. Since multiplication is more
expensive In production, research, retail, and accounting, a cost is the value of money that has been used up to produce something or deliver a service, and hence is not available for use anymore. In business, the cost may be one of acquisition, in which ...
than addition, taking the product of a high number of probabilities is often faster if they are represented in log form. (The conversion to log form is expensive, but is only incurred once.) Multiplication arises from calculating the probability that multiple independent events occur: the probability that all independent events of interest occur is the product of all these events' probabilities. # Accuracy. The use of log probabilities improves numerical stability, when the probabilities are very small, because of the way in which computers approximate real numbers. # Simplicity. Many probability distributions have an exponential form. Taking the log of these distributions eliminates the exponential function, unwrapping the exponent. For example, the log probability of the normal distribution's
probability density function In probability theory, a probability density function (PDF), or density of a continuous random variable, is a function whose value at any given sample (or point) in the sample space (the set of possible values taken by the random variable) c ...
is -((x-m_x)/\sigma_m)^2+C instead of C_2 \exp\left(-((x-m_x)/\sigma_m)^2\right). Log probabilities make some mathematical manipulations easier to perform.


Representation issues

The logarithm function is not defined for zero, so log probabilities can only represent non-zero probabilities. Since the logarithm of a number in (0, 1) interval is negative, often the negative log probabilities are used. In that case the log probabilities in the following formulas would be inverted. Any base can be selected for the logarithm. : x' = \log(x) \in \mathbb : y' = \log(y) \in \mathbb


Basic manipulations

The product of probabilities x \cdot y corresponds to addition in logarithmic space. : \log(x \cdot y) = \log(x) + \log(y) = x' + y' . The sum of probabilities x + y is a bit more involved to compute in logarithmic space, requiring the computation of one exponent and one logarithm. However, in many applications a multiplication of probabilities (giving the probability of all independent events occurring) is used more often than their addition (giving the probability of at least one of them occurring). Additionally, the cost of computing the addition can be avoided in some situations by simply using the highest probability as an approximation. Since probabilities are non-negative this gives a lower bound. This approximation is used in reverse to get a continuous approximation of the max function.


Addition in log space

: \begin &\log(x + y) \\ = & \log(x + x \cdot y / x) \\ = & \log(x + x \cdot \exp(\log(y / x))) \\ = & \log(x \cdot (1 + \exp(\log(y) - \log(x)))) \\ = & \log(x) + \log(1 + \exp(\log(y) - \log(x))) \\ = & x' + \log\left(1 + \exp\left(y' - x'\right)\right) \end The formula above is more accurate than \log\left(e^ + e^\right), provided one takes advantage of the asymmetry in the addition formula. {x'} should be the larger (least negative) of the two operands. This also produces the correct behavior if one of the operands is
floating-point In computing, floating-point arithmetic (FP) is arithmetic that represents real numbers approximately, using an integer with a fixed precision, called the significand, scaled by an integer exponent of a fixed base. For example, 12.345 can be ...
negative infinity In mathematics, the affinely extended real number system is obtained from the real number system \R by adding two infinity elements: +\infty and -\infty, where the infinities are treated as actual numbers. It is useful in describing the algebra on ...
, which corresponds to a probability of zero. : -\infty + \log\left(1 + \exp\left(y' - (-\infty)\right)\right) = -\infty + \infty This quantity is
indeterminate Indeterminate may refer to: In mathematics * Indeterminate (variable), a symbol that is treated as a variable * Indeterminate system, a system of simultaneous equations that has more than one solution * Indeterminate equation, an equation that ha ...
, and will result in NaN. : x' + \log\left(1 + \exp\left(-\infty - x'\right)\right) = x' + 0 This is the desired answer. The above formula alone will incorrectly produce an indeterminate result in the case where both arguments are -\infty . This should be checked for separately to return -\infty . For numerical reasons, one should use a function that computes \log(1+x) ( log1p) directly.


See also

* Information content * Log-likelihood
Probability Probability is the branch of mathematics concerning numerical descriptions of how likely an Event (probability theory), event is to occur, or how likely it is that a proposition is true. The probability of an event is a number between 0 and ...
Mathematics of computing