Historical Context & Motivation
The idea of building confidence intervals from the likelihood function rather than from sampling distributions has deep roots in twentieth-century statistical theory. Classical Wald-type intervals, constructed by adding and subtracting a multiple of the standard error from a point estimate, served as the workhorse of interval estimation for decades. However, statisticians gradually recognized that Wald intervals can behave poorly when sample sizes are moderate, when parameters are near boundary values, or when the likelihood surface is markedly asymmetric. These shortcomings motivated a fundamentally different strategy: reading the interval endpoints directly off the likelihood function itself.
The likelihood-based approach treats the shape of the log-likelihood as the primary source of information about the parameter, replacing the assumption of approximate normality with a more faithful representation of the data's evidence. The profile likelihood technique extends this program to settings with nuisance parameters, enabling the analyst to project the full likelihood surface onto the axis of interest. Understanding these historical motivations clarifies why likelihood-based confidence intervals remain a cornerstone of modern inference, especially in fields like biostatistics, econometrics, and physics where the consequences of poor coverage can be severe.
The central question that likelihood-based confidence intervals address is this: when the standard normal approximation underlying Wald intervals is unreliable—due to skewness, boundary effects, or small samples—how can we construct intervals that more faithfully reflect the information actually present in the data? The answer, as we shall see, lies in letting the curvature and shape of the likelihood speak for themselves.
Core Principles & Definitions
Likelihood-based confidence intervals rest on a small number of elegant ideas that link the geometry of the likelihood surface to probabilistic coverage guarantees. Rather than relying on a single point estimate and its estimated variance, these intervals exploit the entire shape of the log-likelihood function to determine how far from the maximum likelihood estimate the parameter can plausibly lie. The following foundational concepts are essential for understanding the construction and interpretation of these intervals.
Likelihood Function
Log-Likelihood Ratio Statistic
Inversion of the Likelihood Ratio Test
Profile Likelihood
Asymmetric Intervals
Visual Explanation: The Likelihood Ratio Interval
The geometric intuition behind likelihood-based confidence intervals is best grasped through a diagram of the log-likelihood function. The following figure depicts a typical log-likelihood curve ℓ(θ), its maximum at the MLE θ̂, and the horizontal cutoff line that defines the endpoints of the confidence interval. The cutoff is placed at ℓ(θ̂) − c/2, where c = χ²₁,₁₋α. For a 95% interval, c ≈ 3.84, so the cutoff sits 1.92 units below the peak on the log-likelihood scale.
Several features of this diagram deserve emphasis. First, the interval endpoints are found by solving the equation ℓ(θ) = ℓ(θ̂) − c/2 for θ, which generally requires numerical root-finding. Second, the asymmetry of the interval reflects genuine asymmetry in the data's evidence about θ—information that a symmetric Wald interval would discard. Third, as the sample size grows and the log-likelihood approaches a parabola (by the central limit theorem), the likelihood-based interval converges to the Wald interval, confirming that the two approaches agree asymptotically but may differ substantially in finite samples.
Mathematical Framework
The mathematical foundations of likelihood-based confidence intervals draw on the theory of likelihood ratio tests and the elegant asymptotic result known as Wilks' theorem. We begin with a single-parameter setting and then extend to the multiparameter case via the profile likelihood.
Single-Parameter Case
Under standard regularity conditions (the parameter space is open, the model is identifiable, and the Fisher information is finite and positive), Wilks' theorem guarantees that D(θ₀) converges in distribution to a χ² random variable with one degree of freedom when the true parameter is θ₀. The 100(1 − α)% confidence interval is therefore the set of θ values for which D(θ) does not exceed the critical value.
Multiparameter Case: Profile Likelihood
Suppose the full parameter vector is (θ, ψ) where θ is the scalar parameter of interest and ψ is a (possibly vector-valued) nuisance parameter. Directly inverting a multivariate likelihood ratio test would yield a confidence region in the joint (θ, ψ) space, which is not what we want. The profile likelihood resolves this by maximizing the log-likelihood over ψ for each fixed value of θ.
Profile Likelihood in Detail
The profile likelihood is best understood through its geometric interpretation. Consider a model with a two-dimensional parameter space (θ, ψ). The full log-likelihood ℓ(θ, ψ) defines a surface over this plane, with a single peak at the joint MLE (θ̂, ψ̂). To construct the profile likelihood for θ, we slice this surface with a plane perpendicular to the θ-axis at each value θ = θ₀, find the height of the highest point on the resulting cross-section (by optimizing over ψ), and record that height. The curve traced out by these maximal heights is the profile log-likelihood ℓₚ(θ).
A crucial property of the profile likelihood is that it inherits the asymptotic chi-squared calibration. Specifically, 2[ℓₚ(θ̂) − ℓₚ(θ₀)] is asymptotically χ²₁ when θ₀ is the true value, regardless of the dimension of the nuisance parameter ψ. This remarkable result means we use exactly the same cutoff (3.841 for a 95% CI) whether the model has one or one hundred nuisance parameters. However, the shape of the profile likelihood curve may differ substantially from the full marginal likelihood, and the constrained MLE ψ̂(θ) must be recomputed at every candidate value of θ, which is the primary computational cost of the procedure.
confint() function for glm objects automate this process.Worked Example: Binomial Proportion
Consider a classic setting: we observe X = 3 successes in n = 20 independent Bernoulli trials and wish to construct a 95% likelihood ratio confidence interval for the success probability p. This small-sample scenario highlights the advantage of the likelihood-based approach over the Wald interval.
Strengths, Limitations, and Comparisons
Likelihood-based confidence intervals offer substantial advantages over Wald intervals but come with their own trade-offs. Understanding these strengths and limitations is essential for deciding which method to use in a given analysis. The following table provides a systematic comparison across several criteria.
| Criterion | Wald Interval | LR / Profile Likelihood Interval |
|---|---|---|
| Coverage accuracy | Can be poor in small samples or near boundaries; coverage often below nominal | Generally closer to nominal coverage in finite samples due to respecting likelihood curvature |
| Symmetry | Always symmetric around the MLE by construction | Naturally asymmetric, reflecting the true shape of the likelihood |
| Parameter constraints | May extend outside the parameter space (e.g., negative probabilities) | Automatically respects the parameter space because ℓ(θ) → −∞ at boundaries |
| Computation | Trivial: one evaluation of θ̂ and SE(θ̂) | Requires iterative optimization at each candidate θ; more expensive for complex models |
| Invariance to reparameterization | Not invariant: CI for log(θ) ≠ log of CI for θ | Fully invariant under monotone transformations (equivariant) |
| Nuisance parameters | Handled via plug-in estimates; underestimates uncertainty | Profile likelihood optimizes over nuisance parameters, properly accounting for their uncertainty |
Connection to Advanced Theory
The profile likelihood approach introduced here is a gateway to several more refined techniques in modern statistical inference. As models grow more complex—incorporating random effects, high-dimensional nuisance parameters, or non-standard asymptotics—the basic profile likelihood can be improved upon in important ways. The following table contrasts the introductory profile likelihood CI with some of its advanced extensions.
| Feature | Basic Profile Likelihood CI | Advanced Extensions |
|---|---|---|
| Adjustment for nuisance parameter bias | None; uses raw profile likelihood | Modified profile likelihood (Barndorff-Nielsen, Cox & Reid) applies corrections for O(n⁻¹) bias in the profile score |
| Higher-order accuracy | First-order: O(n⁻¹/²) error in coverage | Bartlett correction and r* statistic achieve O(n⁻³/²) accuracy, substantially improving finite-sample coverage |
| Integrated likelihood | Not applicable; profile maximizes over ψ | Integrates over ψ with a prior or reference measure, producing a marginal likelihood for θ that may have better properties in some settings |
| Bayesian connection | Purely frequentist interpretation | With a flat or Jeffreys prior, Bayesian highest posterior density (HPD) intervals often coincide numerically with profile likelihood CIs, providing a dual interpretation |
| Boundary parameters | Standard χ²₁ calibration may fail | Self and Liang (1987), Stram and Lee (1994) derive mixture-of-chi-squared null distributions for variance components on the boundary |
Looking forward, the profile likelihood framework also connects naturally to penalized likelihood methods used in regularized regression (LASSO, ridge) and to quasi-likelihood approaches for models where the full distribution is not specified. In each case, the core idea—reading inferential information from the curvature of an objective function rather than from an assumed sampling distribution—remains the unifying thread. Students proceeding to generalized estimating equations, mixed-effects models, or survival analysis will find the profile likelihood a recurring and indispensable tool.
Practice Problems
Summary & Review
Likelihood-based confidence intervals are constructed by inverting the likelihood ratio test: the interval collects all parameter values θ for which the deviance statistic D(θ) = 2[ℓ(θ̂) − ℓ(θ)] does not exceed the appropriate chi-squared critical value (e.g., 3.841 for 95% confidence). Unlike Wald intervals, which assume a symmetric normal approximation, likelihood-based intervals naturally capture asymmetry in the log-likelihood, respect parameter space boundaries, and are invariant to reparameterization.
When the model includes nuisance parameters, the profile likelihood eliminates them by maximizing the log-likelihood over the nuisance parameters for each fixed value of the interest parameter. The resulting profile deviance retains the same asymptotic χ²₁ calibration via Wilks' theorem. These methods are especially valuable in small-sample settings, near boundary parameters, and in complex models such as logistic regression, Poisson regression, and mixed-effects models. Mastery of profile likelihood confidence intervals equips the practitioner with a robust, principled tool for interval estimation that goes well beyond the limitations of the standard Wald approach.