46.04.02 · information-theory / information-statistics

Chernoff Information and the Symmetric Chernoff Bound

shipped3 tiersLean: none

Anchor (Master): Cover & Thomas 2006 Elements of Information Theory 2e (Wiley) §11.1-11.8; Chernoff 1952 A Measure of Asymptotic Efficiency; Lehmann & Romano 2005 Testing Statistical Hypotheses 3e (Springer) §3.3

Intuition Beginner

You have two coins: a fair coin and a slightly biased coin. You flip one of them many times and must decide which coin you have. If the coins are very different, a few flips suffice. If they are similar, you need many flips. The error rate — how fast your mistakes vanish — depends on how distinguishable the coins are.

Stein's lemma (from 46.04.01) gives one answer: if you tolerate a fixed small probability of false alarm, the miss probability decays at rate , the KL divergence from the null to the alternative. But this is asymmetric — it fixes one error and lets the other vanish.

What if you want both errors to vanish at the same rate? Maybe you have no prior belief about which coin is more likely, and you want a balanced test that treats both hypotheses fairly. The best achievable symmetric error rate is given by the Chernoff information, a quantity that sits between zero and both directional KL divergences.

The Chernoff information is smaller than both and because the symmetric constraint is stricter. Think of it as the cost of fairness: requiring both errors to vanish simultaneously forces you to operate at a slower rate than if you could optimise one error at a time.

The formula involves a tilted distribution, a blend of and parameterised by a mixing weight . The optimal finds the "sweet spot" — the distribution that is hardest to distinguish from both and simultaneously. The Chernoff information is the divergence from this hardest intermediate distribution to either endpoint.

Visual Beginner

Quantity Meaning Direction
Stein exponent (fix type I) P-null
Stein exponent (fix type I) Q-null
Chernoff information (symmetric) Both

Figure: A number line showing three points: , , and , with sitting between zero and the smaller of the two divergences. For Bernoulli(0.3) versus Bernoulli(0.7): bits, bits, and bits. An arrow below the line shows that the symmetric exponent is the most conservative.

Worked example Beginner

Let and . We want the Chernoff information , the best achievable rate at which the overall error probability vanishes when both hypotheses have equal prior weight.

The Chernoff information involves a minimisation. For each mixing weight between 0 and 1, compute:

The Chernoff information is .

Let us evaluate at a few points. At : , giving . At : , again 0. The minimum of occurs somewhere in between.

At (by symmetry, the optimal point): . So bits.

Compare with the one-sided exponents. nats bits... wait, let us compute more carefully. nats. nats by the same calculation (the divergences are equal by the symmetry ). The Chernoff information bits is less than bits, as expected — the symmetric constraint costs you.

At observations, the Bayes error with equal priors is roughly , so you make an error about 1.3% of the time.

Check your understanding Beginner

Formal definition Intermediate+

Let and be two probability distributions on a finite alphabet with and .

Definition (Chernoff information). The Chernoff information between and is:

Equivalently, defining :

where .

Definition (Tilted distribution). For , the tilted distribution is:

This is a probability distribution for each , and it interpolates between (at ) and (at ).

Definition (Bayes error). For a test with equal prior weights , the Bayes error is:

The minimum Bayes error over all tests is .

Counterexamples to common slips

  • Chernoff information is not a divergence. Unlike KL divergence, is symmetric: . It does not satisfy the triangle inequality and is not a metric, but it is a measure of distinguishability that treats both distributions equally.

  • , not equal. The symmetric constraint weakens the exponent. Chernoff information equals half the KL divergence only in special cases (when the tilted distribution at is equidistant from and in a specific sense).

  • The minimiser is not always . For symmetric distributions ( and related by swapping), by symmetry. In general, depends on the specific distributions.

Key theorem with proof Intermediate+

Theorem (Chernoff, 1952). For testing versus with equal prior weights, the minimum Bayes error satisfies:

Proof sketch (achievability). The minimum Bayes error is:

For any , the inequality gives:

Since are i.i.d.:

Therefore for any . Minimising over :

This gives the upper bound .

Proof sketch (converse). The minimum Bayes error is achieved by the likelihood-ratio test with threshold equal to the prior odds (which is 1 for equal priors). For any test, the error is bounded below by the contribution from sequences in the "ambiguous region" where . The -probability of this region is approximately by the large-deviations analysis of the tilted distribution . The dominant contribution comes from sequences whose empirical distribution is close to , and these sequences have -probability approximately and -probability approximately . At the optimal , .

Bridge. The Chernoff information builds toward the reliability function of channel coding 46.03.01, where the error exponent for decoding has the same variational structure: a minimisation over a parameter of a moment-generating function. The tilted distribution appears again in large deviations 37.07.05 as the exponential tilting that shifts the measure to the most likely point in the rare-event set. The foundational reason Chernoff information is symmetric is that the Bayes error with equal priors treats both hypotheses identically, and this is exactly the symmetry that forces the exponent to be the same in both directions. The central insight is that the tilted family connects and through a geodesic in the exponential-family geometry, and is the midpoint in the divergence sense. Putting these together, Chernoff information is the natural measure of symmetric distinguishability, the bridge is between the one-sided Stein exponent and the two-sided Bayes exponent, and the gap between them is the cost of symmetry.

Exercises Intermediate+

Lean formalization Intermediate+

Mathlib does not define the Chernoff information functional, the tilted distribution, or the symmetric error exponent theorem. The PMF type for probability mass functions exists, but the functional and its optimisation over are absent. The exponential-family structure of the tilted distribution and the characterisation are unformalised. A Codex.InformationTheory.ChernoffInformation module would need to define the tilted family, prove its continuity and convexity properties, and establish the optimality of as the Bayes error exponent. This unit ships without formalization.

Advanced results Master

The geometric interpretation: e-geodesics and m-geodesics

The tilted family connecting to is an exponential-family geodesic (e-geodesic) in information geometry. The Chernoff information has a dual geometric interpretation: is the point where the e-geodesic from to is tangent (in the divergence sense) to a mixture-family geodesic (m-geodesic) through .

The equality means that is equidistant from and in KL divergence, measured along the e-geodesic. This is the "Pythagorean" point on the geodesic — the point where the projection from either or onto the geodesic lands at the same location.

This geometric structure appears throughout information geometry. The Bregman divergence associated with the log-partition function governs the shape of the geodesic, and the tangent condition at is the first-order optimality condition for the variational problem.

Relation to the Fisher information

For distributions and in a parametric family with small, the Chernoff information has a local expansion:

where is the Fisher information at :

This connects Chernoff information to the Cramer-Rao bound: the Fisher information measures the local curvature of the KL divergence, and the Chernoff information is the local version of the symmetric distinguishability measure. For :

The Chernoff information picks up half of this because it is the symmetric version:

Wait — the earlier calculation for Bernoulli gave and , so . This matches the general formula: the factor is (not ) because of the specific parametrisation. The correct general relation is for one-dimensional families.

Sanov's theorem interpretation

Sanov's theorem 37.07.05 gives the Chernoff information an elegant variational characterisation. The Bayes error is the sum of over all sequences. By the method of types, this sum is dominated by the type class minimising over all distributions .

The Chernoff information is the minimum of this maximum:

The minimiser is the tilted distribution , and the maximum is the same in both directions: . This is a saddle-point characterisation: is the hardest distribution to distinguish from both and , and the Chernoff information is the level of that hardness.

Multi-hypothesis Chernoff information

The Chernoff information extends to multiple hypotheses. For testing among distributions with equal priors, the error exponent is:

This is a minimisation over the -simplex rather than the interval . The tilted distribution becomes . The multi-hypothesis case is harder to compute but has the same structure: the exponent is governed by the hardest intermediate distribution that confuses the most similar pair.

Synthesis. The Chernoff information is the symmetric measure of distinguishability between two distributions: the best achievable rate at which the Bayes error vanishes when both hypotheses have equal prior weight. The central insight is that the tilted distribution at the optimal is equidistant from and in KL divergence, and this is exactly the geometric midpoint on the e-geodesic connecting them. The variational form builds toward the reliability function of channel coding 46.03.01, which has the same minimisation structure. The bridge is between the one-sided Stein exponent and the two-sided Chernoff exponent , and the cost of symmetry is the factor . The Fisher information connection shows that locally (for nearby distributions) the Chernoff information is proportional to the squared parameter distance, generalises to multiple hypotheses via the same variational structure, and putting these together reveals that the Chernoff information is the natural information-geometric measure of how far apart two distributions are when you must treat them symmetrically.

Full proof set Master

Proposition (Divergence to the tilted distribution). For the tilted distribution :

At (the minimiser of ), both divergences equal .

Proof. Direct computation:

The first term gives . Similarly for .

At , the optimality condition gives:

Therefore the first terms vanish in both and , leaving .

Proposition (Chernoff information bounds). The Chernoff information satisfies:

Equality holds if and only if there exists such that at or (i.e., when , giving ).

Proof. The function is concave (since is convex by the Holder argument). Its slope at is:

Similarly, the slope at is . Since starts at 0 with slope , rises, and returns to 0 at with slope , the maximum is bounded above by both and (by concavity, the maximum lies below the tangent lines at the endpoints).

Connections Master

  • 46.04.01 — Stein's lemma gives the one-sided error exponent ; the Chernoff information is the symmetric version .
  • 46.01.02 — KL divergence and mutual information are the building blocks; Chernoff information is a symmetric functional derived from them.
  • 46.03.01 — The channel coding error exponent (Gallager's ) has the same variational structure as Chernoff information.
  • 37.07.05 — Sanov's theorem gives the Chernoff information as a rate function for the Bayes error.
  • 45.07.01 — PAC learning bounds use the Chernoff bound on the deviation of the empirical mean from the true mean.
  • 45.02.01 — The Neyman-Pearson lemma determines the optimal test at finite ; the Chernoff information determines the asymptotic rate.

Historical & philosophical context Master

Herman Chernoff introduced the Chernoff information in his 1952 paper "A Measure of Asymptotic Efficiency for Tests of a Hypothesis Based on the Sum of Observations" (Annals of Mathematical Statistics 23, 493-507). Chernoff was working at the University of Chicago on the problem of sequential analysis, building on Abraham Wald's work from the 1940s. His insight was that the best achievable symmetric error exponent could be expressed as a variational problem: minimise a moment-generating function of the log-likelihood ratio over a mixing parameter .

The result unified several earlier bounds. The Chernoff bound on the tail of a sum of random variables (which appears in probability textbooks as the "Chernoff bound") is a special case: when is concentrated and is a product of i.i.d. distributions, the Chernoff information reduces to the standard large-deviations bound for the sample mean.

The connection to information geometry was developed by Csiszar (1975) and Amari (1985). Csiszar showed that the tilted distribution is the e-projection of the uniform distribution onto the exponential family connecting and . Amari placed this in the differential-geometric framework of dual connections, where the Chernoff information is the squared distance on the statistical manifold in the dual coordinate system.

The multi-hypothesis extension was studied by Nussbaum (1977) and by Blahut (1974) in the context of channel coding. The general case involves a minimisation over the probability simplex, and the resulting exponent is the minimum pairwise Chernoff information in many practical cases.

Bibliography Master

@article{chernoff1952,
  author  = {Chernoff, H.},
  title   = {A Measure of Asymptotic Efficiency for Tests of a Hypothesis Based on the Sum of Observations},
  journal = {Annals of Mathematical Statistics},
  volume  = {23},
  pages   = {493--507},
  year    = {1952},
}
@book{cover-thomas2006,
  author    = {Cover, T. M. and Thomas, J. A.},
  title     = {Elements of Information Theory},
  edition   = {2nd},
  publisher = {Wiley},
  year      = {2006},
}
@book{lehmann-romano2005,
  author    = {Lehmann, E. L. and Romano, J. P.},
  title     = {Testing Statistical Hypotheses},
  edition   = {3rd},
  publisher = {Springer},
  year      = {2005},
}
@article{csiszar1975,
  author  = {Csisz{\'a}r, I.},
  title   = {$I$-Divergence Geometry of Probability Distributions and Minimization Problems},
  journal = {Annals of Probability},
  volume  = {3},
  pages   = {146--158},
  year    = {1975},
}
@book{amari1985,
  author    = {Amari, S.},
  title     = {Differential-Geometrical Methods in Statistics},
  publisher = {Springer},
  year      = {1985},
}