HONR 46400 · Evidence-Driven Research

Studio 3 — Ground it in verified evidence

Davi Moreira

What you can defend when you leave

Studio 3

Find out what is already known, verify that it is actually known, and let it change your question.

The milestone ahead

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.

The lessons in this studio

Studio 3 · Road map

Research Builds on Research

Lesson 1 of this studio · Chapter 8

which conversation your question joins, and which leads are worth your time

The research decision

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.

An advisor circles one line in your first draft

Chapter 8 · Why this decision matters

  • “You cite six papers. Where did they come from, and what argument are they having?”
  • Research never starts from zero.
  • Someone has already asked something close to your question.
  • Find them before you spend months rediscovering what they already know.

Miss the study, or build on a paper nobody wrote

Chapter 8 · Why this decision matters

  • Get the search wrong in one direction and you miss the study that answers you.
  • Get it wrong in the other and you build on a citation nobody ever wrote.
  • Get it right and an afternoon buys you years of other people’s work.

You join a running argument; you do not found an island

Chapter 8 · The concept

  • One team measures how a policy moved turnout in one state.
  • A second repeats it elsewhere. A third pools both.
  • A field is a running argument, each study answering, extending, or challenging the ones before it (Booth et al. 2024).
  • Your job is not to invent an island. Add one honest sentence.

Nothing you gathered is a source yet

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

Two solid sources, walked both ways, quickly become ten

Chapter 8 · The concept

  • Snowballing grows your list from one real source by walking its links two ways (Greenhalgh & Peacock 2005).
  • Backward citation search reads the source’s own reference list for the older work it built on.
  • Forward citation search finds the newer papers that cite it.
  • The ten arrive with their relationships already visible.

A real gap and an abandoned search look identical from your desk

Chapter 8 · The concept

  • A genuine gap is a question your verified sources actually leave unanswered (Snyder 2019).
  • You confirm it by looking both ways, backward and forward.
  • An unfinished search is one you simply stopped chasing.
  • Only one of the two is a contribution.

The evidence map marks the spot no source reaches

Chapter 8 · The concept

  • Each source becomes one claim node: what it asserts, in one sentence.
  • Lines connect claims that agree or contradict.
  • One marked spot shows where no source reaches, and that is your candidate gap.
  • It is honest only when every node around it is a source you opened yourself.

One question, two parts: how much, and for whom

Chapter 8 · A worked example

  • Your curiosity is voting, and how far people live from the polling place seems to matter.
  • Your question: does moving a polling place farther away lower turnout?
  • And does the drop land harder in some neighborhoods than others?

The journal in the AI’s citation does not exist

Chapter 8 · A worked example

  • You ask an AI for the key studies and get one confident citation.
  • Two plausible author names, a 2019 date, an official-sounding journal title.
  • It reads like a longer version of the real Electoral Studies.
  • Nothing in your library portal, nothing on Google Scholar, nothing on the publisher’s site.
  • The citation was manufactured, and it took four minutes to find out.

One retrieved review becomes six real sources in an hour

Chapter 8 · A worked example

  • Retrieve one real review of polling-place location and turnout, and read it.
  • Backward: the older work on the costs of voting it builds on.
  • Forward: recent studies using precinct-level administrative records.
  • Within an hour your list holds a half-dozen real sources and one live disagreement.

The disagreement is the live edge of the field

Chapter 8 · A worked example

  • Some studies find relocating a polling place shaves a point or two off turnout.
  • Others find voters switch to mail ballots and total turnout barely moves.
  • That disagreement tells you the question is unsettled.
  • For some questions, snowballing finds what database queries miss (Greenhalgh & Peacock 2005).

The broad question is no gap; the narrow one may be

Chapter 8 · A worked example

  • “Does distance affect turnout” is no gap. The literature is enormous.
  • Whether the drop concentrates in neighborhoods without a car may be genuine.
  • You can defend it only because you gathered the sources around it.
  • And because you are about to open every one.

Six records, and the one variable behind the disagreement

Chapter 8 · A worked example

  • Six retrieved records stand in for the reading you do by hand.
  • Watch the two means: records that ignored mail switching against those that measured it.
  • No citations are planted here, because a fabricated source is what you are learning to catch.
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")

An AI failure case

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.

Do not delegate

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.

It is your turn

Chapter 8 · Your move

  1. Write your lead question at the top of a fresh page.
  2. Search once yourself before you delegate.
  3. Ask an AI for five more candidates on the same question, each with authors, year, exact title, and venue.
  4. Snowball your seed by hand.
  5. Put all of them in one candidate list with a status column, and write lead in every row.
  6. Log the delegation in your AI Research Ledger, and verify at least one candidate now with a named method from the Verification Guide; primary-source reading is the one that fits.

Work it in the companion notebook with Chapter 8 open beside it. Log every delegation in your AI Research Ledger.

Finding and Verifying Prior Evidence

Lesson 2 of this studio · Chapter 9

which leads become verified evidence, and whether the quiet spot on your map is a real gap

The research decision

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.

Your advisor asks for the conversation, not a pile of summaries

Chapter 9 · Why this decision matters

  • She hands your first draft back: “Show me the conversation your work joins.”
  • Which studies agree, which fight, and where exactly is the hole you say you are filling?
  • That question decides whether your project has a place to stand.

Two ways to get it wrong, and both are expensive

Chapter 9 · Why this decision matters

  • Cite a source that does not exist, and every result resting on it is compromised.
  • Same damage if the source is real but does not say what you claim.
  • Announce a gap a paper already filled, and you have promised a contribution you cannot deliver.
  • This chapter is where you make both calls, on the record.

A field is a running argument, and your job is to join it

Chapter 9 · The concept

  • One team reports that a soil treatment raises crop yield.
  • The next tests whether the effect holds in a different climate.
  • Your job is not to invent an island.
  • Find the conversation your question belongs to and add one honest sentence.

A lead stays a lead until you retrieve and read it yourself

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

  • Four steps, and every source you keep passes through them (Snyder 2019).
  • Retrieval and verification are what promote a lead into a source.

Real and mischaracterized are two separate checks

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

  • A source can be real and still be mischaracterized (Ji et al. 2023).
  • “Does it exist” and “does it say this” are two questions. Run both.

Two solid sources, snowballed both ways, become ten

Chapter 9 · The concept

  • Snowballing walks a verified source’s links in two directions.
  • Backward: read its reference list to find the older work it built on.
  • Forward: follow the “Cited by” trail to newer works that cite it.

You earn the word gap only after real sources stay silent

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

  • From your desk they feel identical, and only one is a real contribution.
  • The test is retrieval, followed forward and backward (Greenhalgh & Peacock 2005).

Biochar in sandy fields, and a citation that is nowhere

Chapter 9 · A worked example

  • Your question: does biochar raise maize yield in sandy fields?
  • The AI returns a named author pair, a 2021 date, a real-sounding soil-science journal.
  • The finding is tidy: biochar lifted yield by 18 percent.
  • You go to read it. Not in the library portal, not on Google Scholar.

A missing study is not proof that nobody has tested it

Chapter 9 · A worked example

  • Three things could be true when a citation will not resolve.
  • Fabricated whole, and there is nothing to find.
  • Garbled: right idea, wrong author or year, so search the claim itself.
  • Paywalled or obscure, reachable through your library or by emailing the author.
  • Your move is the same in all three: the lead stays out until retrieval succeeds.

Four retrieved sources, snowballed, and a gap you can defend

Chapter 9 · A worked example

  • You retrieve four soil-science studies through the library database and read each one.
  • Backward from a 2019 field trial: the older greenhouse study it built on.
  • Forward through “Cited by”: two newer trials in loam and clay.
  • None of the four you retrieved ran the trial in the sandy soil your county farms.

Twelve leads, four in the verified column

Chapter 9 · A worked example

  • Watch the tally, not the titles. The block carries no citations at all.
  • Four opened. Three garbled, two paywalled, three found nothing.
  • The eight that did not open are not evidence that nobody studied your question.
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")

An AI failure case

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.

Do not delegate

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.

It is your turn

Chapter 9 · Your move

  1. Try to retrieve every candidate on your list.
  2. Open the ones that resolve and read them.
  3. Criticize each one.
  4. Draw your evidence map: one node per verified source, lines between the ones that agree, and a marked line between any two that disagree.
  5. Find the quiet spot on the map and write your gap as one bounded sentence: “Across the sources I retrieved and verified, ___ has not been established for ___.” If the honest version is “my search is still unfinished,” write that instead.
  6. Close the loop on your declaration: rewrite your declared question in light of the map, or defend leaving it unchanged with a reason tied to a specific node, and record the resulting version with its reason.
  7. Log the verification work in your AI Research Ledger, naming the method you used from the Verification Guide; primary-source reading is the one that fits every citation.

Work it in the companion notebook with Chapter 9 open beside it. Log every delegation in your AI Research Ledger.

Milestone 3: Your evidence base

Studio 3 closes here

What the lessons handed you becomes one artifact you can defend.

What this milestone produces

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.

What you bring

Milestone 3 · Check before you start

The practice

Milestone 3 · In the studio

  1. Search deliberately and log every search: where you looked, what terms, what you found and did not.
  2. Verify each source you intend to cite by retrieving and reading it, never by trusting a summary.
  3. Build the evidence map: what is settled, what is contested, what is missing.
  4. Write the revision: how your question changed, or a defended statement of why it did not.

The four rails, here

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.

A version, not a pass

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.

The one rule

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.