After studying this material, you should be able to:
Imagine a doctor using an AI assistant. The patient has a fever. Then a test comes back positive. Then another symptom appears.
A good reasoner updates their beliefs as each new piece of evidence arrives.
This is not optional in high-stakes domains like:
These domains share one critical feature:
There is rarely ONE correct answer. There is a most probable answer given available evidence.
LLMs are being deployed in domains that REQUIRE rational belief updating.
The question is: Do they actually do this well?
Think of belief updating like adjusting a weather forecast:
| Situation | Your Belief |
|---|---|
| Morning, no data | 30% chance of rain |
| You see dark clouds | Updates to 60% |
| You feel humidity | Updates to 80% |
| Friend says forecast says sunny | Updates back to 50% |
Each new piece of evidence rationally shifts your probability estimate.
New Belief = Prior Belief × How well evidence fits this belief
─────────────────────────────────────────────────
Overall probability of seeing this evidence
In formal notation:
$P(H|E) = \frac{P(E|H) \cdot P(H)}{P(E)}$
Where:
A "Bayesian" system is one that updates beliefs OPTIMALLY —
extracting exactly the right amount of information from evidence.
Not too much. Not too little.
The paper introduces a new way to study LLMs:
Treat an LLM not as a text generator, but as an information processing rule — a system that takes in evidence and outputs updated probability beliefs.
This is the paper's central concept:
Information Processing Gap = |LLM's Belief Update| − |Ideal Bayesian Update|
Visually:
IDEAL BAYESIAN PATH:
Prior Belief ──[Evidence]──→ Posterior Belief ✓
LLM ACTUAL PATH:
Prior Belief ──[Evidence]──→ Deviated Belief ✗
↑
This deviation = Information Processing Gap
The gap tells you:
The researchers tested multiple methods for how LLMs process evidence:
Ask the LLM directly:
"Given this evidence, what is the probability of X?"
Force the LLM to:
1. State prior probability
2. Estimate likelihood of evidence
3. Compute posterior mathematically
LLM uses patterns learned during training to "feel out"
how much to update — without explicit calculation
| Approach | Method | Bayesian? |
|---|---|---|
| A | Direct elicitation | Partially |
| B | Explicit Bayes calculation | Nearly yes |
| C | Learned heuristic | No |
Bayesian Update → Optimal → Best Performance
Heuristic Update → Suboptimal → Worse Performance
Non-Bayesian heuristic updates often OUTPERFORMED exact Bayesian updates on real tasks.
This is the critical concept:
BAYESIAN UPDATE IS ONLY OPTIMAL IF:
Your model of the world is CORRECT
IF your model is WRONG (misspecified):
→ Optimal processing of a wrong model = Wrong answers
→ Heuristic shortcuts may accidentally compensate for model errors
Imagine you have a broken compass that points 10° off north.
Key Insight #3:
LLMs have MISSPECIFIED probabilistic models of the world.
Their internal representation of reality contains errors.
Exact Bayesian updating faithfully propagates these errors.
Heuristics accidentally correct for them.
A model is misspecified when:
The mathematical assumptions built into the model do not match how the real world actually works.
LLMs learn probability distributions from training data. These distributions may be:
| Issue | Example |
|---|---|
| Biased | Overrepresentation of certain viewpoints in training data |
| Outdated | World has changed since training cutoff |
| Incomplete | Some relationships between variables not captured |
| Conflated | Different concepts merged together |
LLM's internal world model ≠ Real world
Therefore:
Bayesian update on LLM's model ≠ Bayesian update on reality
The paper shows the gap can identify specific problems in LLM systems:
Gap consistently positive across many queries
→ LLM is overconfident in evidence
→ May need calibration or confidence dampening
Gap consistently negative
→ LLM ignores evidence (anchors too strongly to prior)
→ May need prompting strategies that emphasize new information
Gap varies wildly across similar queries
→ LLM is internally inconsistent
→ Unreliable for systematic reasoning tasks
Step 1: Define a hypothesis H and prior probability
Step 2: Present evidence E to LLM, record updated belief
Step 3: Calculate ideal Bayesian posterior
Step 4: Compute gap = LLM belief − Bayesian posterior
Step 5: Analyze pattern of gaps across many queries
Step 6: Identify systematic biases or inconsistencies
┌─────────────────────────────────────────────────────┐
│ THE COMPLETE PICTURE │
│ │
│ LLMs have internal probabilistic world models │
│ ↓ │
│ These models are MISSPECIFIED (imperfect) │
│ ↓ │
│ When updating beliefs with evidence: │
│ • Bayesian updates = optimal but on wrong model │
│ • Heuristic updates = imperfect but self-correcting│
│ ↓ │
│ Information Processing Gap measures the deviation │
│ ↓ │
│ Gap analysis = diagnostic tool for LLM reliability │
└─────────────────────────────────────────────────────┘
Test your understanding:
Q1: What is the information processing gap?
The deviation between an LLM's actual belief update and the ideal Bayesian update
Q2: Why might a non-Bayesian heuristic outperform exact Bayesian updating?
Because the LLM's underlying world model is misspecified — heuristics may compensate for model errors that Bayesian updates faithfully propagate
Q3: What does a consistently positive information processing gap tell you?
The LLM is systematically over-updating — overconfident in evidence
Q4: Why does this research matter for high-stakes domains?
Medicine, law, and science require rational belief updating under uncertainty — knowing LLMs fail at this consistently is critical for safe deployment
| # | Takeaway |
|---|---|
| 1 | Bayesian updating is the gold standard for rational belief revision |
| 2 | LLMs are not consistently Bayesian — they deviate in measurable ways |
| 3 | The information processing gap quantifies this deviation |
| 4 | Non-Bayesian heuristics sometimes win because LLM world models are misspecified |
| 5 | Gap analysis serves as a diagnostic tool for LLM reliability |