|
In probability theory and information theory, the Kullback-Leibler divergence, or relative entropy, is a quantity which measures the difference between two probability distributions. The term "divergence" is a misnomer;
it is not the same as divergence in calculus. One might be tempted to call it a "distance metric", but this would also be a misnomer as the Kullback-Leibler divergence is not symmetric and does not satisfy the triangle inequality.
The Kullback-Leibler divergence between two probability distributions p and q is defined as
- <math> \mathit{KL}(p,q) = \sum_x p(x) \log \frac{p(x)}{q(x)} <math>
for distributions of a discrete variable, and as
- <math> \mathit{KL}(p,q) = \int_{-\infty}^{\infty} p(x) \log \frac{p(x)}{q(x)} \; dx <math>
for distributions of a continuous variable.
It can be seen from the definition that
- <math> \mathit{KL}(p,q) = -\sum_x p(x) \log q(x) + \sum_x p(x) \log p(x) = H(p,q) - H(p)\, <math>
denoting by H(p,q) the cross-entropy of p and q, and by H(p) the entropy of p. As the cross-entropy is always greater than or equal to the entropy, this shows that the Kullback-Leibler divergence is nonnegative, and furthermore KL(p,q) is zero iff p=q.
In coding theory, the KL divergence can be interpreted as the needed extra message-length per datum for sending messages distributed as <math>q(x)<math>, if the messages are encoded using a code that is optimal for distribution <math>p(x)<math>.
References
- S. Kullback and R. A. Leibler. On information and sufficiency. Annals of Mathematical Statistics 22(1):79–86, March 1951.
|