Bayesian Statistics Conditional Probability Inference 22 min read June 16, 2026
BY: Statistics Fundamentals Team
Reviewed By: Minsa A (Senior Statistics Editor)

Posterior Probability: Bayesian Formula, Calculation Steps, and Real-World Examples

A doctor orders a diagnostic test. The test comes back positive. How confident should she be that the patient actually has the disease? The answer is not "as confident as the test's accuracy." It depends on how common the disease is in the first place. That starting-point knowledge is the prior probability, the observed test result is the evidence, and the answer the doctor needs is the posterior probability — the revised probability of disease after accounting for both.

This guide covers what posterior probability is, the exact Bayes' theorem formula behind it, a six-step calculation pipeline, four fully worked examples (medical diagnosis, spam detection, coin toss estimation, and an ML classifier), comparison tables against prior probability and p-values, and an interactive calculator.

What You'll Learn
  • ✓ The precise definition of posterior probability and where it fits in Bayesian inference
  • ✓ The Bayes' theorem formula broken into every component
  • ✓ A six-step calculation pipeline you can apply to any scenario
  • ✓ Four fully solved examples from medicine, NLP, estimation, and machine learning
  • ✓ How posterior probability compares to prior probability and frequentist p-values
  • ✓ Bayesian updating: how posteriors become priors as new data arrives
  • ✓ Real applications across healthcare, finance, cybersecurity, and AI

What Is Posterior Probability?

Definition — Posterior Probability
Posterior probability is the revised probability of a hypothesis after observing new empirical evidence. It is the direct output of Bayesian inference, combining an initial belief (the prior) with how well the observed data fits the hypothesis (the likelihood). It answers: "Given what I just saw, how probable is this hypothesis now?"
P(H|E) = [P(E|H) × P(H)] / P(E)

The word "posterior" simply means "after" in Latin — after observing the evidence, as opposed to "prior," which means before. In Bayesian statistics, every analysis starts with a prior belief about some unknown quantity, updates that belief using data, and ends with a posterior probability that reflects both the starting knowledge and what the data revealed.

This stands in contrast to the frequentist approach, where parameters are fixed and unknown rather than having probability distributions. Bayesian methods, built on the work of Thomas Bayes and later formalized by Pierre-Simon Laplace, treat parameters as random variables with probability distributions, and the posterior is the central result. The full theoretical context sits within statistics and probability at Statistics Fundamentals.

P(H)
Prior Probability
P(E|H)
Likelihood
P(E)
Marginal Likelihood
P(H|E)
Posterior Probability

The posterior is proportional to the prior multiplied by the likelihood. The marginal likelihood P(E) serves as a normalizing constant, ensuring the posterior sums to 1 across all mutually exclusive hypotheses. Understanding each piece is what makes the formula useful rather than just symbolic.

⚡ Quick Reference — Posterior Probability Key Facts
  • Prior P(H): Your belief about the hypothesis before seeing any data — can come from historical records, expert knowledge, or a uniform assumption
  • Likelihood P(E|H): The probability the observed evidence would appear if the hypothesis were true
  • Marginal likelihood P(E): The total probability of the evidence, summed across all possible hypotheses — acts as a normalizing constant
  • Posterior P(H|E): The updated belief after combining prior and likelihood — always between 0 and 1
  • Bayesian updating: The posterior of today becomes the prior for the next analysis when fresh evidence arrives
  • Not a p-value: A posterior is P(Hypothesis | Data); a p-value is P(Data | Null Hypothesis) — they answer different questions entirely

The Bayes' Theorem Formula for Posterior Probability

Bayes' theorem is the engine that produces posterior probabilities. The formula exists in discrete and continuous forms; the discrete version handles situations with a finite set of competing hypotheses, while the continuous form deals with parameters that can take any value within a range.

Discrete Form

Bayes' Theorem — Discrete Form
P(H | E) = P(E | H) × P(H) / P(E)
P(H|E) = posterior probability of H given E P(E|H) = likelihood of E given H P(H) = prior probability of H P(E) = marginal likelihood (normalizer)

When there are multiple mutually exclusive hypotheses H₁, H₂, ..., Hₖ, the marginal likelihood expands into a sum:

Marginal Likelihood Expansion
P(E) = Σᵢ P(E | Hᵢ) × P(Hᵢ)
Sum runs over all possible hypotheses Ensures posteriors sum to 1

Continuous Form

When the parameter of interest is continuous — for example, estimating the true mean of a population — the sum becomes an integral:

Bayes' Theorem — Continuous Form
p(θ | data) ∝ p(data | θ) × p(θ)
θ = unknown parameter p(θ) = prior distribution p(data|θ) = likelihood function p(θ|data) = posterior distribution = "proportional to" (normalizer omitted)

The continuous form yields a full posterior distribution rather than a single number. That distribution is then summarized using measures like the posterior mean, median, or credible intervals — the Bayesian equivalent of confidence intervals. For most classroom and applied problems, the discrete form is what you work with directly.

💡
Formula Quick-Access

Posterior = (Likelihood × Prior) / Marginal Likelihood. The numerator tells you how well the hypothesis explains the data weighted by your initial belief. The denominator scales everything so the result is a valid probability between 0 and 1.

How to Calculate Posterior Probability — 6-Step Pipeline

Every posterior probability calculation follows the same sequence. Getting comfortable with this pipeline means you can apply it whether you are evaluating a medical test, training a Naive Bayes classifier, or revising a financial model after new earnings data.

Step 1
P(H)
Set the Prior
Step 2
Observe E
Collect Evidence
Step 3
P(E|H)
Compute Likelihood
Step 4
P(E)
Normalize
Step 5
P(H|E)
Posterior
1

Establish the Prior Probability P(H)

Set your initial probability for the hypothesis before looking at any new data. This might come from published prevalence rates, historical base rates, expert consensus, or — when nothing is known — a uniform (flat) prior that treats all possibilities as equally likely. The prior is where domain knowledge enters the calculation explicitly.

2

Collect and Define the Evidence E

Observe or define the specific data point or outcome you want to condition on. Be precise: "the test came back positive" and "the word 'Guaranteed' appears in the email subject line" are both usable evidence statements. The evidence must be something you can assign a probability to under each hypothesis.

3

Calculate the Likelihood P(E|H)

Determine the probability that this specific evidence would be observed if the hypothesis were true. A diagnostic test with 99% sensitivity means P(positive result | disease present) = 0.99. You need this for each hypothesis you are evaluating. For a two-hypothesis problem you need both P(E|H) and P(E|not H).

4

Compute the Marginal Likelihood P(E)

The marginal likelihood is the total probability of observing the evidence across all hypotheses. For a binary hypothesis: P(E) = P(E|H) × P(H) + P(E|¬H) × P(¬H). This is the denominator in Bayes' theorem and ensures the posterior is a proper probability between 0 and 1.

5

Apply Bayes' Theorem

Divide the numerator — P(E|H) × P(H) — by the marginal likelihood P(E). The result is the posterior probability P(H|E). This single number is your updated, evidence-weighted belief in the hypothesis. It will be higher than the prior if the likelihood is strong, and lower if the evidence runs against the hypothesis.

6

Interpret and Update

State the posterior in plain terms and decide whether to act on it. If new evidence arrives later, today's posterior becomes tomorrow's prior — this is Bayesian updating. The updated sequence converges on the truth as more data accumulates, which is why sequential analysis is one of the most practical applications of posterior probability in clinical trials and A/B testing.

Posterior Probability Examples — 4 Fully Worked

Each example below follows the six-step pipeline. The numbers are chosen to be realistic and the arithmetic is shown in full. The first two examples — medical diagnosis and spam filtering — are the most referenced in introductory courses because they expose what is often called the base rate fallacy: the tendency to ignore prior probability when interpreting evidence.

Example 1 — Medical Diagnostic Screening

Worked Example 1 — Medical Diagnosis

Problem: A rare condition affects 0.5% of the general population. A diagnostic test has 99% sensitivity (true positive rate) and 95% specificity (true negative rate). A patient tests positive. What is the posterior probability that the patient actually has the condition?

Applying Bayes' Theorem
P(Disease | Positive) = P(Pos|Disease) × P(Disease) / P(Positive)
1

Prior: P(Disease) = 0.005 (0.5% prevalence). P(Healthy) = 0.995.

2

Evidence: The test result is positive.

3

Likelihood: P(Positive | Disease) = 0.99 (sensitivity). P(Positive | Healthy) = 1 − 0.95 = 0.05 (false positive rate).

4

Marginal likelihood:
P(Positive) = (0.99 × 0.005) + (0.05 × 0.995)
= 0.00495 + 0.04975 = 0.0547

5

Posterior: P(Disease | Positive) = 0.00495 / 0.0547 ≈ 0.0905

6

Interpretation: The posterior probability is about 9.05%. Despite a positive result on a 99%-accurate test, there is only a roughly 1-in-11 chance the patient has the disease, because the condition is so rare in the first place.

✅ Posterior Probability = 9.05% — a positive test result on a rare condition still leaves the probability of disease below 10%, illustrating why base rates cannot be ignored in clinical decision-making.

⚠️
The Base Rate Fallacy

Studies consistently find that even experienced clinicians overestimate the probability of rare diseases when confronted with a positive test. The 99% accuracy sounds impressive, but when the condition affects only 0.5% of people, 91% of positive tests in a screened population will be false positives. Posterior probability formalizes exactly why confirmatory testing matters for rare conditions.

Reference: Gigerenzer, G., & Hoffrage, U. (1995). How to improve Bayesian reasoning without instruction: Frequency formats. Psychological Review, 102(4), 684–704. For prevalence-based calculations, see the NIH StatPearls entry on Bayesian analysis.

Example 2 — Spam Email Classification (Naive Bayes)

Worked Example 2 — NLP Spam Filter

Problem: 40% of incoming email is spam. The word "Guaranteed" appears in 10% of spam messages and in only 1% of legitimate messages. An email arrives containing "Guaranteed" in the subject line. What is the posterior probability it is spam?

Bayes' Theorem for Spam Classification
P(Spam | "Guaranteed") = P("Guaranteed"|Spam) × P(Spam) / P("Guaranteed")
1

Prior: P(Spam) = 0.40. P(Ham) = 0.60.

2

Evidence: The word "Guaranteed" appears in the email.

3

Likelihood: P("Guaranteed" | Spam) = 0.10. P("Guaranteed" | Ham) = 0.01.

4

Marginal likelihood:
P("Guaranteed") = (0.10 × 0.40) + (0.01 × 0.60)
= 0.04 + 0.006 = 0.046

5

Posterior: P(Spam | "Guaranteed") = 0.04 / 0.046 ≈ 0.8696

6

Interpretation: The word "Guaranteed" updates the spam probability from a prior of 40% to a posterior of about 87%. Real spam filters extend this to thousands of words, multiplying likelihoods for each (the Naive Bayes assumption), and typically combine with a threshold decision rule.

✅ Posterior Probability = 86.96% — a single high-signal word nearly doubles the spam probability compared to the baseline. This is Naive Bayes classification in its simplest operational form.

The Naive Bayes classifier was formally described by Maron (1960) and Duda & Hart (1973). For practical implementation in Python using scikit-learn, see the scikit-learn Naive Bayes documentation.

Example 3 — Coin Toss Bayesian Parameter Estimation

Worked Example 3 — Parameter Estimation

Problem: You have a coin that is either fair (P(heads) = 0.5) or biased (P(heads) = 0.8). You initially believe there is an equal 50% chance it is either type. You flip the coin once and it lands heads. Update the probability that the coin is biased.

1

Prior: P(Biased) = 0.50. P(Fair) = 0.50.

2

Evidence: One flip, result = Heads.

3

Likelihood: P(Heads | Biased) = 0.80. P(Heads | Fair) = 0.50.

4

Marginal likelihood:
P(Heads) = (0.80 × 0.50) + (0.50 × 0.50) = 0.40 + 0.25 = 0.65

5

Posterior: P(Biased | Heads) = (0.80 × 0.50) / 0.65 = 0.40 / 0.65 ≈ 0.615

6

Interpretation: One head updates the probability the coin is biased from 50% to 61.5%. This posterior would then serve as the prior if you flip the coin again — that is Bayesian updating in action. After several consecutive heads, the posterior would converge strongly toward 100%.

✅ Posterior Probability (Biased) = 61.5% — a single data point provides modest but real evidence. Sequential updating with more flips narrows the uncertainty substantially.

Example 4 — Machine Learning Binary Classifier

Worked Example 4 — ML Classification

Problem: A machine learning model is classifying customer churn. Historical records show 15% of customers churn each month. For a customer who has not logged in for 30 days, the model estimates a likelihood of 0.70 that such inactivity would be observed for a churner, versus 0.12 for a retained customer. What is the posterior probability this inactive customer will churn?

1

Prior: P(Churn) = 0.15. P(Retain) = 0.85.

2

Evidence: Customer inactive for 30+ days.

3

Likelihood: P(Inactive | Churn) = 0.70. P(Inactive | Retain) = 0.12.

4

Marginal likelihood:
P(Inactive) = (0.70 × 0.15) + (0.12 × 0.85) = 0.105 + 0.102 = 0.207

5

Posterior: P(Churn | Inactive) = 0.105 / 0.207 ≈ 0.507

6

Interpretation: A customer who has not logged in for 30 days has roughly a 50.7% posterior probability of churning — more than triple the baseline 15% prior. A retention team would reasonably treat anyone above, say, a 40% posterior threshold as a priority outreach case.

✅ Posterior Probability = 50.7% — 30 days of inactivity is meaningful signal. The posterior drives the business decision: intervene now or wait for more evidence.

Interactive Posterior Probability Calculator

Enter your prior probability, likelihood, and false positive rate below. The calculator applies Bayes' theorem and shows the full working for a two-hypothesis (H vs. not-H) scenario. This covers medical tests, spam detection, quality control, and any other binary classification problem.

Posterior Probability Calculator — Bayes' Theorem

Prior vs. Posterior vs. P-Value — Key Differences

Three terms cause consistent confusion in introductory statistics courses. The table below shows the differences directly.

Prior Probability vs. Posterior Probability

Dimension Prior Probability P(H) Posterior Probability P(H|E)
When assessed Before observing current data After observing current data
Data dependence Based on historical records, theory, or assumptions Updated by the likelihood of the new evidence
Role in formula Input — the starting point P(H) Output — the result P(H|E)
Relationship Can become the posterior's prior in the next update Becomes the prior if new data arrives
Example Disease prevalence in the population: 0.5% Probability of disease given a positive test: 9.05%

Posterior Probability vs. Frequentist P-Value

This comparison matters for anyone who works with both Bayesian and frequentist methods. They look similar but answer fundamentally different questions, and confusing the two leads to well-documented misinterpretations in published research.

Feature Posterior Probability Frequentist P-Value
What it calculates P(Hypothesis | Data) P(Data this extreme | Null hypothesis true)
Hypothesis treatment Random variable with a probability distribution Fixed but unknown — cannot have a probability
Prior information Explicitly required as P(H) Not used — only current data counts
Direct meaning "There is a 9% chance the hypothesis is true given this data" "We'd see data this extreme 5% of the time if H₀ were true"
Sequential updating Built in — today's posterior is tomorrow's prior Requires correction (e.g., Bonferroni) to avoid inflated error rates
Interval estimate Credible interval — direct probability statement Confidence interval — repeated-sampling interpretation
The distinction between Bayesian and frequentist inference is discussed in Gelman, A. et al. (2013). Bayesian Data Analysis (3rd ed.). Chapman and Hall/CRC. See also the full page on p-values at Statistics Fundamentals for the frequentist interpretation in detail.

Bayesian Updating — Using Posteriors as New Priors

One of the most powerful features of the Bayesian framework is that it composes naturally. Once you have a posterior, you do not need to restart when new data arrives — you simply treat the posterior as the new prior and run Bayes' theorem again.

Return to the coin example. After one heads flip, the posterior probability the coin is biased is 61.5%. If you flip again and get a second heads, you use 0.615 as the new prior:

Bayesian Updating — Sequential Evidence

Updating the biased-coin posterior with a second heads result.

1

New prior: P(Biased) = 0.615 (the posterior from flip 1). P(Fair) = 0.385.

2

New evidence: Second flip also lands Heads.

3

Likelihoods unchanged: P(Heads | Biased) = 0.80. P(Heads | Fair) = 0.50.

4

Marginal likelihood: (0.80 × 0.615) + (0.50 × 0.385) = 0.492 + 0.1925 = 0.6845

5

New posterior: P(Biased | two heads) = 0.492 / 0.6845 ≈ 0.719

✅ After two consecutive heads, the posterior rises from 50% → 61.5% → 71.9%. Each piece of evidence tightens the inference. A long run of heads would push the posterior asymptotically toward 1.

This sequential property is why Bayesian methods are natural fits for adaptive clinical trials, real-time fraud detection, and online machine learning systems — any setting where evidence accumulates over time rather than arriving all at once. The Markov Chain Monte Carlo (MCMC) methods that power modern Bayesian computation are fundamentally about sampling from posterior distributions that cannot be computed analytically.

How to Interpret Posterior Probability Values

A posterior probability is a number between 0 and 1 with a direct probabilistic meaning. Unlike a p-value (which measures how surprising the data is under a fixed assumption), the posterior probability directly states how probable the hypothesis is given the observed evidence. That directness is both its strength and what makes clear interpretation important.

→ 0
Strong evidence against
Evidence strongly contradicts the hypothesis. Reject actions based on it.
≈ 0.50
Maximum ambiguity
Data cannot distinguish between hypotheses. Collect more evidence before deciding.
→ 1
Strong evidence for
Evidence strongly supports the hypothesis. Use parameters in predictions or policy.

In practice, the threshold that triggers a decision depends on the cost of errors in the specific domain. A spam filter might flag email above 0.70 posterior probability. A medical screening protocol for a serious disease might act at 0.10 — because the cost of missing a true case (false negative) outweighs the cost of a false alarm. Decision thresholds are a policy choice, not a statistical one.

Posterior RangeStatistical MeaningDomain Example
0.00 – 0.05Very strong evidence against HDiagnostic test almost certainly negative
0.05 – 0.20Moderate evidence against HRare disease still unlikely despite positive test
0.20 – 0.40Weak evidence against HConfirm with additional testing
0.40 – 0.60Ambiguous — near baselineEvidence barely updates prior belief
0.60 – 0.80Moderate evidence for HSpam likely — route to junk folder
0.80 – 0.95Strong evidence for HHigh churn risk — trigger retention intervention
0.95 – 1.00Very strong evidence for HFraud alert — block transaction pending review

Real-World Applications of Posterior Probability

Posterior probability is the computational backbone of Bayesian reasoning across a remarkable range of fields. The shared thread in all of them is that decisions must be made under uncertainty using a mixture of prior knowledge and new observations.

🏥

Healthcare and Diagnostics

Every screening test — mammography, PSA testing, COVID rapid antigen tests — requires posterior probability to interpret correctly. Sensitivity and specificity alone are insufficient without prevalence as the prior. Adaptive clinical trials use sequential Bayesian updating to stop early when posterior probability of treatment efficacy exceeds a threshold.

📧

Natural Language Processing

Naive Bayes classifiers built on posterior probability were the first effective spam filters and remain competitive for text classification. Each word in a document updates the posterior probability of each class. The conditional independence assumption (Naive Bayes) makes computation tractable even with large vocabularies.

📈

Finance and Risk

Bayesian portfolio models update posterior distributions over asset returns as market data arrives. Credit scoring models assign posterior probabilities of default given a borrower's features. Algorithmic trading strategies update beliefs about regime changes — bull vs. bear market — using sequential Bayesian inference.

🔐

Cybersecurity

Intrusion detection systems assign posterior probabilities to network events being malicious. Bayesian belief networks model the conditional dependencies between system components to identify the most probable attack path given observed anomalies. False positive rates are controlled by setting the decision threshold via the posterior.

🤖

Machine Learning

Bayesian neural networks maintain posterior distributions over their weights rather than point estimates, giving uncertainty quantification alongside predictions. Bayesian optimization uses posterior probability distributions over objective functions to decide where to evaluate next, making it the standard approach for hyperparameter tuning in expensive models.

🚗

Autonomous Systems

Self-driving vehicles maintain Bayesian belief states — posterior distributions over the positions and velocities of surrounding objects — updated in real time from lidar, radar, and camera data. Each sensor reading updates the posterior, and the most probable state drives navigation decisions. This is sensor fusion via Bayesian filtering.

Posterior Probability — Key Terms and Formulas

TermFormulaPlain Meaning
Posterior ProbabilityP(H|E)Updated probability of hypothesis H after observing evidence E
Prior ProbabilityP(H)Initial probability of H before seeing any data
LikelihoodP(E|H)Probability the data would appear if H were true
Marginal LikelihoodP(E) = Σᵢ P(E|Hᵢ)·P(Hᵢ)Total probability of the evidence — normalizing constant
Bayes FactorK = P(E|H₁)/P(E|H₂)Ratio measuring how much more H₁ explains the data than H₂
Posterior OddsP(H₁|E)/P(H₂|E)Ratio of posterior probabilities for two competing hypotheses
Credible Interval∫ₐᵇ p(θ|data)dθ = 1−αRange containing the parameter with probability 1−α under the posterior
Bayesian UpdatingPosterior(t) → Prior(t+1)Using today's posterior as the prior when new evidence arrives
Conjugate PriorA prior whose functional form is preserved in the posterior (simplifies calculation)

Frequently Asked Questions

What is posterior probability in simple terms?
Posterior probability is your updated belief about something after seeing new evidence. If you thought there was a 1% chance your package was lost, and then tracking showed no movement for five days, your posterior probability — your revised belief — might jump to 40%. It formalizes the intuitive process of updating beliefs when facts change.
What is the difference between prior probability and posterior probability?
The prior is what you believed before seeing the data. The posterior is what you believe after combining the prior with the evidence through Bayes' theorem. Think of the prior as a starting position and the posterior as where the evidence moves you. The posterior of today can become the prior of tomorrow when more data arrives — this chain of updates is what makes Bayesian inference especially well-suited to sequential analysis.
How do you calculate posterior probability step by step?
Six steps: (1) Set the prior P(H). (2) Define the observed evidence E. (3) Compute the likelihood P(E|H) — how likely the evidence is if H is true. (4) Compute the marginal likelihood P(E) = P(E|H)·P(H) + P(E|¬H)·P(¬H) for a binary problem. (5) Apply Bayes' theorem: P(H|E) = P(E|H)·P(H) / P(E). (6) Interpret the result and decide whether to update the prior for a subsequent analysis.
What does a posterior probability of 0.95 mean?
It means there is a 95% probability that the hypothesis is true, given the observed evidence. This is a direct probability statement — quite different from a 95% confidence interval in frequentist statistics, which means something subtly different. A 95% posterior probability of churn, for example, means the model is highly confident that a specific customer will leave based on their behavioral data.
How is posterior probability used in machine learning?
Posterior probability appears in several machine learning contexts. Naive Bayes classifiers compute the posterior probability of each class label given the input features. Bayesian neural networks maintain posterior distributions over weights to provide calibrated uncertainty estimates. Bayesian optimization models the posterior probability distribution over an objective function to guide hyperparameter search. Logistic regression output is often interpreted as a posterior probability when a calibration step is applied. For a deeper look at the probabilistic framing, see the conditional probability and Bayes' theorem guides.
Can posterior probability be greater than the prior?
Yes — when the evidence is more consistent with the hypothesis than with its alternatives. In the spam example, the prior probability was 40% but the posterior rose to 87% because the word "Guaranteed" was ten times more common in spam than in legitimate email. The evidence strongly supported the hypothesis, so the posterior exceeded the prior. Conversely, when evidence is more consistent with alternatives, the posterior falls below the prior.
What is the relationship between posterior probability and Bayes factor?
The Bayes factor (K) is the ratio of the likelihoods of two competing hypotheses: K = P(E|H₁) / P(E|H₂). The posterior odds equal the prior odds multiplied by the Bayes factor: P(H₁|E)/P(H₂|E) = K × P(H₁)/P(H₂). A Bayes factor greater than 1 means the data supports H₁ over H₂, and the larger the Bayes factor, the more the posterior shifts toward H₁. For a full treatment, see Bayes factor.

Posterior probability does not exist in isolation. Understanding it fully means understanding the surrounding framework of Bayesian inference and the frequentist concepts it relates to and differs from.

Bayesian Inference Context

How Posterior Probability Fits the Broader Statistical Picture

Conditional probability is the mathematical foundation: P(A|B) = P(A∩B)/P(B). Bayes' theorem is a rearrangement of this definition. The prior expresses your knowledge before data; the likelihood comes from your statistical model; the posterior is the result. When you cannot compute the posterior analytically, MCMC methods like the Metropolis-Hastings algorithm sample from it numerically.

On the frequentist side, p-values, confidence intervals, and hypothesis testing procedures answer related but distinct questions. The choice between frameworks depends on whether prior information exists, whether sequential updating matters, and how you want to communicate uncertainty to decision-makers.