Bayesian Belief Updating¶
Revise beliefs by combining prior expectations with new evidence rather than treating each observation in isolation.
The Diagnostic Story¶
Symptom: Every new signal is treated as if it arrived in a vacuum. A vivid case makes a rare outcome feel probable; a high base rate gets ignored because the story in front of you is more compelling. Different reviewers reach different conclusions because no one has made their priors or evidence weights explicit. Forecasts swing wildly or refuse to move even when new evidence should change them.
Pivot: Make the update pathway explicit: name the prior, weigh the new evidence by its reliability and what it implies relative to alternatives, compute a posterior, and connect that posterior to action thresholds. Prior assumptions become auditable rather than smuggled into conclusions as neutral facts.
Resolution: Beliefs shift in proportion to evidence rather than to salience or narrative. Base rates are neither dominated by vivid signals nor ignored. The chain from prior through evidence to conclusion stays visible, reviewable, and correctable over successive updates.
Reach for this when you hear…¶
[clinical diagnosis] “We ordered the test because it was positive, but we forgot the pre-test probability was two percent — now we're treating a disease the patient probably doesn't have.”
[fraud detection] “Our model flags everything that looks unusual on its own, but it has no memory of what we already knew about the account before this transaction came in.”
[weather forecasting] “Yesterday's model run said forty percent chance of rain; today's new data should move that, but the team is anchoring on yesterday's number because no one wrote down what the update rule is.”
Mechanisms / Implementations¶
- Bayesian Diagnosis: implements the archetype in diagnostic settings by combining base rates with test evidence.
- Likelihood-Ratio Reasoning: implements evidence weighting by asking whether evidence is more expected under one possibility than another.
- Sequential Forecast Update: implements repeated posterior-to-prior updating over time.
- Posterior Risk Estimation: implements the pattern when the output is a revised risk score or risk band.
- Prior Sensitivity Analysis: implements a robustness check by comparing posterior conclusions under plausible alternative priors.
- Base-Rate Check: is a lightweight debiasing mechanism that forces starting prevalence or historical frequency into the interpretation.
- Adaptive Decision Threshold: connects posterior beliefs to action states such as monitor, escalate, pause, intervene, or clear.
- Bayesian Model Update: Turns each observed surprise into a revised belief — folding new evidence into a prior to yield a posterior over the model, along with honest uncertainty.
Related Abstractions¶
Abstractions this archetype builds on — directly (a source ingredient) or as a related pattern. Links follow the typed catalog namespace.
Built directly on (3)
- Bayesian Updating: Update beliefs with evidence.
- Probability: Quantifies uncertainty and likelihoods.
- Uncertainty: Incomplete knowledge.
Also references 12 related abstractions
- Bounded Rationality: Limited decision capacity.
- Conditioning (Behavioral): Learning via association.
- Confidence Intervals: Range of plausible values.
- Confirmation Bias: Favor confirming evidence.
- Counterfactual Reasoning: Hypothetical alternatives.
- Effect Size: Magnitude of effect.
- Feedback: Outputs influence inputs.
- Hypothesis Testing (Null vs. Alternative): Null vs alternative evaluation.
- Regression To Mean
- Reproducibility & Replicability: Repeatable results.
Variants¶
Narrower or domain-specific specializations that share this archetype's core structure. Recognized variants are established; candidate variants are provisional.
Diagnostic Bayesian Updating · domain variant · recognized
A diagnostic variant that revises the plausibility of a condition, cause, defect, or hidden state using base rates and test evidence.
Sequential Evidence Updating · temporal variant · recognized
A temporal variant where each posterior becomes the next prior as evidence arrives over time.
Posterior Risk Reassessment · risk or failure variant · recognized
A risk-focused variant that revises the probability of harm, failure, fraud, defect, or opportunity after new indicators appear.
Prior Sensitivity Review Variant · risk or failure variant · recognized
A review variant that tests whether a posterior conclusion is robust to plausible differences in prior assumptions.