Studio 3 — Ground it in verified evidence
Studio 3
Find out what is already known, verify that it is actually known, and let it change your question.
Studio 3
This studio closes with Milestone 3: Your evidence base, a short chapter of its own after the lessons. What it asks you to produce. An evidence registry of verified sources, your search log, an evidence map, and an explicit revision of your Studio 2 declaration.
Studio 3 · Road map
Lesson 1 of this studio · Chapter 8
which conversation your question joins, and which leads are worth your time
Chapter 8
Which conversation your question joins, and which of the candidate sources a search or an AI hands you are worth chasing. You decide what goes on the list and what gets dropped. Nothing on that list counts as evidence yet.
Chapter 8 · Why this decision matters
Chapter 8 · Why this decision matters
Chapter 8 · The concept
Chapter 8 · The concept
Everything you gather starts as a lead.
Cumulative conversation
a running argument where each study answers, extends, or challenges the ones before it
Lead
a candidate source you have not checked yet, such as a citation an AI hands you
Retrieval-verification loop
ask a tool for leads, retrieve the source yourself, verify it exists and says what was claimed, and document where you found it
Chapter 8 · The concept
Chapter 8 · The concept
Chapter 8 · The concept
Chapter 8 · A worked example
Chapter 8 · A worked example
Chapter 8 · A worked example
Chapter 8 · A worked example
Chapter 8 · A worked example
Chapter 8 · A worked example
import numpy as np, pandas as pd
SEED = 464
rng = np.random.default_rng(SEED)
# Six retrieved records on polling-place distance and turnout. NO fabricated
# citations appear here: these are anonymous stand-ins for records you open
# yourself. The one thing that differs is what each record measured.
measured_switching = np.array([False, False, False, True, True, True])
effects = np.round(np.where(measured_switching, -0.2, -1.5)
+ rng.normal(0, 0.35, size=6), 2)
print(pd.DataFrame({"record": [f"record {i}" for i in range(1, 7)],
"turnout change (pp)": effects,
"measured mail switching": measured_switching}).to_string(index=False))
print(f"\nmean where switching was ignored : "
f"{effects[~measured_switching].mean():+.2f} pp")
print(f"mean where switching was measured: "
f"{effects[measured_switching].mean():+.2f} pp")
print("\nthe live disagreement is not noise. it tracks what each record measured")Chapter 8
Where the tool failed
The most common failure here is citation hallucination, the taxonomy’s confident fabrication: the model invents a source and presents it with full confidence. In the worked example it produced a plausible author pair, a 2019 date, and a journal that does not exist. You caught it in a minute by searching the exact title in quotes across your library portal and Google Scholar and finding nothing. Fluent confidence is not evidence. If you cannot locate a source where it should live, treat it as fabricated until you prove otherwise.
Chapter 8
This stays yours
Two decisions never leave your hands. Whether a source counts as verified: only reading it yourself settles that. And whether your gap is real: only retrieval that comes up empty earns the word. What your project may claim follows from those two. An AI can point; it cannot certify.
Chapter 8 · Your move
lead in every row.Work it in the companion notebook with Chapter 8 open beside it. Log every delegation in your AI Research Ledger.
Lesson 2 of this studio · Chapter 9
which leads become verified evidence, and whether the quiet spot on your map is a real gap
Chapter 9
Which of your candidate leads survive retrieval and reading, and therefore become evidence you may build on, and whether the quiet spot they leave on your map is a genuine gap or a search you stopped too early.
Chapter 9 · Why this decision matters
Chapter 9 · Why this decision matters
Chapter 9 · The concept
Chapter 9 · The concept
Lead
a candidate source you have not confirmed yet
Retrieval-verification loop
ask any tool to surface leads, retrieve the actual source yourself, verify it exists and says what was claimed, document where you found it
Chapter 9 · The concept
Citation hallucination
an AI inventing a source that does not exist, dressed in a real-sounding author pair, a recent year, and a plausible journal
Mischaracterized source
a real paper cited for a claim it never makes, such as a study reporting a correlation cited as proof of a cause
Chapter 9 · The concept
Chapter 9 · The concept
Genuine gap
a question your verified sources actually leave unanswered, confirmed by looking
Unfinished search
a question you simply stopped chasing
Chapter 9 · A worked example
Chapter 9 · A worked example
Chapter 9 · A worked example
Chapter 9 · A worked example
import numpy as np, pandas as pd
SEED = 464
rng = np.random.default_rng(SEED)
# Twelve leads returned by a search, each with what happened when you tried to
# retrieve it. The statuses are anonymous: no citation appears here, real or
# invented. Four opened; the rest are still leads.
status = rng.permutation(["retrieved"] * 4
+ ["garbled (real, wrong metadata)"] * 3
+ ["paywalled (request sent)"] * 2
+ ["nothing found"] * 3)
leads = pd.DataFrame({"lead": range(1, 13), "retrieval status": status})
print(leads.to_string(index=False))
counts = pd.Series(status).value_counts()
print("\n" + counts.to_string())
print(f"\nverified column : {counts.get('retrieved', 0)}")
print("everything else stays OUT until retrieval succeeds — a lead you could")
print("not open is not evidence that nobody has studied your question")Chapter 9
Where the tool failed
The failure to expect here is confident fabrication. Ask a general-purpose tool for “the most-cited study on biochar and maize yield in sandy soil” and it will often produce one, complete with a DOI-shaped string and a real journal name, because producing a fluent citation is exactly what it is built to do. The detail is not evidence of existence. You catch it the moment you try to retrieve it: paste the exact title in quotation marks into the library database and Google Scholar. If nothing resolves anywhere it should live, the citation is fabricated until proven otherwise, and it never enters your ledger. The fluency was the trap; the empty search result is the tell.
Chapter 9
This stays yours
Two calls stay yours alone, because your name goes on the map. First, whether a source counts as verified: you retrieved it, opened it, and read the claim yourself, so no AI summary substitutes for the paper. Second, whether your gap is genuine: you walked one backward and one forward link from each verified source and the question still stands unanswered. An AI can point; only you can vouch.
Chapter 9 · Your move
Work it in the companion notebook with Chapter 9 open beside it. Log every delegation in your AI Research Ledger.
Studio 3 closes here
What the lessons handed you becomes one artifact you can defend.
Milestone 3
The artifact
What this milestone produces. An evidence registry of verified sources, your search log, an evidence map, and an explicit revision of your Studio 2 declaration.
Milestone 3 · Check before you start
Milestone 3 · In the studio
Milestone 3 · Every studio, these four
Ethics, permissions, and data exposure
Record the licence and terms of any dataset you found here, before you plan to use it.
Evidence, provenance, and reproducibility
This studio IS the evidence rail’s home; every later citation traces to this registry.
AI activity, verification, and human decisions
Every AI-suggested source is unverified until you have opened it yourself.
Uncertainty, claim boundary, and revision history
Note where the literature disagrees; that disagreement is uncertainty you inherit.
Milestone 3
How the record works
Your milestone artifact is a dated, numbered version with the reason for the version attached. When later evidence changes it, you write the next version rather than editing the last one, because the sequence of changes is itself part of your research record.
AI is your arm and your research assistant, not your brain.
AI can review AI, and a second model is a real auditor of the first. The last decision is always human.

EDR|AI · Studio 3 — Ground it in verified evidence