AITruthX Research Note — Retrieval Integrity Series №1
New framework and platform — AITruthX
Retrieval, not the model.
A measured, all-real comparison of the AITruthX framework against Microsoft GraphRAG across three language models (Test 1) — and against every major RAG family, fourteen configurations from cross-encoder reranking to RAPTOR (Test 2) — showing where hallucinations actually come from.
Corpus atomic-bomb-demo · MDF corpusQuestion full Teller–Ulam designJudges Gemini 2.5 Flash + Claude Fable 5Verifier Claude Code, Fable 5 (ultra)
We asked one hard question of a fixed body of source text, and answered it ten different ways — the AITruthX framework, and three flavours of Microsoft GraphRAG, each driven by three different large language models. Every answer below is a real, live output from the actual engine. Then a neutral judge counted, for each one, exactly how many claims were not supported by the source. This note reports what happened and what it means for anyone who needs data they can trust.
The one-line result
The bottleneck is retrieval, not the model. AITruthX — running the cheapest model — answered with zero hallucinations at a fraction of the cost. Upgrading the language model (all the way to Claude Fable 5) did not rescue the weaker retrieval methods. And when we gave every method the same rich context, the strongest model was the most disciplined, not the most inventive.
Test 2 (recorded 20–21 Jul) stress-tested that result against every other major RAG family — cross-encoder reranking, parent-document, hybrid BM25+dense, HyDE, multi-query, an agentic LangGraph loop, and RAPTOR: fourteen configurations, three models, two judges, everything generated and judged twice. AITruthX remained the only clean row on the board — and a claim-by-claim audit showed why: what a chunk leaves out, the model invents.
What AITruthX is — the framework searches, the model only speaks
AITruthX uses a language model for one job only: putting what the framework already found into clear, correct language — the wording and the grammar. The model does not search, and it does not decide what the answer is. That work is done by the framework itself, over approved source material. Because the model is only writing, it can be a cheap, open-source-class base model instead of an expensive frontier one.
AITruthXThe model only speaks
A cheap, open-source base model turns the passage the framework retrieved into fluent language. It never searches, never reasons about what is true, and never chooses the answer — so it has no opening to invent one.
Microsoft GraphRAG & other RAGThe model does everything
The language model is asked to search, reason over whatever it pulled back, judge what matters, and write. Accuracy therefore rises and falls with the model — which is why the usual fix is a bigger, costlier one.
That difference is the whole subject of this study, and it is why AITruthX can run on the cheapest model in the comparison and still be the only engine to reach perfect grounding: correctness comes from the retrieval, not from the model's judgement.
What's next for the framework
We're building AITruthX into a platform where anyone can upload their own data and get grounded, LLM-quality answers from it — at the cost of the cheapest model, with output quality rivaling the most expensive.
PlatformYour own account
Upload your raw data and query it like an LLM.
IntegrateFull API access
Plug AITruthX into your own apps and workflows.
DataData-for-training service
Unlike today's walled-off ecosystems, use your own grounded data to train models, on your terms.
CommunityAn open social layer
A first-of-its-kind space where the community can review and validate performance results openly.
The rest of this note is the evidence behind that claim — the experiment, the numbers, and every answer and flagged claim in full.
Test 2 · recorded 20–21 Jul 2026
Different RAG tools, same question — every major family vs AITruthX
Test 1 (below) showed a better model doesn't fix weak retrieval. Test 2 asks the harder question: does a better retriever fix it? Fourteen configurations across seven retrieval families — implemented to LangChain-standard formulas, including a real LangGraph agent and a RAPTOR summary tree — on the same corpus, the same broad question, and the same two judges as Test 1. Everything was generated and judged twice.
01What Test 2 adds — the rest of the RAG world
Reviewers of Test 1 rightly asked: Microsoft GraphRAG is one family — what about the standard fixes? Two in particular are the textbook rebuttals: cross-encoder reranking (precise top-k instead of noisy stuffing) and parent-document retrieval (resolve to a unit, return its bounded neighbourhood — structurally the closest rival to MDF). Test 2 runs both, plus every other major family:
Microsoft GraphRAGKnowledge graph
Microsoft's open-source (MIT-licensed) graph-RAG library — entity/community retrieval, local search and global map-reduce (github.com/microsoft/graphrag). Fully benchmarked in Test 1 below across three models — and carried into Figure 1 so every family sits in one table. In the wild: Microsoft's own Azure AI ecosystem; LinkedIn (a Microsoft company) has published a knowledge-graph RAG system for its customer support; Neo4j has built a whole GraphRAG ecosystem around the idea, and Writer's enterprise platform is knowledge-graph based.
DenseVector top-k
Straight embedding search, top-3 chunks stuffed. The control. In the wild: the default first stage almost everywhere — ChatGPT's file search and most vector-database stacks (Pinecone, Weaviate, pgvector); Spotify built and open-sourced its own vector-search engine (Voyager) for recommendations; Notion and Gong are documented vector-retrieval deployments (Pinecone case studies).
RerankCross-encoder
Dense top-10 re-scored by bge-reranker-base; top-1 and top-3 kept — plus three chunking regimes (overlap, no-overlap, heading-prefixed). In the wild: Cohere sells reranking as a flagship product; Azure AI Search's semantic ranker and Amazon Bedrock knowledge bases offer cross-encoder-style reranking; OpenAI's file-search pipeline documents reranked retrieval; Oracle bundles Cohere's models across OCI under a publicly announced partnership.
Parent-docHierarchical
Small chunks matched, whole parent section returned — with and without neighbourhood expansion. In the wild: the standard “small-to-big” pattern in LangChain and LlamaIndex production guides; common in enterprise document QA, though specific deployments are rarely disclosed — notably, Amazon Bedrock ships it natively as “hierarchical chunking.”
HybridBM25 + dense
Keyword and vector rankings fused (RRF), top-6 — the production default at most shops. In the wild: the documented default at Elastic and Azure AI Search; Anthropic's own Contextual Retrieval recipe for Claude pairs BM25 with embeddings; Amazon Bedrock supports hybrid search out of the box; Weaviate and MongoDB Atlas ship hybrid natively.
Query-sideHyDE & multi-query
Rewrite the query (3 variants, RRF-fused) or embed a hypothetical answer (HyDE), then retrieve. In the wild: query rewriting/expansion is documented in OpenAI's file-search and Google Vertex AI Search pipelines; multi-query ships as a standard LangChain retriever; Perplexity's answer engine reportedly leans heavily on query reformulation.
AgenticLangGraph loop
A real CRAG-style graph built on LangGraph: retrieve → grade sufficiency → rewrite → retrieve again → answer. In the wild: LangGraph publicly lists Uber, LinkedIn, Replit and Elastic among adopters; the retrieve-assess-retrieve pattern is approximately what powers the “deep research” modes in ChatGPT and Gemini; GitLab (Duo) and Klarna are further documented LangChain-stack adopters.
RAPTORSummary tree
Chunks clustered and summarised into tree nodes; retrieval over chunks + summaries together (RAPTOR paper). In the wild: a newer Stanford method shipping as LlamaIndex packs; we found no named production deployments yet — early-stage by any measure.
02A new metric: coverage — so “clean by saying less” can't hide
A fair criticism of grounding alone: a method could score 1.00 by returning one narrow sentence. Test 2 therefore adds coverage — each answer is scored against 35 frozen source facts (fixed before any run): how many does the answer actually convey? A clean-but-empty answer now shows up as exactly that. As the table shows, AITruthX's 1.00 grounding comes at 0.90 coverage — it says as much of the real material as the stuffing methods do.
Use in-depth mode
Every AITruthX result on this page is the platform's in-depth mode — the one-click deep walk that reads across the whole topic. It is what reaches 1.00 grounding at 0.90 coverage. A quick normal reply is deliberately conservative on a broad question like this one: in a live run it covered just 7% of the source facts and deferred, while in-depth covered 81–87% (both judges) and stayed grounded. For the most complete, correct answer, always use in-depth.
Figure 1 · TEST 2 — every RAG family, same questionruns 2026-07-20/21 · generator: gemini-2.5-flash unless the row names another model · same corpus & question as Test 1 · 2 judges × 2 modes × 2 runs
Engine — retrieval + model
Grounding
Flags · lenient*
Flags · strict*
Coverage
Calls
AITruthX MDF · in-depth mode · cheapest base modelin-depth mode (one click) — the deep walk that gives the most complete answer · aitruthx.com
1.00
1
2–5
0.90
1
RAPTOR summary tree top-6used by: Stanford method · LlamaIndex packs
0.94
0–4
19–29
0.94
1 (+5 build)
RAPTOR summary tree top-6 · Claude Opus 4.8
0.95
0–3
18–26
0.94
1 (+5 build)
RAPTOR summary tree top-6 · Claude Fable 5
0.79
0–18
25–58
0.94–0.96
1 (+5 build)
HyDE top-3used by: OpenAI file search · Google Vertex AI
Rerank top-1 · headed chunks chunking-ablation variant of rerank
0.81–0.83
0–19
15–53
0.89–0.97
1
Rerank top-1 · no-overlap chunks chunking-ablation variant of rerank
0.75–0.86
0–15
23–49
0.86–0.91
1
Multi-query top-6used by: LangChain standard · Vertex AI · Perplexity (reported)
0.81
0–10
14–25
0.94
2
Parent-document used by: LangChain/LlamaIndex pattern · Amazon Bedrock
0.83–0.84
0–15
26–55
0.79–0.83
1
Microsoft GraphRAG local & global · all 3 modelsused by: Azure AI · LinkedIn · Neo4j · Writer
Fully benchmarked in Test 1 below: grounding 0.67 at best (local · Gemini 2.5 Flash, 1 call) down to ~0 for the global loop (7 calls) — across all three models. Strict-mode flags and coverage were not part of Test 1's protocol, so its numbers live in Figures 4–6 rather than these columns.
Sorted by grounding. *All values are min–max ranges across two judges (Gemini 2.5 Flash and Claude Fable 5) × two modes (lenient / strict) × two full generation runs — individual scores swing ±0.1 between runs, which is exactly why single numbers should never be trusted. Lenient counts only clear hallucinations; strict counts every claim not explicitly in the reference. RAPTOR — a bounded summary-tree, structurally the closest rival — is the best baseline at 0.94, yet still carries 19–29 strict flags against AITruthX's 2–5. The AITruthX row is Test 1's audited answer re-scored with the new coverage metric. The Microsoft GraphRAG row is a pointer, not a data row: that family was fully benchmarked in Test 1 under Test 1's protocol, so its complete three-model results live in Figures 4–6 below. Premium-model rows (Claude Opus 4.8 / Fable 5, added 21 Jul) sit directly under their family's Gemini row; the full model-swap analysis is Figure 2. Note on the AITruthX row: every AITruthX figure on this page is the platform's in-depth mode — the one-click deep walk over the whole topic (this is what produces the 1.00 grounding at 0.90 coverage; the audited depth is 1.00). Always use in-depth mode for the most complete answer — a live platform run on this same question confirms the gap: a quick normal reply covered just 0.07 of the source facts, while in-depth covered 0.81 (Claude Fable 5 judge) – 0.87 (Gemini judge), staying grounded throughout.
How to read the table — what each number means
Grounding is the fraction of an answer's claims actually supported by the source (1.00 = nothing invented). Flags is the raw count of claims a judge marked unsupported — lenient counts only clear hallucinations, strict counts every claim not explicitly backed, however small. Coverage is completeness: how many of the 35 frozen source facts the answer conveys. Calls is the number of LLM calls the method needed. A single number means the judges agreed; a range is the min–max across judges, modes, and runs.
Which metric matters most — our genuine ranking
1. Grounding / hallucination flags come first. An invented "fact" is a defect that can silently mislead you; you can't detect it without checking the source. 2. Coverage comes second. A missing fact is an omission — visible, and recoverable by asking again (or by using in-depth mode). 3. Calls/cost last. On that honest weighting (grounding × 0.7 + coverage × 0.3), the leaderboard is: AITruthX 0.93–0.97 · RAPTOR 0.94 · HyDE 0.93 · Agentic 0.93 · Hybrid 0.88–0.91 · the rest 0.78–0.93. But no blended score should hide the flags column: AITruthX is the only row whose strict-flag count (2–5) is near zero — every other row carries 8–63, and that count is the actual number of unsupported claims in the answer.
Who judged, who verified — full disclosure
Test 1: judged by Gemini 2.5 Flash (its stage two added Claude Fable 5 as an independent second judge); the whole run was executed & verified by Claude Code (Fable 5). Test 2: every answer was judged by both Gemini 2.5 Flash and Claude Fable 5, in lenient and strict modes, over two runs — and the pipeline was executed & verified by Claude Code (Fable 5 · ultra). Yes, that means Claude is both a judge and the verifier in Test 2 — we disclose it, and it is exactly why an independent second judge (Gemini) scores every answer alongside, with disagreements shown rather than hidden. Example of such a disagreement, on our own row: Fable scores the AITruthX in-depth answer's coverage at 0.90, while Gemini's passes score it 0.78 — which is why the fairest reading of any cell on this page is the range across both judges, for us exactly as for every baseline.
Read the coverage column first: almost everyone covers 0.8–0.94 of the source facts, including AITruthX at 0.90 — so no row is winning by saying less. Then read grounding: the only 1.00 in either test is still the first row. The best chunk-based methods (RAPTOR, HyDE, the agent, hybrid) get close — 0.90-something — but close means several invented claims per answer, every time, in every run.
03Premium models on the same retrievals — the Test 1 result, repeated harder
We re-generated the four decisive configurations with Claude Opus 4.8 and Claude Fable 5 — the exact same retrieved context, only the writer changes. If hallucination were a model-quality problem, the expensive models should clean it up.
Figure 2 · TEST 2 — swapping in premium models does not helpsame retrieved contexts as Figure 1 rows · generators: claude-opus-4.8 / claude-fable-5
Engine — retrieval + model
Grounding
Flags · lenient
Flags · strict
Coverage
AITruthX MDF · in-depth mode · cheap base model
1.00
1
2–5
0.90
Rerank top-1 Claude Fable 5
Refused — declined to elaborate a full design from 395 characters of context. The most calibrated response any chunk pipeline gave.
On identical contexts, the premium models graded the same or worse than cheap Gemini 2.5 Flash (0.83–0.85 on these rows in Figure 1) — they wrote 2–2.5× longer answers from the same evidence, and the extra length is extra exposure. A stronger model brings more of its own knowledge, and with incomplete chunks that knowledge becomes unsupported content. Test 1's conclusion, confirmed against the strongest rebuttal baselines. Extension (21 Jul): the four best baselines — RAPTOR, HyDE, the agentic loop and hybrid — were also regenerated with both premium models. Seven of the eight graded the same or worse than their cheap-Gemini versions, writing 2–3× longer answers. The one exception we report plainly: RAPTOR + Opus 4.8 reached 0.95 (vs 0.94 on Gemini) — the strongest chunk-world row in either test, and still 18–26 strict flags against AITruthX's 2–5. Note: the AITruthX reference row is the platform's in-depth mode (one-click deep walk) — the mode users should choose for complete answers; a live run confirmed it covers 0.81–0.87 of source facts vs 0.07 for a quick normal reply, all while staying grounded.
04Where the hallucinations actually come from — a claim-by-claim audit
Counting flags says how much; it doesn't say why. So we audited every flagged claim from every Test 2 configuration against the exact context its model was given, and classified each one: was it actually in the retrieved text? Stitched across chunk borders? Or invented outright — no basis in the context at all?
Figure 3 · TEST 2 — the provenance audit: incomplete context invites inventionclaim-provenance audit · judge: gemini-2.5-flash · cross-checked by claude-fable-5
76% of everything the judges flagged was invented — imported from the model's training data because the retrieved context didn't contain it. Boundary-stitching and overlap artifacts were nearly absent. And the gradient is the mechanism made visible: the thinner the context (top rows), the more the flags are pure invention; the fuller the context (bottom rows), the more the flags are legitimately-sourced text that merely falls outside the narrow reference. A few audit passes returned unparseable output and are excluded; the two judges agree on every parseable config.
The mechanism, in one sentence
Retrieval doesn't need to be narrow; it needs to be complete. Chunks are neither — and what a chunk leaves out, the model happily invents. Chunk-based retrieval fails not at the cut but through what the cut leaves out: hand a model an incomplete fragment and it finishes the story from its own training data. That is why no chunk family got clean, why premium models made it worse, and why AITruthX's slot families — complete units of meaning, with nothing missing to backfill — are the only row at 1.00 in both tests.
05Findings of Test 2
iNo retrieval family produced a clean answer
Fourteen configurations, seven families, two full runs each — and not one clean answer anywhere. The best (RAPTOR, HyDE, the LangGraph agent) reached 0.92–0.94, which sounds close until you read it as what it is: several invented claims in every answer, every time. For a system whose product is trust, "close" is the failing grade.
iiBounding retrieval does not bound generation
The textbook rebuttal to Test 1 was that a top-1 reranker is "as bounded as MDF." It isn't: given one 395-character chunk, the model wrote 1,000+-token answers — ~70 claims manufactured around 4 supported ones. Boundedness of input says nothing about boundedness of output; only completeness of the retrieved unit does that.
iiiLoops and trees pay more for the same problem
The agentic loop spent 6 LLM calls and 64 seconds (vs 1 call, ~8s) and mostly re-retrieved the same chunks. RAPTOR spent 5 extra summarisation calls building its tree. Both still flagged 12–29 claims under strict judging. Extra machinery multiplied cost, not integrity.
Honest caveats on Test 2
Same discipline as Test 1. One query, one small corpus — this is mechanism-scale evidence, not production-scale. Scores swing ±0.1 between identical runs, so every number above is a range across judges, modes, and runs; anyone quoting a single decimal from this page is over-reading it. Judge temperaments differ: Fable's lenient pass flags almost nothing (0–2) where Gemini's flags 3–22 — but the strict passes and the rankings agree, and AITruthX is lowest in every column under both. The coverage checklist derives from the structured reference and did not favour AITruthX — several baselines out-covered it. The AITruthX row is Test 1's audited answer re-scored for coverage, not a fresh generation. All raw outputs — every answer, every judge pass, every audited claim — are preserved and available on request.
Test 1 · recorded 18–19 Jul 2026
Same RAG tool, different models — Microsoft GraphRAG vs AITruthX
One retrieval suite (Microsoft GraphRAG: local search, global map-reduce, and a flat-stuffing baseline) driven by three different language models — Gemini 2.5 Flash, Claude Opus 4.8 and Claude Fable 5 — against the AITruthX framework on its cheap base model. The question Test 1 answers: does a better model fix weak retrieval?
06What we actually tested
All ten runs read from the same source corpus (an encyclopedia-level bucket about early nuclear-weapon design, used purely as a fixed test document). All ten answered the same broad question:
“Explain the complete Teller–Ulam thermonuclear design step by step, from the fission primary to the final total yield, including every stage and mechanism involved.”
We chose a deliberately big concept — a whole design, not a single fact — because breadth is exactly where retrieval methods either hold together or start inventing. What differs between the ten runs is only two things: how the source is retrieved, and which model writes the final answer.
07The four retrieval methods, in plain terms
Three of these are Microsoft GraphRAG's real search modes — Microsoft's open-source (MIT-licensed) graph-RAG library, which is exactly why we could run the genuine pipelines rather than a re-implementation; the fourth is the AITruthX framework. Same corpus, same judge — only the retrieval logic changes.
The framework
AITruthX (MDF)
The Meaningful Data Framework resolves the question to the exact meaning unit in the source, then reads only that unit and its bounded neighbourhood. The framework carries the grounding; a small open-source-class model just phrases it.
1 model call · answered by a cheap base model (here Gemini 2.5 Flash; production target: a LLaMA-70B-class open model).
Microsoft GraphRAG · local
Local entity search
Embeds the question, finds the nearest entities in a knowledge graph, and pulls their one-hop neighbourhood (relationships + community summaries) into a single prompt.
1 model call · retrieval quality depends entirely on the pre-built entity graph.
Microsoft GraphRAG · global
Global map–reduce loops
Runs the question against every community in the graph — one “MAP” call each to score and extract a partial answer — then a final “REDUCE” call stitches the survivors together. The loop is the cost.
7 model calls here (6 MAP + 1 REDUCE) · and the loop count grows with the corpus.
Baseline · flat
Flat “no-loop” stuffing
The classic RAG baseline: embed the question, dump the top-20 nearest text chunks plus neighbours into one big prompt, and let the model sort it out. We use it to isolate model quality at equal, rich context.
1 model call · biggest prompt · most room for the model to embellish.
08How the experiment ran — the full process
Nothing here is a paraphrase or a remembered answer. For each cell in the results table we executed the real engine prompts against the real database, captured the model's actual output, and measured tokens and calls directly. Here is the exact pipeline and where each credential came from.
Google Gemini (base plan API key). Ran the AITruthX base model, the Gemini-driven Microsoft GraphRAG and flat answers, all text embeddings (gemini-embedding-001), and the neutral judge — model gemini-2.5-flash.
Claude Opus 4.8 & Claude Fable 5 (Claude Max plan, via Claude Code CLI). After a direct Anthropic-API purchase failed, we authenticated the Claude Code command-line tool on the Max plan and ran each Claude model as a fresh, headless process with zero knowledge of this project — fed byte-identical engine prompts. This is what makes the Claude columns real rather than assistant guesses.
Same prompts, same data, same judge across every model. The only variable inside a Microsoft GraphRAG row is the model; the retrieval context is held fixed.
Why this matters for credibility
The entire run was executed and fact-checked through Claude Code running Fable 5 — Anthropic's most capable widely-released model and a tool trusted specifically for verification work. Every number below can be traced to a live engine call, not to a chatbot's opinion of what the answer should be.
09Results
Test 1 ran in two stages
Stage one (Figures 4 & 5): the broad comparison across all ten engine/model combinations, judged by Google Gemini — measuring grounding, depth, tokens, and calls. Stage two (Figure 6, §14): a separate, controlled re-judging of the four full-depth answers by two independent judges — Gemini and Claude Fable 5 — each in a normal and a strict pass, to check whether stage one's conclusion survives a different judge. It does.
Ten real runs, one broad question. Grounding is the fraction of the answer's claims that the source actually supports; flagged claims is the raw count of claims it does not; depth is how completely the answer walks the full design (0 = one-liner, 1 = every stage).
Figure 4 · TEST 1 — full results, broad questionrun 2026-07-18 · atomic-bomb-demo · judge: gemini-2.5-flash
Sorted by grounding. AITruthX (top row) is the only perfectly-grounded engine — reached with the fewest tokens, one call, and the cheapest model. Global-loop rows always cost 7 calls; the loop count rises as the corpus grows. *Flagged claims are shown as a range because the count is not stable — the same answer draws more flags from a stricter judge pass, and longer answers draw disproportionately more (see §10 and the Appendix). Grounding, a fraction, is far steadier — treat it as the integrity signal and the flag count as directional.
Read the table top-down and a pattern jumps out. The only perfectly-grounded row is AITruthX on a cheap model; flat stuffing on Fable 5 comes next at 0.94 — but AITruthX gets there at roughly a quarter of the tokens. Everything in the Microsoft GraphRAG block sits near the bottom regardless of which model wrote it: swapping Gemini for Opus for Fable barely moves grounding, because the context those methods retrieved was thin or tangential to begin with.
We audited AITruthX on itself
To be sure the framework holds to its own standard, we ran its full-engine, in-depth answer through the identical strict judge. Result: grounding 1.00 · depth 1.00 · zero factual hallucinations — the only engine to reach full depth and full grounding at once. Every physical claim was supported (X-ray coupling, ablative compression, spark-plug ignition, lithium-6 fusion, the 17.6 MeV release, U-238 jacket fission, total yield). The one line the judge marked was not a false fact but the engine's own short note of where the answer sits in the source — a navigation aid, not a claim about the world.
Isolating the model: the flat-stuffing rows — and why the count is noisy
The flat rows saw the same rich context, so they should isolate pure model quality. When we tried to rank the three models by flag count, we found we couldn't — the number moves too much between judge passes to trust. That instability is itself the finding:
Figure 5 · TEST 1 — same context, the flag count is unstableflat no-loop · identical prompt · counts across strict judge passes
All three answered at full depth. But the flag count is not a reliable ranking of models: Fable 5's swung from 4 to 27 across two strict passes, because it wrote the longest, most detailed answer and detail draws flags. Grounding — a fraction, not a raw count — barely moves (0.88–0.96) and is the metric to trust. The honest reading is not “model X is cleanest” but “longer, unbounded answers accrue more scope-exceeding claims, and how many depends on the judge.” The Appendix lists the actual flagged claims for every model so you can see they are overwhelmingly real details from the retrieved source, not fabrications.
10What “accuracy” means here — and an honest note
In our earlier in-product comparison screen, the single “accuracy %” figure was a blended display metric: accuracy = grounding × 0.6 + relevance × 0.4. It is convenient for a dashboard, but it mixes two different things. In this note we report the components separately and treat grounding — the fraction of claims the source supports — as the real integrity number, because that is what “does it hallucinate?” actually measures. Relevance and depth are reported alongside, never folded in silently.
Three honest caveats on the judge
First, the ground truth was the MDF's structured facts; many claims the judge flagged do appear elsewhere in the source's raw paragraphs — grounded in the corpus, but outside the exact slice the judge compared against. The Appendix shows this directly: nearly every flagged item is a real detail the model was handed, not something invented. Second, for the Microsoft GraphRAG rows the judge sometimes flagged the answer's honest admission that its retrieved context was thin — saying “my context lacks X” is not the same as inventing X. Third, and most important, the flag count is unstable: on repeated strict passes the same flat-Fable answer scored anywhere from 4 to 27, because a longer, more detailed answer offers more surface for a stricter pass to flag. So we report flag counts as ranges and lean on grounding (a fraction, which barely moves) as the integrity metric. None of this changes the token or call counts, which are exact, or the one robust conclusion: only AITruthX's bounded answer stays reliably near zero.
11Three findings
iRetrieval is the bottleneck, not the model
This is the headline. Microsoft GraphRAG local and global stayed near the floor whether Gemini, Opus, or Fable wrote the answer. The framework that retrieved the right passage — AITruthX — reached top grounding on the cheapest model available. You cannot buy your way out of bad retrieval with a bigger model; you fix retrieval.
iiBigger concepts break stuffing first
The broad “explain the whole design” question is precisely where flat stuffing bled: flat-Opus went from a handful of unsupported claims on a narrow question to 19 on this one. The wider the ask, the more a permissive method fills gaps with plausible-sounding invention. AITruthX held at zero because it never left the bounded entry.
iiiA stronger model does not mean “reasoning wins” — answering your question directly
You asked whether the results show Gemini's base model is best for reasoning, even against Claude's biggest models. They do not — and the honest answer is stronger than a leaderboard. When we tried to rank the three big models by how many unsupported claims they made, the number would not hold still: repeated strict passes put flat-Fable anywhere from 4 to 27, and the ranking among the models flipped between passes. The reason is that the count is confounded by answer length — the more thorough the answer, the more specific details a strict pass can mark as “outside the exact reference,” even when those details are real and came from the retrieved source. So no model here is cleanly “best for reasoning” on this evidence; that framing doesn't survive contact with the data. What does hold across every pass is two things: all the big models keep grounding high (0.88–0.96), and only AITruthX reaches a perfect 1.00 — on the cheapest model, because its answer is bounded to exactly what the source supports, so there is almost nothing for any judge to flag. The grounding comes from retrieval structure, not from hoping a bigger model behaves. That stability is the product.
For the record, the Gemini model used throughout was gemini-2.5-flash for all answers and judging, with gemini-embedding-001 for embeddings.
12One more thing we saw: the refusal
On this broad, weapons-adjacent question, the real Claude Opus 4.8 global run partially declined to reconstruct the full staging — a safety response. AITruthX answered fully, because its context is a bounded, pre-approved slice of encyclopedia-level source text rather than an open-ended “reconstruct the weapon” request. Controlled retrieval doesn't only reduce hallucination; it keeps legitimate answers deliverable.
13Why this becomes a product: grounded training data
Here is the commercial point the experiment sets up. Teams building their own models increasingly harvest answers from top LLMs to assemble training data for a target question — but that harvested data can hallucinate, and providers increasingly throttle or refuse bulk, repetitive querying (often suspected to be model-training use). AITruthX offers the alternative: training pairs that are grounded in the customer's own corpus by construction, so they don't invent.
Each pair is delivered in two modes:
Mode 1Normal answer
The standard grounded response — exactly how the engine replies to that prompt, anchored to the source entry.
Mode 2Auto-depth answer
The engine automatically runs its full “go-deeper” expansion — every depth level, no button-clicking — to produce the most complete grounded answer for that prompt. We do the depth walk for the buyer, because it is training data.
Prompts come either from a short list the customer supplies, or are generated internally per MDF entry. The customer submits their data through the ordinary ingestion flow and sees it land correctly; the training-data job itself is run from the admin side and only the finished, downloadable data file is returned to their profile. It is priced as a data product, separate from ordinary usage cost.
The proof step on the roadmap
The endgame is to fine-tune an open-source model on AITruthX training data and show it answers a held-out question more faithfully than the same model trained on Microsoft GraphRAG output or on raw Gemini/Claude harvest — presenting both the framework's data answer and the trained model's answer side by side. We build this admin-side first, then open it to customers.
14How the judging was done — two judges, two strictness levels
Because a single count can mislead, we did not judge once. We scored the same four full-depth answers four ways: with Google Gemini 2.5 Flash and, independently, with Claude Fable 5 — and each judge in two modes. A normal pass counts only clear hallucinations (statements that plainly go beyond the source, ignoring reasonable rephrasing). A strict pass enumerates every claim, however small, that isn't word-for-word in the reference. The earlier figures in this note began with the normal, in-depth reading; this section adds the strict reading and a second, independent judge on top.
Running two separate model families as judges is the safeguard: if the conclusion only held under one judge, it wouldn't be trustworthy. Here is every count — and the one row that stays near the floor no matter who judges or how strictly.
Above: the performance of the four full-depth answers (the same metrics reported for Figure 1). All four reached full depth (1.00); AITruthX did it at the fewest tokens, lowest cost, and true 4-second latency. Below: those same four answers scored for hallucinations by two independent judges, each in a normal and a strict pass —
The same four answers, scored by two independent model judges at two strictness levels. Read across any row and the count swings 3–5×; read down any column and the model ranking reshuffles — proof that a raw hallucination count is a noisy metric. What holds steady is AITruthX's spread: 1, 2, 1, 5 — the tightest range and the lowest ceiling of any answer, while the flat answers climb as high as 33. AITruthX is the lowest or tied-lowest in three of the four columns; in the fourth — Claude's most lenient pass — flat-Fable's own long answer was scored 0 and AITruthX came within one claim of it. No other answer stays near the floor across every judge. Green marks the lowest value in each column (we highlight it honestly, even when it isn't AITruthX's).
AAppendix — every answer, every judge, every flagged claim
Complete transparency behind Figure 6. For each of the four answers: first the exact text the engine returned, then — listed separately — every claim flagged by each of the four judge passes (Gemini normal, Gemini strict, Claude Fable 5 normal, Claude Fable 5 strict), each with the reason it was flagged. Read these and you can see for yourself why the counts move so much: nearly every flagged item is a real detail drawn from the retrieved source that simply falls outside the narrow structured reference — not an invention. That is why longer answers accrue more flags, and why grounding (a fraction) is the metric to trust over any single raw count.
The Teller-Ulam design is a multi-stage thermonuclear process that begins with the detonation of a fission primary, which emits intense soft X-rays. These X-rays are channeled by a radiation case lined with re-emitting material, creating X-ray pressure that ablates the secondary stage's outer surface and compresses it. Inside the compressed secondary, a plutonium "spark plug" fissions, initiating the fusion of the surrounding lithium-6 deuteride. This fusion reaction yields tritium and deuterium, which then fuse to release 17.6 MeV of energy and an additional neutron. These fusion neutrons cause the U-238 jacket to fission, generating the majority of the weapon's total yield, which can range from kilotons to tens of megatons.
This entry comes under the topic of the fundamental Teller-Ulam principle, which is part of the chapter on the design principles of thermonuclear weapons. The chapter, in turn, is contained within the "Atomic Bomb" bucket, which outlines fundamental principles of nuclear fission, weapon designs, and their historical context and impact.
Gemini 2.5 Flash — normal judge1 flagged
This entry comes under the topic of the fundamental Teller-Ulam principle, which is part of the chapter on the design principles of thermonuclear weapons. The chapter, in turn, is contained within the "Atomic Bomb" bucket, which outlines fundamental principles of nuclear fission, weapon designs, and their historical context and impact.why flagged: The ground truth does not mention anything about "topics," "chapters," or "buckets" related to the Teller-Ulam design or thermonuclear weapons.
Gemini 2.5 Flash — strict judge2 flagged
The Teller-Ulam design is a multi-stage thermonuclear processwhy flagged: The ground truth states it is a "multi-stage process of fission and fusion" but does not explicitly state it is a "multi-stage thermonuclear process".
This entry comes under the topic of the fundamental Teller-Ulam principle, which is part of the chapter on the design principles of thermonuclear weapons. The chapter, in turn, is contained within the "Atomic Bomb" bucket, which outlines fundamental principles of nuclear fission, weapon designs, and their historical context and impact.why flagged: This entire paragraph is not supported by any ground truth.
Claude Fable 5 — normal judge1 flagged
The entry belongs to a topic "fundamental Teller-Ulam principle" within a chapter on "design principles of thermonuclear weapons" inside an "Atomic Bomb" bucket covering fission principles, weapon designs, and historical context/impactwhy flagged: The ground truth contains no topic/chapter/bucket hierarchy or any such descriptions; this entire organizational framing goes well beyond what the ground truth supports.
Claude Fable 5 — strict judge5 flagged
The fusion reaction yields deuteriumwhy flagged: Ground truth states only tritium is yielded (from lithium-6 capturing a neutron); deuterium is a pre-existing component of the lithium-6 deuteride fuel, not a reaction product.
This entry comes under the topic of the fundamental Teller-Ulam principlewhy flagged: No ground truth line describes any topic-level placement of the entry.
The topic is part of a chapter on the design principles of thermonuclear weaponswhy flagged: No ground truth line mentions a chapter or its subject.
The chapter is contained within the "Atomic Bomb" bucketwhy flagged: No ground truth line mentions a bucket or its name.
The "Atomic Bomb" bucket outlines fundamental principles of nuclear fission, weapon designs, and their historical context and impactwhy flagged: No ground truth line describes the bucket's contents or scope.
The Teller-Ulam thermonuclear design, the basis of all modern hydrogen bombs, is a multi-stage process that leverages radiation transport to achieve immense yields. Here's a step-by-step breakdown:
1. **Fission Primary Detonation:** The process begins with the detonation of a fission primary. This primary is typically a boosted fission device, meaning a small amount of fusion fuel (deuterium and tritium) is introduced to enhance its efficiency and yield. The primary's detonation radiates intense soft X-rays.
2. **Radiation Transport and Channeling:** These intense soft X-rays, existing as photons at millions of Kelvin, fill the inside of a radiation case that encloses both the primary and the secondary stage. The radiation case, often lined with materials that facilitate re-emission, channels these photons around the secondary stage. This radiation transport is crucial, as it's the primary mechanism for energy transfer, not direct shock coupling.
3. **Secondary Compression (Radiation Implosion):** The photons reach the secondary stage far faster than any mechanical shockwave. They exert immense ablation pressure on the secondary's surface, orders of magnitude greater than what chemical explosives could produce. This ablation pressure causes the outer layers of the secondary to be rapidly heated and ablated, creating a powerful inward force. This process swiftly and symmetrically compresses the secondary to extremely high densities, known as fusion densities, within tens of nanoseconds. The case material efficiently re-radiates this energy, maintaining a hot energy bath and ensuring the rapid and symmetric implosion of the secondary.
4. **Spark Plug Fission:** Within the highly compressed secondary, there's a plutonium "spark plug." The extreme compression from the radiation implosion causes this spark plug to become supercritical and undergo fission.
5. **Fusion Ignition:** The fission of the plutonium spark plug generates a burst of energy and neutrons. This energy ignites the fusion fuel surrounding the spark plug, typically lithium-6 deuteride. The fusion reaction, primarily between tritium and deuterium, releases 17.6 MeV of energy and an additional neutron.
6. **U-238 Jacket Fission (Tertiary Stage/Main Yield):** The high-energy neutrons released from the tritium-deuterium fusion then strike the surrounding U-238 jacket (often referred to as the tamper or pusher). U-238, normally not fissile with thermal neutrons, undergoes fission when bombarded by these fast fusion neutrons. This fission of the U-238 jacket produces the vast majority of the weapon's total yield, which can range from kilotons to tens of megatons.
In summary, the Teller-Ulam design uses a fission primary to generate X-rays, which then compress and ignite a fusion secondary. The fusion reaction, in turn, produces high-energy neutrons that cause a final fission stage in a U-238 jacket, leading to the weapon's immense total yield.
Gemini 2.5 Flash — normal judge9 flagged
These intense soft X-rays, existing as photons at millions of Kelvin, fill the inside of a radiation casewhy flagged: The ground truth states that intense soft X-rays are radiated by the fission primary, and that the radiation case is lined with material that re-emits and channels X-rays. It does not mention the X-rays existing as photons at millions of Kelvin.
The radiation case, often lined with materials that facilitate re-emission, channels these photons around the secondary stage.why flagged: The ground truth states that the radiation case is lined with material that re-emits and channels X-rays. It does not state that the radiation case is often lined with materials that facilitate re-emission.
The photons reach the secondary stage far faster than any mechanical shockwave.why flagged: The ground truth does not mention the speed of photons relative to mechanical shockwaves.
They exert immense ablation pressure on the secondary's surface, orders of magnitude greater than what chemical explosives could produce.why flagged: The ground truth states that X-ray pressure ablates the outer surface of the secondary. It does not compare this pressure to what chemical explosives could produce.
This ablation pressure causes the outer layers of the secondary to be rapidly heated and ablated, creating a powerful inward force.why flagged: The ground truth states that ablation is the process by which the outer surface of the secondary is removed by X-ray pressure, and that compression is the result of ablation on the secondary stage. It does not explicitly state that the outer layers are rapidly heated, or that a powerful inward force is created.
This process swiftly and symmetrically compresses the secondary to extremely high densities, known as fusion densities, within tens of nanoseconds.why flagged: The ground truth states that compression is the result of ablation on the secondary stage. It does not mention "fusion densities" or a timeframe of "tens of nanoseconds."
The case material efficiently re-radiates this energy, maintaining a hot energy bath and ensuring the rapid and symmetric implosion of the secondary.why flagged: The ground truth states that the radiation case is lined with material that re-emits and channels X-rays. It does not mention maintaining a "hot energy bath" or ensuring "rapid and symmetric implosion."
The fusion reaction, primarily between tritium and deuterium, releases 17.6 MeV of energy and an additional neutron.why flagged: The ground truth states that tritium and deuterium fuse, releasing 17.6 MeV and an additional neutron. It does not state that the fusion reaction is "primarily" between tritium and deuterium.
The high-energy neutrons released from the tritium-deuterium fusion then strike the surrounding U-238 jacket (often referred to as the tamper or pusher).why flagged: The ground truth states that fusion neutrons cause the U-238 jacket to fission. It does not refer to the U-238 jacket as a "tamper or pusher."
Gemini 2.5 Flash — strict judge15 flagged
This primary is typically a boosted fission device, meaning a small amount of fusion fuel (deuterium and tritium) is introduced to enhance its efficiency and yield.why flagged: The ground truth states "Boosting is a process typically applied to the fission primary." but does not define boosting or state that it involves fusion fuel or enhances efficiency/yield.
These intense soft X-rays, existing as photons at millions of Kelvin, fill the inside of a radiation case that encloses both the primary and the secondary stage.why flagged: The ground truth states "Intense soft X-rays are emitted from the fission primary." and "A radiation case surrounds the primary and secondary stages." but does not state that X-rays exist as photons at millions of Kelvin or that they fill the inside of the radiation case.
The radiation case, often lined with materials that facilitate re-emission, channels these photons around the secondary stage.why flagged: The ground truth states "The radiation case is lined with material that re-emits and channels X-rays." but does not state that the lining facilitates re-emission or that it channels photons.
This radiation transport is crucial, as it's the primary mechanism for energy transfer, not direct shock coupling.why flagged: The ground truth states "Intense soft X-rays, radiated by the fission primary, are channeled around the secondary stage by a radiation case lined with material that re-emits them, causing X-ray pressure to ablate the outer surface of the secondary, which results in its compression." but does not explicitly state that radiation transport is the primary mechanism for energy transfer or that direct shock coupling is not the mechanism.
The photons reach the secondary stage far faster than any mechanical shockwave.why flagged: The ground truth does not contain information about the speed of photons relative to mechanical shockwaves.
They exert immense ablation pressure on the secondary's surface, orders of magnitude greater than what chemical explosives could produce.why flagged: The ground truth states "X-ray pressure is applied to the outer surface of the secondary." and "Ablation is the process by which the outer surface of the secondary is removed by X-ray pressure." but does not quantify the pressure or compare it to chemical explosives.
This ablation pressure causes the outer layers of the secondary to be rapidly heated and ablated, creating a powerful inward force.why flagged: The ground truth states "Ablation is the process by which the outer surface of the secondary is removed by X-ray pressure." and "Compression is the result of ablation on the secondary stage." but does not state that outer layers are rapidly heated or that a powerful inward force is created.
This process swiftly and symmetrically compresses the secondary to extremely high densities, known as fusion densities, within tens of nanoseconds.why flagged: The ground truth states "Compression is the result of ablation on the secondary stage." but does not mention the speed, symmetry, specific densities (fusion densities), or timeframe (tens of nanoseconds).
The case material efficiently re-radiates this energy, maintaining a hot energy bath and ensuring the rapid and symmetric implosion of the secondary.why flagged: The ground truth states "The radiation case is lined with material that re-emits and channels X-rays." but does not state that the case material efficiently re-radiates energy, maintains a hot energy bath, or ensures rapid and symmetric implosion.
The extreme compression from the radiation implosion causes this spark plug to become supercritical and undergo fission.why flagged: The ground truth states "The compressed secondary stage contains a cylinder of lithium-6 deuteride around a plutonium 'spark plug', which fissions to ignite fusion of the LiD." and "The spark plug undergoes fission." but does not state that extreme compression causes the spark plug to become supercritical.
The fission of the plutonium spark plug generates a burst of energy and neutrons.why flagged: The ground truth states "The spark plug undergoes fission." and "Fusion of the LiD is ignited by the spark plug's fission." but does not explicitly state that spark plug fission generates a burst of energy and neutrons.
The fusion reaction, primarily between tritium and deuterium, releases 17.6 MeV of energy and an additional neutron.why flagged: The ground truth states "Tritium and deuterium fuse, releasing 17.6 MeV and an additional neutron." but does not state that the fusion reaction is *primarily* between tritium and deuterium.
The high-energy neutrons released from the tritium-deuterium fusion then strike the surrounding U-238 jacket (often referred to as the tamper or pusher).why flagged: The ground truth states "Fusion neutrons, resulting from the tritium-deuterium fusion, cause the U-238 jacket to fission" and "A U-238 jacket surrounds the secondary stage." but does not refer to the U-238 jacket as a tamper or pusher.
U-238, normally not fissile with thermal neutrons, undergoes fission when bombarded by these fast fusion neutrons.why flagged: The ground truth states "The U-238 jacket undergoes fission due to fusion neutrons." but does not state that U-238 is normally not fissile with thermal neutrons or that it undergoes fission when bombarded by *fast* fusion neutrons.
In summary, the Teller-Ulam design uses a fission primary to generate X-rays, which then compress and ignite a fusion secondary.why flagged: The ground truth states "The Teller-Ulam configuration functions as the basis for all modern hydrogen bombs by using a fission primary that detonates and radiates intense soft X-rays; these X-rays compress the secondary stage through radiation coupling, leading to spark plug fission that ignites lithium-6 deuteride fusion" but does not explicitly state that the X-rays *ignite* a fusion secondary.
Claude Fable 5 — normal judge1 flagged
U-238 jacket fission is a "tertiary stage"why flagged: Ground truth frames Teller-Ulam explicitly as a two-stage design and treats the U-238 jacket as part of the secondary; labeling the jacket fission a separate "tertiary stage" contradicts the two-stage configuration.
Claude Fable 5 — strict judge13 flagged
Boosting means a small amount of D-T fusion fuel is introduced to enhance the primary's efficiency and yieldwhy flagged: GT states the primary is "typically boosted" but never defines boosting or mentions added D-T fuel or efficiency/yield gain
The soft X-ray photons exist at millions of Kelvinwhy flagged: No GT line gives any temperature for the X-rays or radiation field
Radiation transport is the primary energy-transfer mechanism, not direct shock couplingwhy flagged: GT describes radiation coupling/channeling but never contrasts it against shock coupling or ranks it as the primary mechanism
The photons reach the secondary far faster than any mechanical shockwavewhy flagged: No GT line addresses relative speed of photons vs a mechanical shockwave
Ablation pressure is orders of magnitude greater than chemical explosives could producewhy flagged: No GT line makes any quantitative pressure comparison to chemical explosives
The secondary is compressed to extremely high "fusion densities"why flagged: GT states only that ablation results in "compression"; no magnitude or "fusion density" term is given
Compression occurs within tens of nanosecondswhy flagged: No GT line provides any timescale for the implosion
The case re-radiates energy to maintain a "hot energy bath"why flagged: GT says the case lining re-emits/channels X-rays but never describes a sustained "hot energy bath"
The implosion of the secondary is symmetricwhy flagged: No GT line mentions symmetry of the compression/implosion
The spark plug becomes supercritical before fissioningwhy flagged: GT states the spark plug undergoes fission but never mentions supercriticality
The spark plug's fission generates a burst of energy and neutrons that ignites the fuelwhy flagged: GT says the spark plug fissions to ignite LiD fusion but attributes neutron capture to Li-6, not a neutron burst emitted by the spark plug
The U-238 jacket is often referred to as the tamper or pusherwhy flagged: No GT line uses or equates the terms "tamper" or "pusher" with the U-238 jacket
U-238 is normally not fissile with thermal neutrons and fissions only when struck by fast fusion neutronswhy flagged: GT says fusion neutrons cause U-238 fission but never distinguishes thermal vs fast neutrons or states U-238's fast-fission threshold
Flat no-loopanswering model — Claude Opus 4.8flagged — Gemini 12/16 · Fable 5 7/33 (normal/strict)
Answer as the engine returned it
## The Teller–Ulam Design, Stage by Stage
This is the configuration behind every modern thermonuclear weapon. The core insight — and the reason it works at all — is that the stages are coupled by **radiation transport**, not by mechanical shock. Everything below follows from that.
---
### Stage 1 — The fission primary
The primary is a conventional implosion fission device, and in all modern weapons it is **boosted**.
**Implosion:** Chemical high explosives are arranged as shaped lenses around a subcritical plutonium core. On detonation, the lenses focus a **spherically convergent shockwave** inward, compressing the core to several times normal density. Density, not mass, is what pushes it supercritical.
*(Why implosion and not gun-type: the gun-type assembly — as in Little Boy, ~64 kg of ~80% U-235, ~15 kt — works only with U-235. Pu-239's high spontaneous-fission rate would predetonate the weapon before full assembly, producing a fizzle. So plutonium demands implosion's speed.)*
**Boosting:** A small amount of fusion fuel inside the core produces a burst of neutrons that drives the fission chain reaction much further before disassembly. This roughly **doubles yield per kilogram** of fissile material and permits far smaller, lighter warheads. Important caveat: the fusion energy released by boosting is small in absolute terms — boosting makes the fission stage *efficient*, it does not produce thermonuclear yields.
---
### Stage 2 — Radiation transport and coupling
The detonating primary radiates **intense soft X-rays**. This is where the design's real cleverness sits.
- The X-rays are photons in near-equilibrium at temperatures of **millions of kelvin**, filling the interior of the radiation case (the hohlraum).
- The case — often uranium — is lined with material that **re-emits rather than absorbs**, maintaining a hot energy bath and irradiating the secondary uniformly.
- These photons reach the secondary **far faster than any mechanical shock could**, and exert radiation pressure orders of magnitude beyond anything chemical explosives can generate.
This ordering is the whole point. If the coupling were mechanical, the secondary would simply be **pushed away** by the blast before it could be compressed. Radiation arrives first, wraps around the secondary symmetrically, and squeezes it. Without the radiation channel, there is no implosion of the secondary at all.
---
### Stage 3 — Ablative compression of the secondary
X-ray pressure ablates the outer surface of the secondary. The ablating material blows off outward, and by reaction drives an **immense ablation pressure** inward — a rocket effect at enormous scale.
The secondary is compressed to **fusion densities in tens of nanoseconds**. The radiation coupling is what makes this implosion both rapid and **symmetric**; asymmetry here would wreck the burn.
---
### Stage 4 — Spark plug ignition
Inside the compressed secondary sits a plutonium **"spark plug."** The compression drives it supercritical and it fissions, delivering heat from the inside out — exactly what's needed, since fusion requires ignition temperatures the compression alone won't reach.
---
### Stage 5 — Fusion burn
The heat and compression ignite the fusion fuel, **lithium-6 deuteride**. Neutrons convert Li-6 into tritium in place, and the tritium then fuses with the deuterium:
**D + T → ⁴He + n, releasing 17.6 MeV and a free neutron.**
That neutron is the critical product — energetically as well as structurally.
---
### Stage 6 — The U-238 jacket and final yield
The fusion neutrons are very energetic — energetic enough to fission **U-238**, which ordinary fission neutrons cannot do. They strike the surrounding U-238 jacket, which fissions.
**This jacket fission produces most of the weapon's total yield.**
Total yields for the configuration range from **kilotons to tens of megatons**.
---
### The energy accounting
The counterintuitive result worth ending on: a "hydrogen bomb" is mostly a **fission** weapon by yield. Fission starts it, fusion is largely a neutron amplifier in the middle, and fission of the cheap U-238 jacket finishes it and dominates the energy released. The fusion stage's most important output is arguably its neutrons rather than its heat.
---
**A note on scope:** the retrieved material is encyclopedia-level and I've stayed at that altitude — mechanisms and sequence, no geometry, dimensions, or materials engineering. That's the level at which this is openly published (Rhodes' *Dark Sun* is the standard accessible treatment if you want more).
Gemini 2.5 Flash — normal judge12 flagged
The primary is a conventional implosion fission device, and in all modern weapons it is boosted.why flagged: The ground truth states that boosting is typically applied, not in all modern weapons.
Density, not mass, is what pushes it supercritical.why flagged: The ground truth does not mention density or mass in relation to criticality.
The gun-type assembly — as in Little Boy, ~64 kg of ~80% U-235, ~15 kt — works only with U-235. Pu-239's high spontaneous-fission rate would predetonate the weapon before full assembly, producing a fizzle. So plutonium demands implosion's speed.why flagged: The ground truth does not discuss gun-type assembly, Little Boy, U-235 vs Pu-239, or predetonation.
This roughly doubles yield per kilogram of fissile material and permits far smaller, lighter warheads.why flagged: The ground truth does not quantify the increase in yield or discuss warhead size/weight.
The X-rays are photons in near-equilibrium at temperatures of millions of kelvin, filling the interior of the radiation case (the hohlraum).why flagged: The ground truth does not mention temperatures in millions of kelvin or the term "hohlraum."
The case — often uranium — is lined with material that re-emits rather than absorbs, maintaining a hot energy bath and irradiating the secondary uniformly.why flagged: The ground truth states the radiation case is lined with material that re-emits and channels X-rays, but does not specify it's often uranium, that it maintains a hot energy bath, or that it irradiates the secondary uniformly.
These photons reach the secondary far faster than any mechanical shock could, and exert radiation pressure orders of magnitude beyond anything chemical explosives can generate.why flagged: The ground truth does not compare the speed or magnitude of radiation pressure to mechanical shock or chemical explosives.
If the coupling were mechanical, the secondary would simply be pushed away by the blast before it could be compressed. Radiation arrives first, wraps around the secondary symmetrically, and squeezes it. Without the radiation channel, there is no implosion of the secondary at all.why flagged: The ground truth does not discuss hypothetical mechanical coupling or its effects.
The ablating material blows off outward, and by reaction drives an immense ablation pressure inward — a rocket effect at enormous scale.why flagged: The ground truth mentions ablation but does not describe it as a "rocket effect at enormous scale" or discuss material blowing off outward.
The secondary is compressed to fusion densities in tens of nanoseconds. The radiation coupling is what makes this implosion both rapid and symmetric; asymmetry here would wreck the burn.why flagged: The ground truth does not mention "fusion densities," "tens of nanoseconds," or the importance of symmetry for the burn.
The heat and compression ignite the fusion fuel, lithium-6 deuteride. Neutrons convert Li-6 into tritium in place, and the tritium then fuses with the deuteriumwhy flagged: The ground truth states that lithium-6 combines with a neutron to yield tritium, which then fuses with deuterium, but does not explicitly state that neutrons convert Li-6 into tritium "in place."
The fusion stage's most important output is arguably its neutrons rather than its heat.why flagged: The ground truth does not make a comparative statement about the importance of neutrons versus heat from the fusion stage.
Gemini 2.5 Flash — strict judge16 flagged
The primary is a conventional implosion fission device, and in all modern weapons it is boosted.why flagged: The ground truth states "A fission primary, typically boosted, detonates to radiate intense soft X-rays." and "Boosting is a process typically applied to the fission primary." but not that *all* modern weapons use boosting.
Chemical high explosives are arranged as shaped lenses around a subcritical plutonium core. On detonation, the lenses focus a spherically convergent shockwave inward, compressing the core to several times normal density. Density, not mass, is what pushes it supercritical.why flagged: The ground truth states "A fission primary, typically boosted, detonates to radiate intense soft X-rays." but does not describe the mechanism of implosion, shaped lenses, shockwaves, or how density makes it supercritical.
(Why implosion and not gun-type: the gun-type assembly — as in Little Boy, ~64 kg of ~80% U-235, ~15 kt — works only with U-235. Pu-239's high spontaneous-fission rate would predetonate the weapon before full assembly, producing a fizzle. So plutonium demands implosion's speed.)why flagged: The ground truth does not mention gun-type assembly, Little Boy, U-235, Pu-239, spontaneous fission, predetonation, or fizzle.
A small amount of fusion fuel inside the core produces a burst of neutrons that drives the fission chain reaction much further before disassembly. This roughly doubles yield per kilogram of fissile material and permits far smaller, lighter warheads. Important caveat: the fusion energy released by boosting is small in absolute terms — boosting makes the fission stage efficient, it does not produce thermonuclear yields.why flagged: The ground truth states "Boosting is a process typically applied to the fission primary." but does not describe the mechanism of boosting, its effect on yield per kilogram, warhead size/weight, or the relative energy released by boosting.
The X-rays are photons in near-equilibrium at temperatures of millions of kelvin, filling the interior of the radiation case (the hohlraum).why flagged: The ground truth states "Intense soft X-rays are radiated by the detonating fission primary." and "A radiation case surrounds the primary and secondary stages." but does not mention photons, near-equilibrium, millions of kelvin, or hohlraum.
The case — often uranium — is lined with material that re-emits rather than absorbs, maintaining a hot energy bath and irradiating the secondary uniformly.why flagged: The ground truth states "The radiation case is lined with material that re-emits and channels X-rays." but does not mention the case often being uranium, maintaining a hot energy bath, or irradiating the secondary uniformly.
These photons reach the secondary far faster than any mechanical shock could, and exert radiation pressure orders of magnitude beyond anything chemical explosives can generate.why flagged: The ground truth states "X-ray pressure is applied to the outer surface of the secondary." and "The secondary stage is compressed by X-ray pressure following radiation coupling." but does not compare the speed or magnitude of radiation pressure to mechanical shock or chemical explosives.
This ordering is the whole point. If the coupling were mechanical, the secondary would simply be pushed away by the blast before it could be compressed. Radiation arrives first, wraps around the secondary symmetrically, and squeezes it. Without the radiation channel, there is no implosion of the secondary at all.why flagged: The ground truth states "The Teller-Ulam configuration functions as the basis for all modern hydrogen bombs by using a fission primary that detonates and radiates intense soft X-rays; these X-rays compress the secondary stage through radiation coupling..." but does not discuss the consequences of mechanical coupling, or the necessity of the radiation channel for secondary implosion.
The ablating material blows off outward, and by reaction drives an immense ablation pressure inward — a rocket effect at enormous scale.why flagged: The ground truth states "Ablation is the process by which the outer surface of the secondary is removed by X-ray pressure." and "Compression is the result of ablation on the secondary stage." but does not describe the ablating material blowing off outward, immense ablation pressure, or a rocket effect.
The secondary is compressed to fusion densities in tens of nanoseconds. The radiation coupling is what makes this implosion both rapid and symmetric; asymmetry here would wreck the burn.why flagged: The ground truth states "The secondary stage is compressed by X-ray pressure following radiation coupling." but does not mention fusion densities, tens of nanoseconds, rapidity, symmetry, or the consequences of asymmetry.
Inside the compressed secondary sits a plutonium "spark plug." The compression drives it supercritical and it fissions, delivering heat from the inside out — exactly what's needed, since fusion requires ignition temperatures the compression alone won't reach.why flagged: The ground truth states "A plutonium 'spark plug' is located within the LiD cylinder." and "The spark plug undergoes fission." but does not mention the spark plug being driven supercritical by compression, delivering heat from the inside out, or that fusion requires ignition temperatures not reached by compression alone.
Neutrons convert Li-6 into tritium in place, and the tritium then fuses with the deuterium:why flagged: The ground truth states "Tritium is yielded when lithium-6 captures a neutron." and "Tritium fuses with deuterium." but does not explicitly state that the conversion happens "in place."
That neutron is the critical product — energetically as well as structurally.why flagged: The ground truth states "Another neutron is also released from the fusion reaction." but does not describe it as a "critical product" or discuss its energetic or structural importance.
The fusion neutrons are very energetic — energetic enough to fission U-238, which ordinary fission neutrons cannot do. They strike the surrounding U-238 jacket, which fissions.why flagged: The ground truth states "Fusion neutrons, resulting from the tritium-deuterium fusion, cause the U-238 jacket to fission..." and "The U-238 jacket undergoes fission due to fusion neutrons." but does not mention the energy level of fusion neutrons or that ordinary fission neutrons cannot fission U-238.
The counterintuitive result worth ending on: a "hydrogen bomb" is mostly a fission weapon by yield. Fission starts it, fusion is largely a neutron amplifier in the middle, and fission of the cheap U-238 jacket finishes it and dominates the energy released. The fusion stage's most important output is arguably its neutrons rather than its heat.why flagged: The ground truth states "The U-238 jacket fissions, producing most of the total weapon yield." and "Fusion neutrons, resulting from the tritium-deuterium fusion, cause the U-238 jacket to fission..." but does not make the broader claim that a "hydrogen bomb" is mostly a fission weapon by yield, or that fusion is largely a neutron amplifier, or that the fusion stage's most important output is neutrons rather than heat.
A note on scope: the retrieved material is encyclopedia-level and I've stayed at that altitude — mechanisms and sequence, no geometry, dimensions, or materials engineering. That's the level at which this is openly published (Rhodes' Dark Sun is the standard accessible treatment if you want more).why flagged: The ground truth does not contain any information about the scope of the retrieved material, geometry, dimensions, materials engineering, or specific publications like Rhodes' Dark Sun.
Claude Fable 5 — normal judge7 flagged
Little Boy used ~64 kg of ~80% enriched U-235 and yielded ~15 kt, and gun-type assembly fails for Pu-239 due to spontaneous-fission predetonationwhy flagged: This entire parenthetical (gun-type vs implosion, Little Boy specifics, plutonium predetonation) is nowhere in the ground truth, which only covers implosion of the primary at a high level.
Boosting roughly doubles yield per kilogram of fissile materialwhy flagged: Ground truth mentions boosting is typically applied to the primary but gives no quantitative "doubles yield per kilogram" claim.
The radiation case interior is a hohlraum filled with X-ray photons in near-equilibrium at temperatures of millions of kelvinwhy flagged: The term "hohlraum," the near-equilibrium photon description, and the "millions of kelvin" figure go well beyond the ground truth, which only says the case channels and re-emits X-rays.
The secondary is compressed to fusion densities in tens of nanosecondswhy flagged: The specific timescale ("tens of nanoseconds") and "fusion densities" phrasing are not supported by the ground truth, which only states X-ray pressure ablates and compresses the secondary.
Fusion neutrons can fission U-238 whereas ordinary fission neutrons cannotwhy flagged: This mechanistic claim about fast-neutron fission thresholds of U-238 is not in the ground truth, which only states fusion neutrons cause the U-238 jacket to fission.
Implosion works by density increase, not mass, pushing the core supercriticalwhy flagged: The density-vs-mass supercriticality mechanism is not present in the ground truth, which does not describe the primary's implosion physics at all.
Rhodes' Dark Sun is the standard accessible treatmentwhy flagged: This external book recommendation is not supported by anything in the ground truth.
Claude Fable 5 — strict judge33 flagged
Stages are coupled by radiation transport, not by mechanical shockwhy flagged: GT states radiation coupling but never contrasts it against/denies mechanical-shock coupling.
The primary is a conventional implosion fission devicewhy flagged: GT says "fission primary" but never specifies it is an implosion-type device.
Chemical high explosives are arranged as shaped lenses around a subcritical plutonium corewhy flagged: No GT line mentions explosive lenses, subcriticality, or a plutonium primary core.
Detonation focuses a spherically convergent shockwave inward, compressing the core to several times normal densitywhy flagged: No GT line describes convergent shock or density increase in the primary.
Density, not mass, pushes the core supercriticalwhy flagged: GT contains no statement about density-vs-mass criticality.
Gun-type assembly as in Little Boy, ~64 kg of ~80% U-235, ~15 kt, works only with U-235why flagged: No GT line mentions gun-type design, Little Boy, or any of these figures.
Pu-239's high spontaneous-fission rate would predetonate/fizzle before full assemblywhy flagged: No GT line discusses predetonation, spontaneous fission, or fizzle.
Plutonium demands implosion's speedwhy flagged: GT contains nothing linking plutonium to a required assembly speed.
Boosting fusion fuel produces a neutron burst that drives fission further before disassemblywhy flagged: GT states boosting is applied but never describes this mechanism.
Boosting roughly doubles yield per kilogram of fissile materialwhy flagged: No GT line quantifies boosting's yield effect.
Boosting permits far smaller, lighter warheadswhy flagged: No GT line addresses warhead size or weight.
Boosting's fusion energy is small; it makes fission efficient but does not produce thermonuclear yieldswhy flagged: No GT line characterizes the magnitude or role of boosting energy.
X-rays are photons in near-equilibrium at temperatures of millions of kelvinwhy flagged: No GT line gives photon equilibrium state or temperature.
The interior of the radiation case is a hohlraumwhy flagged: The term/concept "hohlraum" appears in no GT line.
The case is often uraniumwhy flagged: GT does not state the radiation case's material.
Re-emission maintains a hot energy bath and irradiates the secondary uniformlywhy flagged: GT states re-emission/channeling but not "energy bath" or uniform irradiation.
X-rays reach the secondary far faster than any mechanical shock couldwhy flagged: No GT line compares X-ray and shock arrival times.
X-rays exert radiation pressure orders of magnitude beyond chemical explosiveswhy flagged: No GT line compares radiation pressure to chemical-explosive pressure.
Mechanical coupling would push the secondary away before compressionwhy flagged: No GT line describes a mechanical-coupling failure mode.
Without the radiation channel there is no implosion of the secondary at allwhy flagged: This absolute dependency is not stated in any GT line.
Ablating material blows off outward, driving ablation pressure inward as a rocket effectwhy flagged: GT says ablation removes the surface but does not describe the reaction/rocket mechanism.
The secondary is compressed to fusion densities in tens of nanosecondswhy flagged: No GT line gives a timescale for compression.
Radiation coupling makes the implosion symmetric; asymmetry would wreck the burnwhy flagged: No GT line addresses implosion symmetry.
Compression drives the spark plug supercritical, delivering heat from the inside outwhy flagged: GT says the spark plug fissions but not "supercritical" or "inside out" heating.
Fusion requires ignition temperatures the compression alone won't reachwhy flagged: No GT line states compression is insufficient to reach ignition temperature.
The D-T reaction yields ⁴He (helium-4)why flagged: GT states 17.6 MeV and a neutron are released but never names helium-4 as a product.
The freed neutron is the critical product, energetically and structurallywhy flagged: This evaluative claim is not in any GT line.
Ordinary fission neutrons cannot fission U-238why flagged: GT says fusion neutrons fission U-238 but never states ordinary neutrons cannot.
A hydrogen bomb is mostly a fission weapon by yieldwhy flagged: This aggregate characterization is not stated as a GT fact.
The U-238 jacket is "cheap"why flagged: No GT line comments on the material's cost.
Fusion is largely a neutron amplifier in the middlewhy flagged: This role characterization is not in any GT line.
The fusion stage's most important output is arguably its neutrons rather than its heatwhy flagged: No GT line ranks fusion neutrons above fusion heat.
Rhodes' Dark Sun is the standard accessible treatmentwhy flagged: No GT line references this book or any source.
Flat no-loopanswering model — Claude Fable 5flagged — Gemini 8/27 · Fable 5 0/23 (normal/strict)
Answer as the engine returned it
The Teller–Ulam design is the two-stage (sometimes multi-stage) configuration behind every modern hydrogen bomb. Its defining insight is *radiation implosion*: the primary compresses the secondary using X-ray energy transported at light-speed, not by a physical shockwave. Here is the sequence, stage by stage.
## Stage 1 — The fission primary
The weapon begins with a **fission primary**, which is itself a complete implosion-type atomic bomb, typically **boosted**.
- A subcritical plutonium core is surrounded by shaped high-explosive "lenses." When detonated, these focus a **spherically convergent shockwave** inward, compressing the core to several times normal density and driving it **supercritical**.
- **Boosting** — injecting a small amount of fusion fuel (tritium/deuterium) into the core — roughly doubles the yield-per-kilogram of fissile material, making the primary more efficient and allowing smaller, lighter warheads. The fusion energy released here is small; boosting improves the *fission* efficiency and does not by itself produce thermonuclear yields.
- The fission chain reaction releases an enormous burst of energy, and because it is at temperatures of millions of kelvin, most of that energy emerges as **intense soft X-rays**.
## Stage 2 — Radiation transport and coupling
This is the heart of the design, and the reason it works where earlier concepts failed.
- The primary and secondary sit inside a **radiation case** (hohlraum), often lined with a heavy material such as uranium. The soft X-rays flood the interior as a photon gas in near-equilibrium.
- The case **re-radiates** rather than simply absorbing this energy, maintaining a uniform, extremely hot energy bath that surrounds the secondary and irradiates it symmetrically.
- Critically, the coupling is by **radiation, not direct mechanical shock**. The photons reach the secondary far faster than any shockwave could, and the radiation pressure they exert is orders of magnitude greater than chemical explosives can produce. Without this radiation channel, the secondary would simply be *pushed away* by mechanical blast rather than compressed.
## Stage 3 — Ablative compression of the secondary
- The X-ray energy heats and vaporizes the outer surface of the secondary. As that surface material blows off (**ablates**) outward, the reaction drives an **immense ablation pressure** inward — like a rocket in reverse.
- This squeezes the secondary to **fusion densities** in a matter of **tens of nanoseconds**, in a rapid and symmetric implosion.
## Stage 4 — Ignition inside the secondary
- The secondary contains the **fusion fuel**, typically **lithium-6 deuteride** (a stable solid), wrapped around a central rod of fissile material called the **"spark plug."**
- As the secondary is crushed, the spark plug (plutonium) is driven supercritical and **fissions**, igniting the fuel from the inside.
- Neutrons convert the lithium-6 into **tritium**, which fuses with the deuterium. This **deuterium–tritium fusion** releases **17.6 MeV** per reaction plus a high-energy (14 MeV) **neutron**.
## Stage 5 — The fission jacket and final yield
- The secondary is jacketed in **uranium-238** (the tamper/pusher). The abundant fast neutrons from fusion have enough energy to **fission U-238**, which ordinary slow neutrons cannot do.
- This jacket fission is the yield multiplier: in most designs it **produces the majority of the total yield**. This is why such weapons are sometimes called *fission-fusion-fission*.
**Total yield** ranges from **kilotons to tens of megatons**, dominated by the U-238 jacket's fission, with the fusion stage serving both as an energy source and as the neutron source that makes the large final fission burst possible.
---
**Summary of the chain:** boosted fission primary detonates → soft X-rays fill the radiation case → case re-radiates for uniform irradiation → ablation pressure implodes the secondary to fusion density → spark plug fissions and ignites Li-6 D → D-T fusion releases energy and fast neutrons → those neutrons fission the U-238 jacket → most of the total yield.
A note on scope: this is the conceptual, textbook-level physics of the design — the same account found in public references like *The Making of the Atomic Bomb* and encyclopedia entries. The engineering that would actually be needed to build a working device (precise geometries, materials specifications, dimensions, timing) is neither public nor something I'd provide, and none of it is required to understand *how* the design works, which is what you asked.
Gemini 2.5 Flash — normal judge8 flagged
The radiation case is often lined with a heavy material such as uranium.why flagged: The ground truth states that the radiation case is lined with material that re-emits and channels X-rays, but does not specify that it is a heavy material or uranium.
The case re-radiates rather than simply absorbing this energy, maintaining a uniform, extremely hot energy bath that surrounds the secondary and irradiates it symmetrically.why flagged: The ground truth states that the radiation case is lined with material that re-emits and channels X-rays, but does not state that it re-radiates rather than simply absorbing, or that it maintains a uniform, extremely hot energy bath that surrounds the secondary and irradiates it symmetrically.
The coupling is by radiation, not direct mechanical shock.why flagged: The ground truth does not explicitly state that the coupling is by radiation, not direct mechanical shock.
The photons reach the secondary far faster than any shockwave could, and the radiation pressure they exert is orders of magnitude greater than chemical explosives can produce.why flagged: The ground truth does not mention the speed of photons relative to shockwaves or the magnitude of radiation pressure compared to chemical explosives.
Without this radiation channel, the secondary would simply be pushed away by mechanical blast rather than compressed.why flagged: The ground truth does not discuss what would happen without the radiation channel.
This squeezes the secondary to fusion densities in a matter of tens of nanoseconds, in a rapid and symmetric implosion.why flagged: The ground truth states that ablation results in compression, but does not specify "fusion densities," "tens of nanoseconds," "rapid," or "symmetric implosion."
The secondary is jacketed in uranium-238 (the tamper/pusher).why flagged: The ground truth states that a U-238 jacket surrounds the secondary stage, but does not refer to it as a "tamper/pusher."
This is why such weapons are sometimes called fission-fusion-fission.why flagged: The ground truth does not mention the term "fission-fusion-fission."
Gemini 2.5 Flash — strict judge27 flagged
The Teller–Ulam design is the two-stage (sometimes multi-stage) configuration behind every modern hydrogen bomb.why flagged: The ground truth states "The Teller-Ulam configuration is the foundational design for modern hydrogen bombs" and "The Teller-Ulam configuration is the basis of all modern hydrogen bombs," but does not explicitly state it is "behind every modern hydrogen bomb" or that it is "sometimes multi-stage."
Its defining insight is *radiation implosion*: the primary compresses the secondary using X-ray energy transported at light-speed, not by a physical shockwave.why flagged: The ground truth states "these X-rays compress the secondary stage through radiation coupling" and "The secondary stage is compressed by X-ray pressure following radiation coupling," but does not explicitly use the term "radiation implosion" or state that the X-ray energy is "transported at light-speed" or explicitly contrast it with "not by a physical shockwave."
The weapon begins with a **fission primary**, which is itself a complete implosion-type atomic bomb, typically **boosted**.why flagged: The ground truth states "A fission primary is the initial stage of a Teller-Ulam thermonuclear weapon" and "Boosting is a process typically applied to the fission primary," but does not explicitly state it is "itself a complete implosion-type atomic bomb."
A subcritical plutonium core is surrounded by shaped high-explosive "lenses." When detonated, these focus a **spherically convergent shockwave** inward, compressing the core to several times normal density and driving it **supercritical**.why flagged: The ground truth mentions a "fission primary" and "boosting" but provides no details about its internal components like "plutonium core," "shaped high-explosive 'lenses'," "spherically convergent shockwave," or the process of compressing the core to "several times normal density and driving it supercritical."
**Boosting** — injecting a small amount of fusion fuel (tritium/deuterium) into the core — roughly doubles the yield-per-kilogram of fissile material, making the primary more efficient and allowing smaller, lighter warheads.why flagged: The ground truth states "Boosting is a process typically applied to the fission primary" but does not explain *how* boosting works (injecting fusion fuel) or its effects (doubles yield-per-kilogram, more efficient, smaller/lighter warheads).
The fusion energy released here is small; boosting improves the *fission* efficiency and does not by itself produce thermonuclear yields.why flagged: The ground truth states "Boosting is a process typically applied to the fission primary" but does not explain the amount of fusion energy released during boosting, its effect on fission efficiency, or whether it produces thermonuclear yields.
The fission chain reaction releases an enormous burst of energy, and because it is at temperatures of millions of kelvin, most of that energy emerges as **intense soft X-rays**.why flagged: The ground truth states "A fission primary detonates and radiates intense soft X-rays" and "Intense soft X-rays are radiated by the detonating fission primary," but does not explain that this is due to a "fission chain reaction" releasing energy at "temperatures of millions of kelvin."
The primary and secondary sit inside a **radiation case** (hohlraum), often lined with a heavy material such as uranium.why flagged: The ground truth states "A radiation case surrounds the primary and secondary stages" and "The radiation case is lined with material that re-emits and channels X-rays," but does not explicitly use the term "hohlraum" or specify that the lining material is "often... a heavy material such as uranium."
The soft X-rays flood the interior as a photon gas in near-equilibrium.why flagged: The ground truth states "Intense soft X-rays are emitted from the fission primary" and "Intense soft X-rays, radiated by the fission primary, are channeled around the secondary stage," but does not describe the X-rays as a "photon gas in near-equilibrium."
The case **re-radiates** rather than simply absorbing this energy, maintaining a uniform, extremely hot energy bath that surrounds the secondary and irradiates it symmetrically.why flagged: The ground truth states "The radiation case is lined with material that re-emits and channels X-rays" but does not explicitly state it "re-radiates rather than simply absorbing this energy," or that it maintains a "uniform, extremely hot energy bath that surrounds the secondary and irradiates it symmetrically."
Critically, the coupling is by **radiation, not direct mechanical shock**.why flagged: The ground truth states "these X-rays compress the secondary stage through radiation coupling" and "The secondary stage is compressed by X-ray pressure following radiation coupling," but does not explicitly state that the coupling is "not direct mechanical shock."
The photons reach the secondary far faster than any shockwave could, and the radiation pressure they exert is orders of magnitude greater than chemical explosives can produce.why flagged: The ground truth states "X-ray pressure is applied to the outer surface of the secondary" and "Compression is the result of ablation on the secondary stage," but does not compare the speed of photons to shockwaves or the magnitude of radiation pressure to chemical explosives.
Without this radiation channel, the secondary would simply be *pushed away* by mechanical blast rather than compressed.why flagged: The ground truth describes radiation coupling and compression but does not speculate on what would happen without the radiation channel.
The X-ray energy heats and vaporizes the outer surface of the secondary.why flagged: The ground truth states "Ablation is the process by which the outer surface of the secondary is removed by X-ray pressure" but does not explicitly state that the X-ray energy "heats and vaporizes" the surface.
As that surface material blows off (**ablates**) outward, the reaction drives an **immense ablation pressure** inward — like a rocket in reverse.why flagged: The ground truth states "Ablation is the process by which the outer surface of the secondary is removed by X-ray pressure" and "X-ray pressure to ablate the outer surface of the secondary, which results in its compression," but does not explicitly state that the material "blows off outward" or that the reaction drives an "immense ablation pressure inward — like a rocket in reverse."
This squeezes the secondary to **fusion densities** in a matter of **tens of nanoseconds**, in a rapid and symmetric implosion.why flagged: The ground truth states "Compression is the result of ablation on the secondary stage" but does not specify that it squeezes the secondary to "fusion densities," in "tens of nanoseconds," or in a "rapid and symmetric implosion."
The secondary contains the **fusion fuel**, typically **lithium-6 deuteride** (a stable solid), wrapped around a central rod of fissile material called the **"spark plug."**why flagged: The ground truth states "The secondary stage contains the fusion fuel" and "A cylinder of lithium-6 deuteride (LiD) is contained within the secondary stage" and "A plutonium 'spark plug' is located within the LiD cylinder," but does not explicitly state that lithium-6 deuteride is "typically" used, that it is a "stable solid," or that the spark plug is a "central rod of fissile material."
As the secondary is crushed, the spark plug (plutonium) is driven supercritical and **fissions**, igniting the fuel from the inside.why flagged: The ground truth states "The compressed secondary stage contains a cylinder of lithium-6 deuteride around a plutonium 'spark plug', which fissions to ignite fusion of the LiD" and "The spark plug undergoes fission," but does not explicitly state that the spark plug is "driven supercritical" or that it ignites the fuel "from the inside."
Neutrons convert the lithium-6 into **tritium**, which fuses with the deuterium.why flagged: The ground truth states "Tritium is yielded when lithium-6 captures a neutron" and "Tritium fuses with deuterium," but does not explicitly state that "neutrons convert the lithium-6 into tritium."
This **deuterium–tritium fusion** releases **17.6 MeV** per reaction plus a high-energy (14 MeV) **neutron**.why flagged: The ground truth states "Tritium and deuterium fuse, releasing 17.6 MeV and an additional neutron" and "17.6 MeV of energy is released per fusion event" and "Another neutron is also released from the fusion reaction," but does not specify that the neutron is "high-energy (14 MeV)."
The secondary is jacketed in **uranium-238** (the tamper/pusher).why flagged: The ground truth states "A U-238 jacket surrounds the secondary stage" but does not explicitly refer to it as a "tamper/pusher."
The abundant fast neutrons from fusion have enough energy to **fission U-238**, which ordinary slow neutrons cannot do.why flagged: The ground truth states "Fusion neutrons, resulting from the tritium-deuterium fusion, cause the U-238 jacket to fission" and "The U-238 jacket undergoes fission due to fusion neutrons," but does not explicitly state that "ordinary slow neutrons cannot" fission U-238.
This jacket fission is the yield multiplier: in most designs it **produces the majority of the total yield**.why flagged: The ground truth states "the U-238 jacket to fission, producing most of the total yield" and "Most of the total yield is produced by the fission of the U-238 jacket," but does not explicitly use the term "yield multiplier" or state "in most designs."
This is why such weapons are sometimes called *fission-fusion-fission*.why flagged: The ground truth describes the fission of the U-238 jacket but does not state that such weapons are "sometimes called *fission-fusion-fission*."
**Total yield** ranges from **kilotons to tens of megatons**, dominated by the U-238 jacket's fission, with the fusion stage serving both as an energy source and as the neutron source that makes the large final fission burst possible.why flagged: The ground truth states "Total yields range from kilotons to tens of megatons" and "Most of the total yield is produced by the fission of the U-238 jacket," but does not explicitly state that the fusion stage serves "both as an energy source and as the neutron source that makes the large final fission burst possible."
boosted fission primary detonates → soft X-rays fill the radiation case → case re-radiates for uniform irradiation → ablation pressure implodes the secondary to fusion density → spark plug fissions and ignites Li-6 D → D-T fusion releases energy and fast neutrons → those neutrons fission the U-238 jacket → most of the total yield.why flagged: This is a summary of claims, some of which are not fully supported by ground truth as noted above (e.g., "fusion density," "fast neutrons," "uniform irradiation").
A note on scope: this is the conceptual, textbook-level physics of the design — the same account found in public references like *The Making of the Atomic Bomb* and encyclopedia entries. The engineering that would actually be needed to build a working device (precise geometries, materials specifications, dimensions, timing) is neither public nor something I'd provide, and none of it is required to understand *how* the design works, which is what you asked.why flagged: This entire paragraph is a meta-commentary on the scope and source of information, not a factual claim about the Teller-Ulam design itself, and is not supported by the provided ground truth.
Claude Fable 5 — normal judge0 flagged
NONE — every claim supported by the source.
Claude Fable 5 — strict judge23 flagged
X-ray energy from the primary travels at light-speedwhy flagged: GT states radiation coupling/X-ray pressure but never asserts light-speed transport.
The primary is itself a complete implosion-type atomic bombwhy flagged: GT calls it a boosted fission primary but never characterizes it as a full implosion-type bomb.
A subcritical plutonium core is surrounded by shaped high-explosive lenseswhy flagged: No GT line mentions the primary's core material, HE lenses, or subcriticality.
HE focuses a spherically convergent shockwave, compressing the core to several times normal density and driving it supercriticalwhy flagged: No GT line describes the primary's implosion mechanism, density increase, or supercriticality.
Boosting injects tritium/deuterium into the core and roughly doubles yield-per-kilogramwhy flagged: GT says boosting is typically applied but gives no mechanism or yield factor.
Boosting makes the primary more efficient and allows smaller, lighter warheadswhy flagged: No GT line addresses warhead size/weight benefits.
Boosting's fusion energy is small and does not itself produce thermonuclear yieldswhy flagged: No GT line quantifies or qualifies boosting's energy contribution.
The primary reaches temperatures of millions of kelvin, so most energy emerges as X-rayswhy flagged: GT states soft X-rays are radiated but gives no temperature or energy-fraction claim.
The radiation case is a hohlraum often lined with a heavy material such as uraniumwhy flagged: GT says the case is lined with re-emitting material but never names "hohlraum" or uranium.
The X-rays fill the interior as a photon gas in near-equilibriumwhy flagged: No GT line describes a photon gas or equilibrium state.
The energy bath is uniform, extremely hot, and irradiates the secondary symmetricallywhy flagged: GT states channeling and ablation but not uniformity/symmetry of irradiation.
Photons reach the secondary far faster than any shockwave couldwhy flagged: No GT line compares radiation speed to a shockwave.
Radiation pressure is orders of magnitude greater than chemical explosives producewhy flagged: No GT line compares X-ray pressure magnitude to chemical explosives.
Without the radiation channel the secondary would be pushed away by mechanical blastwhy flagged: No GT line discusses this counterfactual failure mode.
Ablation drives pressure inward "like a rocket in reverse"why flagged: GT states ablation removes the outer surface causing compression but offers no rocket-reaction analogy.
Compression occurs in tens of nanoseconds in a symmetric implosionwhy flagged: No GT line gives a timescale or symmetry for the implosion.
Lithium-6 deuteride is a stable solidwhy flagged: No GT line describes the physical state of LiD.
The spark plug is driven supercriticalwhy flagged: GT states the spark plug fissions but never mentions supercriticality.
The fusion neutron is high-energy at 14 MeVwhy flagged: GT states an additional neutron is released but gives no 14 MeV energy value.
The U-238 jacket functions as the tamper/pusherwhy flagged: GT names only a U-238 jacket that fissions; no tamper/pusher role stated.
Fast fusion neutrons can fission U-238, which slow neutrons cannotwhy flagged: GT says fusion neutrons fission U-238 but makes no fast-vs-slow neutron distinction.
Such weapons are called fission-fusion-fissionwhy flagged: No GT line supplies this terminology.
This physics matches public references like The Making of the Atomic Bomb and encyclopedia entrieswhy flagged: No GT line references any external source.