Minimal Pairs¶
Core Idea¶
A minimal pair is two cases constructed to differ in exactly one feature, deployed together to test whether that feature carries functional weight: if two situations are identical except for one variable and produce different outcomes, the difference is attributable to that variable. It is the smallest possible controlled experiment.
How would you explain it like I'm…
Change Just One Thing
The One-Difference Test
Smallest Controlled Experiment
Broad Use¶
- Phonology: /pat/ vs. /bat/ differ only in voicing, establishing voicing as phonemic; minimal-pair therapy drills a collapsed contrast.
- A/B testing: two landing pages identical except for one button color; the conversion difference is attributed to the single change.
- Machine learning: ablation trains two models differing only in one component, attributing the performance change to it.
- Biology: knockout and lesion studies compare an organism with gene or area X intact to one with X disabled.
- Software: git bisection hunts the smallest commit-pair bracketing a regression.
- Natural experiments: twins reared apart and regression-discontinuity cutoffs are the world's accidental minimal pairs.
Clarity¶
Naming minimal pairs makes the one-variable discipline auditable: it answers "what did you actually compare?" and exposes claims built on multi-feature changes as confounded.
Manages Complexity¶
A minimal pair collapses a high-dimensional space of candidate explanations onto a single axis — the reasoner need not model the system, only guarantee that everything except one feature is held the same.
Abstract Reasoning¶
The frame trains a reasoner to ask what single contrast would disentangle this hypothesis?, names the central failure mode (leakage), and treats unconstructibility as real information about a system's entanglement.
Knowledge Transfer¶
- Phonology to product analytics: a phonologist asks "what differed besides the headline — traffic source, time-of-day, device mix?"
- Across all domains: the shared failure mode is leakage (a feature believed held constant that varied), so the shared defense is pre-register what is held constant, then audit the actual diff.
- When clean pairs are impossible: reach for partial minimal pairs or the world's natural ones.
Example¶
An ablation study reports that adding a cross-attention module raised accuracy four points. It is a minimal pair — fixed pipeline as substrate, one component varied, the rest held identical — and if the two runs used different seeds or training steps, "leakage" voids the inference, which is why the defense is to fix the seed and audit the diff.
Relationships to Other Primes¶
Parents (1) — more general patterns this builds on
- Minimal Pairs is a kind of Comparison — The file: a minimal pair is 'a comparison engineered so that exactly one feature differs', which upgrades difference-noting into causal attribution — a specialization of comparison.
Path to root: Minimal Pairs → Comparison → Self Checking
Not to Be Confused With¶
- Minimal Pairs is not Experimental Design because experimental design adds populations, randomization, power, and a statistical model, whereas a minimal pair is the atomic single-factor contrast that one clean pair can license with no statistics at all.
- Minimal Pairs is not Triangulation because triangulation converges by maximizing method variety to test robustness, whereas a minimal pair converges by minimizing variation to isolate a cause.
- Minimal Pairs is not Counterfactual Reasoning because a counterfactual reasons about a world that did not occur, whereas a minimal pair is a counterfactual actually built and measured — both cases exist.