ρ-COLLAPSE

When Five Agents Behave Like One

Measuring effective committee size in multi-agent LLM systems. Across two benchmarks and three domains, five-agent committees are worth 1.2–1.8 independent voters, and unanimous agreement is wrong up to one time in seven. The measurement is the contribution; a calibrate-once committee heuristic falls out of it as a corollary.

Neff = N / (1 + (N−1)ρ)N = 5 votes castfive seeds of one model · ρ ≈ 0.7Neff ≈ 1.3what the agreement is worth
TL;DR
  • Five agents vote like 1.2–1.8. Measured error correlation on MMLU-Pro and GPQA-Diamond collapses five-seat LLM committees to 1.2–1.8 effective independent voters; five temperature seeds of one model are worth ≈1.3.
  • Agreement is overpriced. Naive Condorcet math assigns 97–100% confidence to 2-of-5 agreement; observed accuracy in law is 40–48%. Even unanimity is only 86–99% correct.
  • The fix is arithmetic, not architecture. Discount the vote count by Neff/N before it touches any confidence threshold; in the well-powered cells the corrected posterior lands within 8 points of observed.
  • A corollary heuristic (DEFT) is always cheaper; its accuracy gains are domain-dependent. Two or three seats instead of five, at a fraction of the tokens. Held out against the five-seed default: +10.8 points in law and +14.4 on GPQA-Diamond, +1.7 in medicine, −1.1 in science — don’t use it in a domain already near its ceiling.

The world is going multi-agent. Coding agents fan out into sub-agents that review each other’s diffs. Medical and legal assistants only surface an answer when several models concur. Eval harnesses grade responses by how many judges agree. The fastest-rising committee of all is the LLM-as-a-judge1,2:1  Zheng et al., 2023. Judging LLM-as-a-Judge with MT-Bench and Chatbot Arena. NeurIPS 2023.2  Liu et al., 2023. G-Eval: NLG Evaluation Using GPT-4 with Better Human Alignment. EMNLP 2023. models grading models went from evaluation shortcut to the field’s default measuring instrument in under three years, and its newest form is a panel of diverse judges whose consensus is read as ground truth.33  Verga et al., 2024. Replacing Judges with Juries: Evaluating LLM Generations with a Panel of Diverse Models. arXiv 2024. Orchestration frameworks ship committee patterns as first-class primitives, and every serious AI product roadmap now has a box labeled “multiple models vote.” Which means agent selection, routing, collaboration, and communication are quietly becoming some of the deepest engineering problems of our time: who should be on the team, how many seats should it have, how should they talk, and when should you believe them?

Almost every deployed answer to that last question is the same one: agreement equals confidence. And the most common way to build the committee is the cheapest one: sample five completions of the same model at temperature 0.7 and take the majority vote.4,54  Wang et al., 2023. Self-Consistency Improves Chain of Thought Reasoning in Language Models. ICLR 2023.5  Li et al., 2024. More Agents Is All You Need. TMLR 2024. We measured what that construction actually buys: 11,250 frontier-model completions on MMLU-Pro across law, medicine, and science, plus 1,980 more on GPQA-Diamond as a harder, contamination-controlled replication. The answer is the title of this post. Five temperature seeds of one model are worth 1.24–1.37 effective independent voters; even the most diverse roster money can buy stops at 1.77–1.81. That measurement is the work’s primary contribution. A corollary falls out of taking it seriously: a small calibrate-once heuristic — DEFT, for Design-Effect-guided Frugal Teams — that turns the measured correlation into a committee. Held out, it is always cheaper than the five-seed default, and its accuracy gains track the domain: +10.8 points in law and +14.4 on GPQA-Diamond, +1.7 in medicine, −1.1 in science. And in the domain where the default is weakest, the default loses to a single deterministic call to its own base model.

nominal seats (N = 5) effective voters (Neff) 1 2 3 4 5 5 1.24 5 1.69 5 1.55 D1 · same-model five DeepSeek V4 seeds, T = 0.7 D2 · cross-family five Chinese labs, T = 0 D3 · cross-culture Chinese + Western labs, T = 0
Figure 1: the collapse, in one chart. How to read it: each pair of bars is one way of building a five-seat committee in the law domain of MMLU-Pro. The gray bar is the seats you pay for. The blue bar is the number of independent voters those seats are worth once the measured error correlation ρ is run through the design effect. Five temperature seeds of DeepSeek V4 (D1) are worth 1.24 independent voters. One model each from five Chinese labs (D2) is worth 1.69. A roster spanning Chinese and Western labs (D3) is worth 1.55. Diversity helps and never finishes the job: in law, no committee we measured is worth even two of its five seats — and on GPQA-Diamond the same collapse replicates at Neff = 1.23 and 1.81.

The recipe at the end of this post is deliberately boring: two numbers per candidate model on about 100 calibration questions, then arithmetic. No prompt engineering, no debate rounds, no learned router. That is the point. The interesting object is not the recipe but the mispricing the measurement exposes: multi-agent committees everywhere are running head-count math on voters who are secretly the same voter. Anything that prices the redundancy correctly starts the race ahead.

Your committee is mispriced because its votes are photocopies

Agreement-as-confidence rests on a theorem with a load-bearing word in it. If five agents err independently, unanimous convergence on the same wrong answer is essentially impossible — the naive posterior in our tables reads 100.0% at unanimity. That is Condorcet’s jury theorem, from 1785,66  Condorcet, 1785. Essai sur l’application de l’analyse à la probabilité des décisions rendues à la pluralité des voix. Paris, 1785. and it is the reason “two models concurred” feels like evidence. If the agents’ errors are correlated, the same arithmetic is fiction.

Survey statisticians solved the corrupted version of this problem seventy years ago. Poll five people from one household and you did not collect five opinions. Kish (1965)77  Kish, 1965. Survey Sampling. John Wiley & Sons. called the fix the design effect, and it converts N correlated voters into the number of independent voters they are actually worth:

Neff = N / (1 + (N − 1) · ρ)

Here ρ is the pairwise error correlation: how often two models are wrong on the same questions. ρ = 0 is a true second opinion. ρ = 1 is a photocopy. The formula sanity-checks at both extremes: at ρ = 0 you get Neff = N, and at ρ = 1 you get Neff = 1, five copies of one voter.

Correlation itself is no longer news to researchers. Kim, Garg, Peng & Garg document substantial error correlation across 350+ models, rising with accuracy and shared provider,88  Kim, Garg, Peng & Garg, 2025. Correlated Errors in Large Language Models. ICML 2025. and Kohli prices a fixed panel of nine frontier judges at roughly two effective votes.99  Kohli, 2026. Nine Judges, Two Effective Votes: Correlated Errors Undermine LLM Evaluation Panels. arXiv 2026. But almost nobody deploying committees measures ρ, and nobody had priced the construction practitioners actually ship — temperature seeds of a single model — or watched how the answer moves across diversity regimes and knowledge domains. So we measured it, at scale: 8 frontier models, 750 MMLU-Pro questions1010  Wang et al., 2024. MMLU-Pro: A More Robust and Challenging Multi-Task Language Understanding Benchmark. NeurIPS 2024. across science, medicine, and law (about ten answer options per question, which keeps lucky-guess collisions rare), and three committee designs with five seats each. Design one (D1) is the industry default, five seeds of DeepSeek V4 at temperature 0.7. Design two (D2) is one model each from five different Chinese labs (DeepSeek V4, Kimi K2, Qwen 3 235B, GLM 4.6, ByteDance Seed 1.6) at temperature 0. Design three (D3) crosses cultures: DeepSeek V4, Kimi K2, Claude Sonnet 4.6, GPT-5-mini, and Gemini 2.5 Pro, also at temperature 0. And because MMLU-Pro predates every one of these models’ training cutoffs, the two headline conditions get a replication on 198 GPQA-Diamond items,1111  Rein et al., 2023. GPQA: A Graduate-Level Google-Proof Q&A Benchmark. arXiv 2023. a harder benchmark built with stronger contamination controls. After filtering to questions where all five members produced a definite answer, 9,549 MMLU-Pro responses survive. Every ρ estimate carries a 500-iteration item-clustered bootstrap confidence interval, and every cell also reports the co-failure rate β, the fraction of items where all agents fail simultaneously, with an exact Clopper–Pearson interval.1212  Chen, 2026. When Does Combining Language Models Help? A Co-Failure Ceiling on Routing, Voting, and Mixture-of-Agents Across 67 Frontier Models. arXiv 2026.

2026-07-24T01:17:05.887516 image/svg+xml Matplotlib v3.11.1, https://matplotlib.org/ 0.0 0.2 0.4 0.6 0.8 1.0 pairwise error correlation ρ (95% bootstrap CI) same-model ×5 seeds cross-family (CN) cross-culture same-model ×5 seeds cross-family (CN) cross-culture same-model ×5 seeds cross-family (CN) cross-culture Law N_eff 1.24 N_eff 1.69 N_eff 1.55 Medicine N_eff 1.27 N_eff 1.33 N_eff 1.42 Science N_eff 1.37 N_eff 1.45 N_eff 1.77 independent errors No committee we measured is close to independent
Figure 2: every committee we measured. How to read it: each row is one committee in one domain. The dot is the measured error correlation ρ, and the whiskers are the 95% bootstrap confidence interval. The dashed line at ρ = 0 is what the vote count silently assumes; the right margin converts each row into effective independent agents out of a nominal five. No row comes close to the dashed line. Same-model committees (gray) sit at ρ = 0.66–0.76, which is 1.24–1.37 effective agents. Diversity helps and never finishes the job: the most independent committee money can currently buy measures ρ = 0.46, worth 1.77 agents of five. And look at the law rows: the all-Chinese-lab committee (blue) measures as more independent than the culturally mixed one (green), 0.49 versus 0.55. A paired bootstrap puts that reversal statistically indistinguishable from zero (p = 0.82), so we flag it as exploratory — detecting it reliably needs roughly six times more data — but the direction is consistent, and the lesson stands either way: diversity is a property of the errors, not of the roster’s passports, which is exactly why DEFT measures it instead of assuming it.

Two facts about committees follow immediately. First, temperature is not a personality transplant. Seeds phrase differently, sometimes even reason differently, and then fail on the same questions anyway. Second, “just add more agents” runs out almost instantly: at ρ ≈ 0.5–0.65, the eighth seat adds roughly 0.02 effective agents while still casting a full, correlated vote that can tip a plurality onto a shared wrong answer. More seats can actively make the committee worse, and in our enumeration they do.

The collapse is not an artifact of MMLU-Pro. On GPQA-Diamond — harder questions, stricter contamination controls — five DeepSeek V4 seeds measure ρ = 0.769 and Neff = 1.227, and the cross-family committee measures ρ = 0.439 and Neff = 1.813: materially less correlated, still nowhere near five.

Why seats saturate

How fast do extra seats stop paying? Run the measured correlations through the Kish formula and the answer is the study’s central picture:

2026-07-29T14:28:48.559110 image/svg+xml Matplotlib v3.10.8, https://matplotlib.org/ 1 2 3 4 5 6 7 8 committee seats N 1 2 3 4 5 6 7 8 effective independent agents N_eff the world the vote count assumes ρ = 0.1 law D3 · ρ̂ = 0.554 (1.55 at N=5) medicine D3 · ρ̂ = 0.630 (1.42 at N=5) Why seats saturate: measured correlation caps what a committee is worth
Figure 3: why seats saturate. How to read it: the horizontal axis is committee seats N, and the vertical axis is Neff, the number of independent experts those seats are actually worth. The steep dashed diagonal is the world the vote count assumes, where every seat adds a full expert. The dotted curve shows a nearly independent pool (ρ = 0.1) for contrast. The two solid curves are the measured cross-culture rosters from Table 1 of the paper — medicine at ρ̂ = 0.630 and law at ρ̂ = 0.554 — and they are nearly flat: at medicine’s correlation the second hire brings just under a quarter of an expert and the third brings +0.10. At five seats the curves land exactly on the measured committees: 1.42 and 1.55 effective agents. The staircase is the diagnostic; it tells you how many seats are worth buying — and, it turns out, that is nearly all it can tell you.

Walk medicine’s staircase by hand and the economics get visceral. Seat one is a full expert: Neff = 1.00. Seat two brings the committee to 1.23. Seat three: 1.33. Seat four: 1.38. Seat eight: 1.48. The second hire brings a quarter of an expert, the eighth brings two hundredths of one, and every one of them costs full price and casts a full, correlated vote. Hiring correlated models is buying the same newspaper twice: ρ̂ measures how much they are the same newspaper, and Neff counts the distinct newspapers you actually hold.

What agreement is actually worth

Now the expensive question. Production systems ship answers because k models concurred; what is that concurrence worth? For every item, take the largest same-answer cluster among the five agents and call its size k. The sharpest test sits at the bottom of the scale, k = 2 — a bare plurality, two agents against three scattered dissenters — so here is every committee cell in the study at exactly that agreement level, naive prediction against measured reality:

2026-07-29T14:28:48.656589 image/svg+xml Matplotlib v3.10.8, https://matplotlib.org/ 0% 20% 40% 60% 80% 100% P(correct | exactly 2 of 5 agents agree) D1 · n=38 D2 · n=67 D3 · n=52 D1 · n=17† D2 · n=19† D3 · n=12† D1 · n=27† D2 · n=24† D3 · n=16† Law Medicine Science What 2-of-5 agreement is actually worth naive Condorcet posterior corrected posterior (k_eff) observed, with exact 95% CI
Figure 4: what 2-of-5 agreement is actually worth. How to read it: every row is one committee cell, plotted straight from Table 8 of the paper. The black tick near 100% is the naive posterior, the confidence a Condorcet analysis assigns under independence: 97.6–100% in every cell. The blue dot is observed accuracy among those k=2 clusters, with its exact Clopper–Pearson 95% interval; the green diamond is the one-line Kish correction (keff = k·Neff/N) fed with the same ρ̂ from calibration. The distance from the black tick to the blue dot is money on fire. In the adequately-powered law cells (38–67 items each), observed accuracy is 40–48% — a 50–59 point gap — and the correction lands within 8 points of observed. The daggered medicine and science rows have under 30 items each and are drawn faded; their intervals are wide and in medicine’s D1 cell the correction overshoots downward, exactly the k = 1–2 over-correction the paper flags. And remember this chart’s ceiling: even at unanimity, naive says 100.0% while reality is 86–99%; a law system that trusts unanimity is wrong one time in seven.

Nor is unanimity a safe harbor. Observed accuracy under unanimous five-way agreement is 86–99%, and every complete-five cohort we studied, on both benchmarks, contains at least one unanimously wrong item; in law the error rate under unanimity is roughly 14%. So in a deployed committee, the corrected posterior, not the vote count, should decide whether an answer ships or goes to a human — with two honest caveats. The keff substitution over-corrects at k = 1–2; a principled fix needs a beta-binomial or copula model of correlated votes. And a system with no explicit confidence threshold anywhere in it gains nothing from the discount: the correction matters exactly where agreement feeds an auto-ship rule, a probability shown to a user, or an escalation gate.

Structured missingness

Nearly every committee paper quietly conditions on this measurement without reporting it. Models abstain or return unparseable answers on 5.3–31.8% of MMLU-Pro items, and the abstentions are not random. Same-model seeds fail to parse the same items together (ρmiss = 0.36–0.46) while cross-family abstentions are quasi-independent (0.00–0.19). On GPQA-Diamond the problem is dramatic: DeepSeek V4 returned a parseable answer on 45.8% of items and GLM 4.6 on 34.8%. Treating abstentions as errors would conflate two different correlations, so all primary numbers here use the strict cohort where all five members answered, and missingness is reported separately — an accounting choice we think any honest ρ analysis has to make.

Temperature sampling is not ensembling

The finding that indicts the default construction directly: in law, the five-seed committee scores 0.585, below the 0.611 of a single temperature-0 call to the same model. Temperature 0.7 introduced errors faster than majority voting could absorb them — the errors are correlated (ρ = 0.755) while the added noise is not independent — so the vote launders one model’s systematic mistakes into false confidence. In our hardest domain the pattern is not just overconfident; it actively degrades accuracy at five times the inference cost. Medicine and science stay above their single-call baselines, where accuracy headroom leaves more independent error signal for the vote to absorb — the domain-dependence lesson in miniature.

Temperature sampling plus voting is not ensembling. When a model’s errors are systematic, sampling five noisy copies and voting launders one model’s biases into false confidence, at five times the price.

The corollary: DEFT

Taking the measurement seriously yields a recipe, and we are deliberate about what it is not: not a mathematically optimal algorithm, but a structured checklist for pruning redundant API calls — the design-effect formula run in reverse. Calibrated once per domain, applied at inference time with no further measurement, it decides who to hire, how many, and how much to trust the room:

CALIBRATE  (once, ~100 items, K·|D_cal| model calls)
    for each candidate model m:   p̂_m  ← accuracy on D_cal
    for each pair (i, j):         ρ̂_ij ← corr. of error indicators

FLOOR      F ← models within δ = 0.10 of the best p̂
SELECT     enumerate every non-empty subset S ⊆ F (≤ 31 of them),
           score each on D_cal (no new API calls);
           keep the most accurate, ties broken by N_eff
PRICE      per item: k of |S*| agree → k_eff = k · N_eff/|S*| →
           corrected posterior q; ship iff q ≥ τ, else escalate

Each line is licensed by a measured failure of something cleverer. The accuracy floor comes first because minimizing ρ outright is a trap: drop the weakest model from a committee and the measured ρ̄ rises by 0.09–0.18 — a weak agent’s scattered errors fake independence because it disagrees with everyone, including when everyone is right. We call this the competence confound, and the pool contains a live demonstration: GLM 4.6, at 66.5% roughly 26 points below the best model, violates the floor, and excluding it raises measured ρ in law and science.

Selection is exhaustive because greedy rules lose. Neff is not monotone in composition — in law the marginal seat adds +0.33, +0.04, then +0.16 effective agents, and a threshold rule that stops at the first shallow step misses the best committee, a quartet at 0.791 against the greedy stop at 0.763. The floor leaves at most five candidates, hence at most 31 committees, every one scoreable on calibration responses already collected — zero new API calls. A matched-size ablation splits the credit: committee size contributes +5.7 points of the +6.7-point law advantage over always-taking-the-two-cheapest; member identity contributes +1.0. Neff tells you how many seats to buy, not which models to seat.

And there is no dream roster to learn, because rosters don’t transfer: cross-domain accuracy and ρ̄ rankings correlate at r = −0.54 to +0.19. The honest comparisons are the cheaper ones. Filling DEFT’s committee size with the cheapest floor-qualifying models — no ρ computed at all — trails by just +1.0 point in law, +0.1 in medicine, +0.9 in science; the best single model matches or exceeds DEFT in medicine and science at 57–78% fewer tokens, and in law trails by 1.2 points at half the token cost. Price the one-model committee first. DEFT is compression of the five-seed default people actually deploy, not a universal accuracy winner — and at inference time it simply reuses Figure 4’s correction, discounting the vote count by Neff/|S| before anything ships or escalates.

The scoreboard

Strict held-out evaluation, 10 seeds × 5 folds. “Five seeds” is the deployed default, five temperature-0.7 runs of DeepSeek V4 with majority voting. “Top-5” is a curated committee of the five most accurate models. “Random-N” matches DEFT’s committee size with random floor-qualified members.

DomainDEFTBest singleTop-5Five seedsRandom-N
Law0.7050.7080.7140.5850.658
Medicine0.8550.8400.8470.8170.835
Science0.9010.9000.9090.8670.882
GPQA-Diamond0.7530.7490.7640.6090.681

Read it honestly, because we did. Against the deployed default, DEFT wins every row — +12.0 points in law, +14.4 on GPQA-Diamond — usually with two or three seats instead of five (on GPQA it selects the same frugal pair, ByteDance Seed 1.6 + Qwen3-235B, in all 50 folds). Against a curated top-accuracy five-model committee it is a wash: −0.9 in law, −0.8 in science, +0.8 in medicine, at a fraction of the calls. Held-out validation over 20 random calibration splits draws the boundary of the claim precisely: law +10.8 ± 0.6 points with a bootstrap CI excluding zero, medicine +1.7 ± 0.4 (19 of 20 seeds), science −1.1 ± 0.4 — null to negative, because a domain sitting at 98% accuracy leaves a 50-item calibration set no signal to work with. DEFT is a compression heuristic with a validity domain, not a universal accuracy winner.

What this means if you’re building multi-agent systems

The findings compress into rules you can apply this week:

Where this sits in the literature

The premise — LLM committees are correlated — is by now established territory. Kim et al. documented it pairwise across 350+ models, and showed the correlation rises with capability;8 Goel et al. showed model mistakes grow more alike as models get better, which undermines AI oversight schemes built on cross-checking;1313  Goel et al., 2025. Great Models Think Alike and this Undermines AI Oversight. ICML 2025. Ding found agreement is a positive but weak predictor of correctness on GPQA-Diamond and AIME, and especially unreliable for frontier models — their item-clustered bootstrap methodology informed ours;1414  Ding, 2026. When LLMs Agree, Are They Right? Auditing Self-Consistency and Cross-Model Agreement as Confidence Signals. arXiv 2026. and Norman et al. showed at scale that raw agreement metrics systematically overstate independence in LLM-as-a-judge pipelines.1515  Norman, Rivera & Hughes, 2026. Reliability Without Validity: A Systematic, Large-Scale Evaluation of LLM-as-a-Judge Models Across Agreement, Consistency, and Bias. arXiv 2026. Kohli converted the diagnosis into an effective-size statement for a fixed panel of nine distinct judges, and showed that cleverer aggregation recovers at most 11% of the lost information — the bottleneck is the panel, not the vote-counting.9 DEFT starts where that diagnosis ends. If the panel is the bottleneck, the question worth solving is which panel to buy.

Two papers get closest to that question, and we engage both with experiments rather than arguments. Turkmen, Buyukates & Bastopcu select a size-k committee by greedy mutual information, and prove that under correlation, picking the top-k models by accuracy is not optimal.1616  Turkmen, Buyukates & Bastopcu, 2026. Don’t Always Pick the Highest-Performing Model: An Information Theoretic View of LLM Ensemble Selection. arXiv 2026. We ran their selection head-to-head against DEFT over twenty calibration splits, same floor, shared test pool. The verdict cuts both ways: DEFT is marginally more accurate (under 1 point on average) but consistently more expensive — their mutual-information objective more often picks cheaper models at comparable accuracy, so for a cost-constrained practitioner it is the more efficient choice, and DEFT’s advantage is interpretability as a design-effect audit. Chen bounds what any routing, voting, or mixture policy can gain via the co-failure rate β, and proves that pairwise ρ cannot identify that floor for committees of three or more.12 That critique deserved data, not a rebuttal, so every cell in our tables now reports β directly, with exact Clopper–Pearson intervals. On our multiple-choice data β is small — 0.01 to 0.16 — the regime where ρ-based pricing is valid; β still caps the ceiling, and P(correct | 3 of 5 agree) depends on the joint structure below that ceiling, which is exactly what the corrected posterior calibrates.

The seeds-versus-diversity question is genuinely contested. Self-MoA showed that sampling only the single best model can beat mixing different LLMs at equal sample counts;1717  Li, Lin, Xia & Jin, 2025. Rethinking Mixture-of-Agents: Is Mixing Different Large Language Models Beneficial? ICML 2025. Chen’s matched-quality comparison finds the reverse once member quality is equalized.12 We think the deployment-relevant axis is neither counts nor quality but dollars, and the design effect explains both results inside one framework: a seed committee is cheap per seat and worth ~1.3 votes, a diverse committee is expensive per seat and worth ~1.8, and which one wins depends on the price of the seats — which is what the frugal baselines make explicit.

What remains ours after that accounting: the measured effective size of the temperature-seed construction, replicated across two benchmarks; the culture-regime contrast, now honestly powered and flagged exploratory; the sized-and-priced committee selection with a calibrated posterior as its output; the cross-domain transfer test; and the structured-missingness accounting.

What this doesn’t show

A measurement paper earns trust by drawing its own boundaries, so here are ours. Filtering to items where all five members answered biases the retained set toward easier questions — accuracy on it runs 15–30 points above the full sweep — which compresses the correlation coefficient anti-conservatively; the GPQA-Diamond replication on a gated benchmark is the mitigation, and the 1,701 filtered rows ship alongside the full data. Science’s same-model cell sits at 97.4% accuracy, which leaves so few errors to correlate that its ρ interval spans [0.17, 0.92]; we mark it unreliable everywhere it appears. All committee conditions fix N = 5, and exhaustive SELECT is only cheap because the floor caps the pool at five candidates; larger pools need something smarter. The domains are three English multiple-choice slices plus one English MCQ benchmark — no claim here extends to open-ended tasks or other languages. And we checked our own estimator choices: tetrachoric correlations did not improve selection over plain Pearson φ (−2.8 points in law, −1.9 in medicine), and committee composition only stabilizes with ≥100 calibration items in law, remaining unstable in medicine and science — tight-margin domains want a pre-registered held-out set.

The data is yours

All 11,250 MMLU-Pro completions and 1,980 GPQA-Diamond responses are packaged with the analysis code (ρ estimation, bootstrap CIs, DEFT selection, 176 tests) under MIT and CC-BY-4.0 licences with SHA-256 checksums. Cost is reported throughout as measured output tokens per item, because dollar prices depend on provider routing; the GPQA-Diamond run additionally ships per-attempt billing metadata. The repository accompanies the paper version of this work, currently under peer review, and goes public at acceptance.

Where this goes next

Three follow-ups would buy the most new information. A D4 all-Western committee cell and a non-English variant to settle the law reversal, which currently needs about six times more data to detect reliably. An N-ablation past five seats, where ΔNeff is provably non-monotone and exhaustive search stops being free. And the pricing upgrade: the Kish scaling is the crudest correction that could possibly work and it over-corrects at low agreement, so a Dawid-Skene-style aggregator1818  Dawid & Skene, 1979. Maximum Likelihood Estimation of Observer Error-Rates Using the EM Algorithm. Applied Statistics 28(1). with an explicit correlation term is the principled successor, sharpest exactly at the low agreement levels where the money is.

The open questions we would most love the community to attack:

Coda

The multi-agent era is being built on a borrowed intuition: that many minds are safer than one. The intuition is right, and the accounting is wrong. Independence is not a default you get by calling the API five times; it is a scarce, measurable, domain-specific resource, and today almost every committee in production is spending it like it’s free. The design effect is one formula pointed at that mistake: measure ρ, let it size the room, spend the savings on better seats, and discount the applause by the number of distinct voters in it. The teams that internalize this will run cheaper, smaller, sharper committees than the teams that count heads. The vote count was never the evidence. The independence was.

The scale behind these conclusions

The conclusions rest on 13,230 frontier-model completions: 11,250 on MMLU-Pro — 8 frontier models (DeepSeek V4, Kimi K2, Qwen 3 235B, GLM 4.6, ByteDance Seed 1.6, Claude Sonnet 4.6, GPT-5-mini, Gemini 2.5 Pro) against 750 questions spanning science, medicine, and law, with roughly ten answer options per question to keep lucky-guess collisions rare — and 1,980 on GPQA-Diamond (198 items, two committee conditions) as a harder, contamination-controlled replication. Three five-seat committee designs were scored end to end: same-model seeds, five models from five different labs, and a cross-cultural roster. Strict complete-five filtering retains 9,549 MMLU-Pro responses; the 1,701 filtered rows are released alongside the full set. Every pairwise ρ estimate carries a 500-iteration item-clustered bootstrap confidence interval, every co-failure rate β an exact Clopper–Pearson interval, and every cost figure is measured output tokens per item; the GPQA-Diamond run additionally carries per-attempt billing metadata. A paper version of this work is currently under peer review.

Per-agent accuracy on the filtered MMLU-Pro dataset, for the record:

ModelCallsAccuracy
ByteDance Seed 1.661892.4%
Kimi K21,10290.7%
Qwen 3 235B63088.1%
DeepSeek V44,41487.9%
Claude Sonnet 4.664887.7%
Gemini 2.5 Pro62387.3%
GPT-5-mini62686.3%
GLM 4.654366.5%

References

  1. Zheng et al., 2023. Judging LLM-as-a-Judge with MT-Bench and Chatbot Arena. NeurIPS 2023.
  2. Liu et al., 2023. G-Eval: NLG Evaluation Using GPT-4 with Better Human Alignment. EMNLP 2023.
  3. Verga et al., 2024. Replacing Judges with Juries: Evaluating LLM Generations with a Panel of Diverse Models. arXiv 2024.
  4. Wang et al., 2023. Self-Consistency Improves Chain of Thought Reasoning in Language Models. ICLR 2023.
  5. Li et al., 2024. More Agents Is All You Need. TMLR 2024.
  6. Condorcet, 1785. Essai sur l’application de l’analyse à la probabilité des décisions rendues à la pluralité des voix. Paris, 1785.
  7. Kish, 1965. Survey Sampling. John Wiley & Sons.
  8. Kim, Garg, Peng & Garg, 2025. Correlated Errors in Large Language Models. ICML 2025.
  9. Kohli, 2026. Nine Judges, Two Effective Votes: Correlated Errors Undermine LLM Evaluation Panels. arXiv 2026.
  10. Wang et al., 2024. MMLU-Pro: A More Robust and Challenging Multi-Task Language Understanding Benchmark. NeurIPS 2024.
  11. Rein et al., 2023. GPQA: A Graduate-Level Google-Proof Q&A Benchmark. arXiv 2023.
  12. Chen, 2026. When Does Combining Language Models Help? A Co-Failure Ceiling on Routing, Voting, and Mixture-of-Agents Across 67 Frontier Models. arXiv 2026.
  13. Goel et al., 2025. Great Models Think Alike and this Undermines AI Oversight. ICML 2025.
  14. Ding, 2026. When LLMs Agree, Are They Right? Auditing Self-Consistency and Cross-Model Agreement as Confidence Signals. arXiv 2026.
  15. Norman, Rivera & Hughes, 2026. Reliability Without Validity: A Systematic, Large-Scale Evaluation of LLM-as-a-Judge Models Across Agreement, Consistency, and Bias. arXiv 2026.
  16. Turkmen, Buyukates & Bastopcu, 2026. Don’t Always Pick the Highest-Performing Model: An Information Theoretic View of LLM Ensemble Selection. arXiv 2026.
  17. Li, Lin, Xia & Jin, 2025. Rethinking Mixture-of-Agents: Is Mixing Different Large Language Models Beneficial? ICML 2025.
  18. Dawid & Skene, 1979. Maximum Likelihood Estimation of Observer Error-Rates Using the EM Algorithm. Applied Statistics 28(1).
  19. Kleinberg & Raghavan, 2021. Algorithmic Monoculture and Social Welfare. PNAS 118(22).
  20. Bommasani et al., 2022. Picking on the Same Person: Does Algorithmic Monoculture Lead to Outcome Homogenization? NeurIPS 2022.
  21. Yax, Oudeyer & Palminteri, 2024. PhyloLM: Inferring the Phylogeny of Large Language Models and Predicting their Performances in Benchmarks. ICLR 2025.

Please cite this work as

Katte, Abhijeet, Basab Ghosh, and Arjun Jain. “When Five Agents Behave Like One: Measuring Effective Committee Size in Multi-Agent LLM Systems.” July 2026. https://www.cmul8.com/research/when-five-agents-behave-like-one/
@misc{katte2026fiveagents,
  author = {Katte, Abhijeet and Ghosh, Basab and Jain, Arjun},
  title  = {When Five Agents Behave Like One: Measuring Effective
            Committee Size in Multi-Agent LLM Systems},
  year   = {2026},
  month  = {July},
  url    = {https://www.cmul8.com/research/when-five-agents-behave-like-one/}
}
· ρ ·