thinking-bayesian
Bayesian Reasoning
Overview
Bayesian thinking provides a framework for updating beliefs based on new evidence. Rather than treating beliefs as binary (true/false), it recognizes degrees of confidence that should shift as evidence accumulates. This approach, rooted in Bayes' Theorem, helps avoid both overconfidence and underreaction to new information.
Core Principle: State the base rate before you look at the evidence, then update. The single most common error is anchoring on a vivid result and skipping the prior — a positive test for a rare condition is usually still a false alarm.
Redirect: For nearly all uncertainty-reasoning tasks, prefer
thinking-probabilistic— it covers forecasting with ranges, calibration, and uncertainty communication without requiring explicit priors and likelihood ratios. Reserve this skill for the narrow case where you have a specific, quantified prior AND a specific piece of evidence to combine via Bayes' rule. If you only need a rough updated number, the base-rate-then-likelihood-ratio trigger below is enough — don't run the full theorem.
Trigger Card
When interpreting a test result, metric, or new evidence where overreaction is a risk:
- State the base rate first — what was the probability before the evidence?
- Estimate the likelihood ratio — how much more expected is the evidence under the hypothesis vs. not?
- Update: posterior odds = prior odds × likelihood ratio.
If the base rate is very low (rare condition), a positive result is usually still a false alarm. Always start with the prior.