Skip to contentScholarGate
LibraryBookshelfDeskReview StudioAssistant
Sign in
On this page
IntuitionHow it worksWhen to use itStrengths & limitationsCommon pitfallsApplicationsFrequently asked🔒 Read the full methodSourcesRelated methods
Cite this pageSpotted an issue on this page? Report or suggest a fix →
Home›Bayesian›Laplace Approximation
Bayesian methods

Laplace Approximation

Laplace Approximation to the Posterior · Also known as: Laplace's method, saddle-point approximation (Bayesian), second-order Gaussian approximation, LA

The Laplace approximation is a classical analytic technique that replaces an intractable posterior distribution with a multivariate Gaussian centred at the posterior mode, using the curvature of the log-posterior at that mode to set the covariance. Formalised for Bayesian statistics by Tierney and Kadane (1986) in their landmark Journal of the American Statistical Association paper, it provides a fast, deterministic alternative to Markov chain Monte Carlo and forms the mathematical core of Integrated Nested Laplace Approximations (INLA).

ScholarGate
  1. Bayesian methods
  2. v1
  3. 3 Sources
  4. PUBLISHED
Cite this page →
Tools & resources
Download slides
Learn & explore

Read the full method

Members only

Sign in with a free account to read this section.

Sign in

Method map

The neighbourhood of related methods — select a node to explore.

Laplace Approximation
Bayesian RegressionExpectation PropagationMCMC

When to use it

The Laplace approximation is a good choice when you need fast, deterministic posterior inference without running full MCMC chains. It is most reliable when the posterior is approximately unimodal and not strongly skewed — conditions typically satisfied with large or moderately large samples. It is particularly well suited to generalised linear models (e.g. logistic or Poisson regression) and to any model where the MAP estimate can be obtained by a standard optimiser. It is the default inference engine in INLA for structured additive regression models, making it routine for spatial statistics and epidemiology. It is less reliable for multimodal posteriors, hierarchical models with many latent variables, or posteriors with heavy tails.

Strengths & limitations

Strengths
  • Deterministic and fast: no MCMC chains to run, no convergence monitoring, no thinning.
  • Provides an analytic estimate of the log marginal likelihood, useful for model selection and empirical Bayes hyperparameter tuning.
  • Scales well to moderate dimensions when the Hessian is sparse, and underpins the highly scalable INLA framework for latent Gaussian models.
  • Straightforward to implement: requires only a MAP optimiser and second-order automatic differentiation.
Limitations
  • Approximation quality degrades when the posterior is multimodal, skewed, or has heavy tails — the Gaussian approximation cannot capture these features.
  • Hessian computation and inversion cost O(p³) in a dense parameter space, limiting applicability in high-dimensional models without sparsity structure.
  • The mode-finding step may converge to a local rather than the global mode in non-convex posteriors.
  • Unlike MCMC, the Laplace approximation provides no unbiased estimator of the marginal likelihood; the approximation error is not easily quantified without a ground truth.

Frequently asked

How does the Laplace approximation differ from variational Bayes?

Both are deterministic approximations to the posterior, but they differ in what they optimise. The Laplace approximation fits a Gaussian by matching the location and curvature at the posterior mode. Variational Bayes chooses a distribution from a family by minimising the KL divergence to the true posterior (equivalently, maximising the evidence lower bound). The Laplace approximation is simpler and requires only second-order derivatives, whereas mean-field variational Bayes can be applied to models where computing the Hessian is impractical but tends to underestimate posterior variance.

When is the Laplace approximation exact?

The approximation is exact when the true posterior is itself a multivariate Gaussian — for example, in a linear Gaussian model with a Gaussian prior on coefficients. More generally, by a Bernstein–von Mises theorem argument, the approximation becomes increasingly accurate as sample size grows, because the likelihood dominates the prior and the posterior concentrates into an approximately Gaussian shape around the MLE.

What is INLA and how does it relate to the Laplace approximation?

Integrated Nested Laplace Approximations (INLA), introduced by Rue, Martino, and Chopin (2009), is an inference framework for latent Gaussian models. It uses the Laplace approximation to approximate the conditional posterior of the latent field and the marginal posteriors of the hyperparameters, then integrates over the hyperparameter space numerically. INLA is orders of magnitude faster than MCMC for structured additive regression models and is implemented in the R-INLA package.

Can I use the Laplace approximation for model comparison?

Yes. The log marginal likelihood approximated by the Laplace method can be used to compute Bayes factors or to select among competing models, a strategy MacKay (2003) called the evidence approximation. The approximation is most reliable when the posterior is well-concentrated and approximately Gaussian. For small samples or complex models, cross-validation or exact marginal likelihood estimates from MCMC are preferred.

Sources

  1. Tierney, L. & Kadane, J. B. (1986). Accurate approximations for posterior moments and marginal densities. Journal of the American Statistical Association, 81(393), 82–86. DOI: 10.1080/01621459.1986.10478240 ↗
  2. MacKay, D. J. C. (2003). Information Theory, Inference, and Learning Algorithms. Cambridge University Press. ISBN: 978-0521642989
  3. Rue, H., Martino, S. & Chopin, N. (2009). Approximate Bayesian inference for latent Gaussian models by using integrated nested Laplace approximations. Journal of the Royal Statistical Society: Series B, 71(2), 319–392. DOI: 10.1111/j.1467-9868.2008.00700.x ↗

How to cite this page

ScholarGate. (2026, June 3). Laplace Approximation to the Posterior. ScholarGate. https://scholargate.app/en/bayesian/laplace-approximation

Related methods

Bayesian RegressionExpectation PropagationMCMC

Which method?

Set this method beside its closest kin and read them side by side — the library lays the books on the table; the choice is yours.

  • Bayesian RegressionBayesian↔ compare
  • Expectation PropagationBayesian↔ compare
  • MCMCBayesian↔ compare
Compare side by side →

Referenced by

Expectation Propagation

Similar methods

Spatial Variational InferenceVariational InferenceExpectation PropagationBayesian LASSO RegressionBayesian InferenceSpatial Bayesian InferenceSpatial Approximate Bayesian ComputationMultilevel Variational Inference

Related reference concepts

Numerical Integration in StatisticsVariational InferenceBayesian Computation and MCMCBayesian Model Comparison and SelectionGaussian Process ModelsBayesian Inference Foundations

Spotted an issue on this page? Report or suggest a fix →

ScholarGate — Laplace Approximation (Laplace Approximation to the Posterior). Retrieved 2026-07-21 from https://scholargate.app/en/bayesian/laplace-approximation · Dataset: https://doi.org/10.5281/zenodo.20539026
Quick facts
Family
Bayesian
Type
Analytical posterior approximation
Purpose
approximate inference / posterior summarisation
Inference
analytic (deterministic)
Outputs
Gaussian approximation to posterior / marginal likelihood estimate
Originator
Pierre-Simon Laplace (1774); Bayesian formalisation: Tierney & Kadane (1986)
Year
1986
Computational Cost
O(p³) per evaluation (Hessian inversion)
Key Extension
Integrated Nested Laplace Approximations (INLA)
Related methods
Bayesian RegressionExpectation PropagationMCMC
ScholarGate

A content-first reference library for research methods — what each one is, how it works, and where it comes from.

Open data (CC-BY)

Explore

  • Library
  • Search the library…
  • Browse by field
  • Fields
  • Journey
  • Compare
  • Which method?

Reference

  • Subjects
  • Atlas
  • Glossary
  • Methodology
  • Philosophy

Your tools

  • Bookshelf
  • Desk
  • Chat

Company

  • About
  • Pricing
  • Contact
  • Suggest a method

Entries are compiled from published sources for reference. Verifying the accuracy and suitability of any information for your own use remains your responsibility.

© 2026 ScholarGate · A research-method reference library
  • Privacy
  • Cookies
  • Terms
  • Delete account