math concept
13 topics use this
Math concept
Bayes' Theorem
Core equation
$$P(A \mid B) = \dfrac{P(B \mid A)\,P(A)}{P(B)}$$
Bayes' theorem describes how to update beliefs in the light of new evidence. It is the foundation of Bayesian statistics, machine learning inference, medical diagnosis, and any system that reasons under uncertainty.
The continuous form
For probability density functions:
\[p(\theta \mid \mathbf{x}) = \frac{p(\mathbf{x} \mid \theta)\, p(\theta)}{p(\mathbf{x})} \propto p(\mathbf{x} \mid \theta)\, p(\theta)\]- $p(\theta)$ — prior: beliefs before seeing data
- $p(\mathbf{x} \mid \theta)$ — likelihood: how probable the data is under $\theta$
- $p(\theta \mid \mathbf{x})$ — posterior: updated beliefs after seeing data
Gaussian conjugate update
If $x \mid \theta \sim \mathcal{N}(\theta, \sigma^2)$ and $\theta \sim \mathcal{N}(\mu_0, \tau^2)$, the posterior is:
\[\theta \mid x \sim \mathcal{N}\!\left(\frac{\tau^2 x + \sigma^2 \mu_0}{\sigma^2 + \tau^2},\; \frac{\sigma^2 \tau^2}{\sigma^2 + \tau^2}\right)\]The posterior mean is a precision-weighted average of the prior mean and the data.
Fields that use this concept
Finance & economics
Actuarial science
Claims Reserving
Actuarial methods for estimating the amount an insurer must set aside to pay claims that have been incurred but not yet fully settled.
Credibility Theory
A Bayesian framework for blending an insured's own loss experience with population-level data to produce more accurate premium estimates.
Life sciences
Bioinformatics
Hidden Markov Models in Bioinformatics
Probabilistic sequence models for gene finding, CpG island detection, and profile-based database search.
Motif Finding
Statistical and probabilistic methods for discovering recurring sequence patterns in DNA and protein data.
Life sciences
Biostatistics
Bayesian Adaptive Trials
Clinical trials that use Bayesian inference to update beliefs about treatment effects and modify trial conduct based on accumulating evidence.
Meta-Analysis
Quantitative synthesis of results across multiple studies, combining effect estimates to increase precision and assess heterogeneity.
Earth sciences
Climate modeling
Engineering & CS
Machine learning
Earth sciences
Meteorology
Life sciences
Quant ecology
Life sciences
Quant genetics
Engineering & CS
Robotics
Occupancy Grid Mapping
Bayesian grid-based environment representation where each cell independently tracks its probability of being occupied.
Particle Filter
Monte Carlo localization represents robot belief as a set of weighted particles, enabling non-Gaussian, multi-modal distributions over robot pose.