🔁  Posterior belief

Posterior belief#

Updated belief about a parameter after combining prior and data through Bayes’ theorem.

Important

✨ AI-generated content. This page was written with the assistance of an AI language model and is provided as a learning aid. Despite careful review, it may still contain mistakes, omissions, or out-of-date information. Whether you are new to the topic, a team lead, or a senior practitioner, treat it as a starting point rather than an authoritative reference: read it critically and independently verify anything you act on (code, commands, figures, and factual claims) against official documentation and primary sources before relying on it.

What it is#

Posterior belief is your updated belief about a parameter after seeing data — represented, in Bayesian statistics, by the posterior distribution. It fuses two ingredients: the prior (what you believed beforehand) and the likelihood (what the data say). In a sentence: posterior = prior updated by evidence.

Bayes’ theorem#

\[P(\theta \mid D) = \frac{P(D \mid \theta)\, P(\theta)}{P(D)},\]

with prior \(P(\theta)\), likelihood \(P(D \mid \theta)\), evidence \(P(D)\), and posterior \(P(\theta \mid D)\).

It’s a distribution, not a number#

The posterior is a whole distribution over parameter values, showing how plausible each value is after the data — and from it you read off summaries (mean, mode, intervals) or specific posterior probabilities of events.

Example — coin toss#

A uniform prior \(\text{Beta}(1,1)\), updated with 7 heads in 10 tosses, gives the posterior \(\text{Beta}(8, 4)\), centred near 0.67 — the updated belief that \(p\) is most likely around two-thirds.

Posterior belief vs posterior probability#

A useful distinction: the posterior belief is the entire distribution (\(p \sim \text{Beta}(8, 4)\)), while a posterior probability is a single number pulled from it — for instance \(P(p > 0.5 \mid \text{data}) = 0.9\). The latter is one summary of the former.

Where it shows up#

A/B testing (belief about a conversion-rate difference), clinical trials (belief about treatment effect), and any Bayesian model that updates parameter distributions as data arrive.


Theme: Bayesian Inference  ·  All terminology



See also

Source article Adapted (context, re-expressed) in our own words from: Posterior belief (insightful-data-lab.com).

Tags: purpose: reference topic: terminology level: advanced