Skip to content
Mastering Claude

Home / Real cases end to end

Real cases end to end7 minApplication

Fan-out research, with adversarial verification

Launching several searches in parallel rather than in sequence speeds up the enquiry, but a claim is only cited after it has withstood a genuine attempt to refute it.

Opening four searches at once on the same question is faster than launching them one by one, but speed changes nothing about the reliability of what comes out of it. What changes reliability is the step that follows collection: every claim kept must first be actively contested before being cited with its source.

The fan-out speeds up collection, not judgement

Launching searches in parallel cuts waiting time, since the queries run at the same time rather than one after another. This exempts nothing from the following steps: sorting a primary source from a secondary one, checking its date, and comparing claims that contradict each other across the results. Faster collection that skips this sort simply produces more unverified material, not a better answer.

Contest before citing

The attempt at refutation is made through a source distinct from the one carrying the initial claim, never through a second reading of the same page. A claim that withstands this attempt enters the final answer with its source in brackets, right after the sentence it supports. A claim that does not withstand it, or that no independent source allows to be checked against, drops out of the draft rather than staying in it in a softened form.

# Liste fabriquée pour illustrer le tri, aucune recherche réelle n'est lancée ici
affirmations = [
    {"texte": "le taux mesuré est de 12 pour cent", "source_initiale": "blog A", "confrontee_a": "rapport B", "resiste": True},
    {"texte": "le taux mesuré est de 30 pour cent", "source_initiale": "forum C", "confrontee_a": None, "resiste": False},
]

retenues = [a for a in affirmations if a["confrontee_a"] and a["resiste"]]
print(len(affirmations), "affirmations collectées,", len(retenues), "retenues après confrontation")

In this fabricated example, only one claim out of two passes the sort: the one that was never checked against an independent source stays out of the answer, whatever its apparent plausibility. This same requirement for direct proof rather than claim alone is what structures the four real traps where a claim replaces a measurement.

Two diverging sources remain more useful than a fast answer

When two independent sources agree on the same figure, confidence in that figure rises. When they diverge, the divergence itself is the information worth keeping: it signals that the question needs a third source, or a rephrasing, before any citation. Writing the final answer directly from the first source found, without launching the confrontation, amounts to replacing the fan-out with a single search disguised as several.

Figure 1

The path of a reliable search, from fan-out to citation

01
Fan-out of queries
Several searches are launched at the same time on the same question, rather than one after another.
02
Sorting sources
Each result is classed as a primary or secondary source, with its publication date.
03
Attempt at refutation
Each claim kept is checked against a source distinct from the one that first carried it.
04
Citation kept
Only a claim that has withstood the confrontation enters the answer, with its source in brackets.
The sequence shows that the speed gained by the fan-out sits before the sort, never in place of the sort.
Figure 2

Sequential search against fan-out search

Two ways to collect before sortingCollection timeSources seen before the first sortConfrontation step required
Sequential searchSum of the time for each query, one after anotherLimited by the number of queries already launched at the time of the sortIdentical: every claim kept is checked before citation
Fan-out searchBounded by the longest query launched, not by their sumBroader for the same duration, since the queries run in parallelIdentical: every claim kept is checked before citation
The table isolates what each method actually changes, the collection time, never the requirement to check every claim before citing it.
Calibrate it yourself

An analyst launches four searches at the same time on the same question, gathers the claims found by each, tries to refute each claim with a distinct source, then keeps the ones that withstand this attempt with their source in brackets.

Write in one sentence what this situation establishes, and in one sentence what it does not establish.

What to remember
  • Launching several searches in parallel cuts collection time, but exempts nothing from the sorting or confrontation steps.
  • A claim that is kept must be checked against a source distinct from the one that first carried it, never against a second reading of the same page.
  • A claim that does not withstand this confrontation, or that no independent source allows to be checked, drops out of the draft rather than staying in it softened.
  • When two independent sources diverge on the same figure, that divergence is itself the information worth keeping before citing anything.
  • Fan-out collection without a confrontation step amounts to replacing several searches with a single search in disguise.
Do this now

Take a question you genuinely have, launch three distinct searches on it, and for every claim found, look for an independent source that could contradict it before keeping it.