This page assumes nothing. Every letter, fraction, and piece of jargon the Hallucination mitigation parent note uses is built here from the ground up, in the order that lets each idea stand on the one before it.
Look at the figure: at each step the model holds up the text so far (the blue bricks) and picks the most plausible next brick (the cyan one). Nowhere in this loop is there a step called "check if this is true." That missing step is the entire problem.
The parent note writes things like Pr(s≥τ). Before that means anything, we need Pr.
Why the topic needs it. A model is never 100% sure of anything; it deals in likelihoods. Every measurement of hallucination — how often it lies, how confident it is — is a probability, i.e. a fraction of some bar.
Example from the parent: Pr(wrong∣s≥τ) = "out of only the questions the model chose to answer, what fraction did it get wrong?" We ignore the questions it skipped.
The parent writes: answer only when confidence s≥τ. Two new symbols.
Why the topic needs it. This single knob τ is how a model abstains. Without a cut-off there is no way to say "not sure" — the model would blurt out every guess, including the low-confidence lies.
The parent's risk formula uses 1[si≥τ]. This scary symbol is just a light switch.
The little subscript i just means "the i-th answer" — a name tag so we can talk about answer #1, #2, #3, etc. And y^i=yi means "the model's guess y^idoes not equal the true answer yi" — i.e. it got item i wrong. (The hat ^ always marks a prediction; no hat marks the real value.)
Zero case: if τ is so high that nothing is answered, the bottom sum is 0 → risk is undefined (you can't have an error rate among zero answers). This mirrors the N=0 case in §2.
Why the topic needs it. Every mitigation trick is ultimately about moving claims from "floating" to "grounded," and every measurement counts how many are grounded. Without atoms there is nothing to count.
Every arrow says "you need the left box to understand the right box." The whole graph pours into the single node Hallucination Mitigation — the parent topic.
Next stops once these are solid: RAG pipeline (grounding in practice), Prompt engineering (how instructions shape output), Chain-of-thought reasoning (making the model show work), and Evaluation metrics for LLMs (measuring all of the above). The confidence machinery ties back to RLHF and alignment.
Hide the right side; can you answer before revealing?
What a token is and why the model works one at a time
A small text chunk (word/word-piece); the model lays them like bricks, picking the next plausible one with no built-in truth check.
What Pr(E) means and its range
How likely event E is, a number from 0 (never) to 1 (always).
How to read Pr(A∣B)
"Probability of AgivenB" — restrict to cases where B holds, then measure A's frequency there.
Meaning of N and C in the hallucination rate
N = total atomic claims; C = how many are supported/correct.
Why NN−C divides by N
To put long and short answers on the same 0-to-1 scale (share of failing claims).
What the threshold τ does when you raise it
Fewer answers clear the fence → coverage drops, but risk among answered drops too.
What 1[condition] outputs
1 if the condition is true, 0 if false — turns yes/no into addable numbers.
What ∑i instructs you to do
Add the quantity over every item i.
What an atomic claim is and why we decompose
The smallest fully-checkable statement; decomposing gives a precise per-fact score instead of one blurry right/wrong.
What grounding means
Tying each claim to trusted evidence you can point at, vs. a free-floating (ungrounded) assertion.
Effect of temperature T→0
Greedy, deterministic decoding — removes sampling randomness but not knowledge-gap errors.
What calibrated confidence means
The confidence number matches real accuracy (0.8 confidence ⇒ ~80% correct).
Recall One-line self-test
If you can rebuild each Equipment-checklist answer without peeking, you're ready for the parent note's formulas and toolbox. If any felt shaky, reread that section's [!intuition] and figure.