@jchudnov: Pass@k and self-consistency work great for math and code; sample more and verify. So we asked: can the same trick scale…
Summary
A new paper shows that scaling inference compute via methods like self-consistency improves LLM accuracy in math and code but fails to improve truthfulness in domains without external verifiers, as model errors are too correlated.
View Cached Full Text
Cached at: 07/07/26, 06:16 AM
Pass@k and self-consistency work great for math and code; sample more and verify. So we asked: can the same trick scale truthfulness in domains with no verifier? The answer was no.
Excited to share our #ICML2026 conference paper: Truthfulness Does Not Scale Like Reasoning. https://arxiv.org/pdf/2603.06612. I’ll be at ICML in Seoul to present it!
Co-led by @JoshuaK92829 and @yegordb
Consensus is Not Verification: Why Crowd Wisdom Strategies Fail for LLM Truthfulness
Source: https://arxiv.org/html/2603.06612 Joshua KazdanJessica ChudnovskyRylan SchaefferSheng GuanSoji AdeshinaSanmi Koyejo
Abstract
Pass@kkand other methods of scaling inference compute can improve language model performance in domains with external verifiers, including mathematics and code, where incorrect candidates can be filtered reliably. This raises a natural question: can we similarly scale compute to elicit gains intruthfulnessfor domains without convenient verification? We show that across five benchmarks and models, surprisingly, it cannot. Even at25×25\timesthe inference cost of naive sampling, polling-style aggregation yields no consistent accuracy gains over single-sample baselines and often amplifies shared misconceptions. We find that under uncertainty, models are better at predicting what other models will say within model ensembles than at identifying what is true, revealing a separation betweensocial predictionandtruth verification. Across models and benchmarks, aggregation fails to provide a robust truth signal because language model errors are strongly correlated. The source of correlation goes beyond any individual benchmark: we show that even when conditioned on out of distribution random strings and asked to produce pseudo-random outputs, different models produce correlated outputs. Confidence-based weighting provides no benefit because self-reported confidence fails to reliably distinguish correct from incorrect answers. These results delineate a boundary for inference-time scaling: in verified domains, additional samples provide more candidates for a verifier to filter; in unverified domains, additional samples merely reinforce shared misconceptions.
Machine Learning, ICML, Verification, Polling, LLM
1Introduction
Inference-time scaling has emerged as a powerful alternative to parameter scaling for large language models. By allocating additional compute at test time, models can generate multiple candidate solutions and select among them, often achieving accuracy gains. Methods such as self-consistency(Wanget al.,2023), repeated sampling(Brownet al.,2024), and search have proven effective in domains like mathematics and code, where correctness can be verified automatically. In these settings, aggregation amplifies capability by filtering candidates through an external verifier.
A natural question is whether aggregation can also scaletruthfulnessin domains without verification. Selection must then instead rely on internal signals such as agreement, confidence, or predicted popularity. A common intuition, borrowed from the wisdom-of-crowds literature(Surowiecki,2004), is that aggregating many imperfect judgments should recover the truth even when individuals err.
We find that this intuition does not transfer to language models. We evaluate multiple aggregation strategies—including majority voting, confidence weighting, and the Surprisingly Popular algorithm(Prelecet al.,2017)—across several open-source models and benchmarks spanning factual knowledge, commonsense reasoning, expert-level questions, and forecasting. We find that no aggregation method consistently improves accuracy over single-sample baselines; methods that help on one benchmark often hurt on another. On forecasting questions with outcomes postdating model knowledge cutoffs, all methods perform at chance. These results do not contradict prior successes of self-consistency; they identify the regime in which those methods stop working.
This failure traces to correlated errors. Wisdom-of-crowds rests on a critical assumption: errors must be at most weakly correlated. Human crowds satisfy this condition because individuals draw on diverse experiences and information sources. Modern language models do not. Models trained on overlapping corpora and optimized for similar objectives acquire shared priors and blind spots. This parallels adversarial transferability, where different models fail in similar ways because they learn similar features(Goodfellowet al.,2015). When one model produces a plausible but incorrect answer, others frequently do the same. Polling does not cancel these mistakes; it amplifies shared misconceptions, producing greater confidence without greater correctness.
What is the source of these correlations? One might suspect they stem entirely from shared knowledge and misconceptions encoded in overlapping training data. To test this, we feed models randomly generated ASCII strings and ask for a forced multiple-choice answer—a setting with no ground-truth signal whatsoever. Even on this zero-knowledge baseline, different LMs exhibit correlations as high as 0.35. This rules out shared factual knowledge as the sole explanation and suggests that correlated outputs arise from aligned inductive biases and architectural similarities, therefore persist regardless of aggregation.
We diagnose these failures mechanistically. Model errors are highly correlated both within and across model families, violating the independence that crowd wisdom requires. Self-reported confidence is misaligned with correctness and instead tracks expected agreement. Surprise-based signals that power sophisticated aggregation rules do not reliably distinguish truth from consensus. At the same time, models predict collective opinion substantially better than they predict correctness, revealing a separation betweensocial predictionandtruth verification.
Together, these results define a boundary for inference-time scaling. Aggregation improves performance when a verifier exists, but it cannot serve as a verifier substitute. Scaling truthfulness in unverifiable domains requires external grounding or interventions that break error correlation, rather than instantiation of the bitter lesson(Sutton,2019)involving more samples from the same epistemic prior.
To summarize our conclusions:
- 1.We show that polling-style aggregation fails to reliably improve truthfulness across verifier-absent benchmarks even at large inference-time compute.
- 2.We demonstrate that language model errors are strongly correlated across samples and across model families.
- 3.We explain why aggregation methods like confidence, predicted popularity, and surprise reflect consensus rather than correctness.
- 4.We introduce a simple negative control to probe the depth of inter-model correlations - random strings with forced-choice answers - in which no underlying truth exists, and show persistent above-chance agreement. This provides mechanistic evidence that correlation reflects shared priors rather than shared knowledge.
2Related Work
Inference-time scaling complements parameter scaling by allocating compute at test time. Self-consistency decoding samples multiple reasoning paths and selects answers by majority vote(Wanget al.,2023). Subsequent work showed log-linear gains with additional samples(Brownet al.,2024; Hugheset al.,2025), explained these gains via heavy-tailed difficulty distributions(Schaefferet al.,2025), and demonstrated that adaptive test-time compute can outperform fixed best-of-NNstrategies(Snellet al.,2025). What these successes share is that answers can be verified automatically – through proof checkers or code execution.
In domains without external verifiers, selection must rely on internal signals. One proposal is to treat aggregation itself as a proxy for verification, drawing on the wisdom-of-crowds literature(Surowiecki,2004). Averaging independent judgments often outperforms any individual, and repeated estimates from a single person can reduce variance through an “inner crowd” effect(van Dolder and van den Assem,2018). Repeated samples from a language model form an inner crowd, while pooling across models forms an outer crowd, analogous to ensembles in machine learning.
Classical ensemble theory predicts gains when component errors are diverse or weakly correlated(Lakshminarayananet al.,2017). In binary tasks, this assumption concernserror events, not raw agreement: errors are correlated if, conditioned on being wrong, models tend to select thesameincorrect option. Modern language models increasingly violate this condition. When different LLMs err on the same question, they often collapse onto a single wrong answer(Kim and others,2025), and error correlation grows with model capability and training similarity(Goel and others,2025). As a result, aggregation may amplify shared misconceptions rather than cancel noise.
Several aggregation methods aim to recover truth when the majority is wrong. The Surprisingly Popular (SP) algorithm compares vote shares to predicted ones, exploiting asymmetries between informed and uninformed respondents(Prelecet al.,2017). For SP to succeed, some respondents must know the truth and anticipate the majority’s error. While SP-style aggregation has been explored for language models, it remains unclear whether LLM populations exhibit this expert-minority structure. We test both prerequisites – knowing the truth and anticipating majority error – directly.
Other aggregation schemes weight votes by self-reported confidence, assuming higher confidence implies higher accuracy. Although base language models can be calibrated(Kadavathet al.,2022), post-training often degrades this property(Tianet al.,2023; Lenget al.,2025; Xionget al.,2024). Sycophancy further encourages agreement over truth(Sharmaet al.,2023), suggesting that confidence may track expected consensus rather than epistemic certainty.
Relatedly, work on self-correction shows that absent external feedback, models often rationalize errors rather than detect them(Huanget al.,2024). Since crowd aggregation relies on partially independent errors, shared training data and objectives pose a fundamental obstacle.
Prior work shows that inference-time compute helps scale performance when verifiers exist, and that LLM errors are often correlated. What remains unresolved is whether this correlation limitstruthfulnessin verifier-absent domains. We show that it does: correlated errors impose a structural limit that self-aggregation rules don’t overcome.
3Experimental Setup
Crowd wisdom relies on errors that are not strongly correlated. Our experiments test this assumption by applying polling methods to repeated samples from single models (intra-model crowds) and to ensembles pooled across models (inter-model crowds), while measuring whether the dependence structure required for aggregation is satisfied.
Tasks and response formats.
We elicit three response types: (i) a binary answer (e.g.,YES/NOorTRUE/FALSE), (ii) an answer with self-reported confidence on a 0–100 scale, and (iii) a prediction of the vote share of one canonical option (e.g., the fraction of responses answeringYESorTRUE). Aggregation rules such as majority voting and the Surprisingly Popular (SP) algorithm require a finite option space with well-defined vote shares and prediction distributions. Binary questions are therefore not a requirement but the simplest setting, avoiding discretization artifacts and enabling comparison across aggregation methods. This choice limits generalization to open-ended generation, which we discuss in Section5. Binary questions represent the most favorable setting for polling-style aggregation; failure to obtain reliable gains even in this simplified regime provides strong evidence against aggregation as a general mechanism for scaling truthfulness in verifier-absent domains.
We evaluate four benchmarks spanning verifier-absent regimes:
- •Com2Sense(Singhet al.,2021): binary commonsense reasoning.
- •Humanity’s Last Exam (HLE)(Phan and others,2025): expert-level questions, restricted to those with a naturally binary answer structure.
- •BoolQ(Clarket al.,2019): binary factual question answering.
- •Predict-the-Future: a collection of forecasting questions introduced in this work, where all ground-truth outcomes weredefinitively resolved and verifiable at the time of dataset construction and writing, even though the events postdate model knowledge cutoffs.
The HLE subset yields wider confidence intervals due to its small size, but accuracy remains far below the 50% guessing baseline (5.7%), indicating systematic attraction to incorrect answers rather than sampling noise.
Sampling protocol.
For each question and response type, we collect 25 independent samples per model at temperaturesT∈{0.7,1.0}T\in\{0.7,1.0\}. We use moderate-to-high temperatures because crowd aggregation requires diversity; at low temperatures, repeated sampling collapses to near-deterministic outputs. The relevant question is not whether a single greedy sample outperforms high-temperature aggregation, but whether aggregation provides gainsgiventhe diversity required for crowd methods to apply. Across all benchmarks, this corresponds to 50 samples per (question, model) and a total of375,000model across experiments; we report benchmark-wise counts in AppendixB.
Figure 1:No ensemble aggregation method consistently outperforms majority voting across benchmarks.We compare five aggregation rules across four benchmarks using five-model ensembles (125 votes per question). Some methods improve performance on individual tasks, but none dominates overall. Error bars show 95% bootstrap confidence intervals.
Models and crowds.
We evaluate five instruction-tuned, open-source models spanning 4B to 235B parameters across three families: Gemma-3-4B(Gemma Team,2025), GPT-oss-20B and GPT-oss-120B(Agarwal and others,2025), Qwen-32B(Yanget al.,2024), and Qwen3-235B(Qwen Team,2025). Intra-model crowds consist of repeated samples from a single model. Inter-model crowds pool responses across all five models atT=1.0T=1.0, yielding 125 votes per question. Evaluating both regimes allows us to test whether increased architectural and training diversity reduces error correlation, as crowd wisdom would predict.
Aggregation methods.
We evaluate five aggregation rules that exhaust common internal selection signals: (1) Majority Vote(de Condorcet,1785); (2) Highest Confidence(Kadavathet al.,2022); (3) Confidence-Weighted Vote(Wanget al.,2023); (4) Prediction-Weighted Vote, weighting each response by its predicted popularity; and (5) Surprisingly Popular (SP)(Prelecet al.,2017), which selects the answer whose observed support exceeds its predicted support. If self-aggregation can scale truthfulness without an external verifier, it should do so under at least one of these rules. We additionally report an inverse-SP diagnostic solely to test alignment between the SP signal and correctness; it is not proposed as a method.
Evaluation and correlation.
Performance is measured by accuracy with 95% bootstrap confidence intervals obtained by resampling questions. Because independence is the key assumption under test, correlation is a first-class quantity. We measure it via majority stability under temperature variation, inter-rater reliability (including vote entropy and Fleiss’κ\kappa), and the concentration of wrong answers when models err. These measures distinguish genuine epistemic diversity from surface-level variation.
Controls and forecasting benchmark.
To distinguish structural correlation from shared knowledge, we include control analyses in which no correct answer exists, allowing us to test whether model agreement persists even when no signal is present. Finally, we include Predict-the-Future, a forecasting evaluation set whose outcomes postdate model knowledge cutoffs. All outcomes are manually verified. If aggregation can extract truth from uncertain respondents, it should help in this setting; accuracy near chance therefore provides a stringent negative test.
4Results
Across verifier-absent benchmarks, we find that self-aggregation does not provide a reliable path from inference-time compute to truthfulness. Despite substantial increases in consensus, accuracy remains flat or degrades. This failure is systematic rather than accidental. We show that when language models err, their errors are often correlated, violating the independence assumptions required for crowd wisdom. Consequently, when model errors are correlated, aggregation rules based on internal signals like agreement, confidence, or predicted popularity cannot reliably scale truthfulness.
(a)HLE.
(b)Predict-the-Future
(c)BoolQ.
Figure 2:Models agree with each other more reliably than they agree with truth.Each panel reports Pearson correlations between binary answers from different model families and the ground-truth label (“Truth”), computed over questions in the benchmark. Across datasets, inter-model correlations are consistently positive, but correlation with Truth varies sharply by task, showing that agreement is not a stable proxy for correctness.### 4.1Aggregation Fails to Improve Truthfulness
We evaluate five aggregation rules (majority vote, highest confidence, confidence-weighted vote, prediction-weighted vote, and Surprisingly Popular) across four verifier-absent benchmarks: Humanity’s Last Exam (HLE), BoolQ, Com2Sense, and Predict-the-Future. Across models, temperatures, and datasets, no method consistently outperforms single-sample baselines (Figure1). Increasing the number of samples increases consensus, but not correctness.
The forecasting benchmark provides the clearest negative test: because outcomes postdate model knowledge cutoffs, aggregation should succeed here if it could extract latent expertise. Instead, all methods remain indistinguishable from chance.
These failures are structural. Crowd wisdom requires errors to be uncorrelated enough that mistakes cancel under aggregation(Surowiecki,2004; de Condorcet,1785). Language models violate this assumption - shared training data, objectives, and post-training incentives produce shared priors and blind spots. Hence, aggregation increases consensus without increasing correctness.
Since majority voting fails, we next examine whether other model-internal signals - like confidence or predicted popularity - can recover correctness. We test confidence-based weighting and the Surprisingly Popular (SP) algorithm. Both fail because, in practice, they end up measuring expected consensus rather than truth.
Confidence does not track correctness. Self-reported confidence correlates weakly with accuracy but similarly with agreement. On hard benchmarks, confident answers are often wrong - due to sycophantic training that rewards typical-sounding outputs(Sharmaet al.,2023; Lenget al.,2025).
The SP algorithm assumes an expert minority that both knows the truth and anticipates the majority’s error(Prelecet al.,2017). Language model populations rarely exhibit this structure. As a diagnostic, we evaluate inverse-SP. On HLE, inverse-SP attains 80% accuracy, implying that the standard SP signal is systematically anti-correlated with correctness. On other datasets, inverse-SP performs at chance. The sign of the surprise gap is therefore not stable across tasks, meaning it cannot serve as a reliable verification signal.
4.2Correlated Errors Explain the Failure
Polling-style aggregation relies on sufficiently diverse and independent errors, under which aggregation increases the probability of correctness(Surowiecki,2004; de Condorcet,1785). We test this assumption directly by measuring cross-family answer correlations and their alignment with ground truth (Figure2).
Correlated mistakes in verifiable domains.
We analyze error correlation in verifiable mathematics benchmarks - MATH(Hendryckset al.,2021)and AIME(Mathematical Association of America,1983)- where aggregation methods are known to help due to the presence of external verifiers. For each dataset, we evaluate 128 problems with 200 samples per problem and focus onplurality-wrongcases, where the most frequent answer is incorrect.
On MATH, plurality-wrong rates are low (3.9–25.8%), but errors are highly concentrated: the most common incorrect answer accounts for 65–87% of wrong responses. On AIME, plurality-wrong rates vary widely (3.9–75.8%) and error concentration is substantially lower (20–63%).
These results clarify why aggregation succeeds in mathematics. Aggregation succeeds in math because verifiers can filter out wrong answers - not because agreement signals truth. But when models converge on the same wrong answer, there is nothing correct left for the verifier to find.
Surprise signals do not reliably track truth.
The Surprisingly Popular (SP) algorithm succeeds only when an expert minority both knows the truth and anticipates the majority’s error. Using inverse-SP purely as a diagnostic, we find that the direction of the surprise gap is not stable across benchmarks. On HLE, inverse-SP attains high accuracy, implying that the standard SP signal is systematically anti-correlated with correctness. On other datasets, inverse-SP performs at or near chance.
The surprise gap points toward truth on some benchmarks and away from it on others. A signal that flips direction across tasks cannot serve as a verifier.
(a)Temp. 0.
(b)Temp. 1.
Figure 3:Models exhibit correlated behavior even when no ground truth exists.Cohen’sκ\kappa(Cohen,1960)between pairs of models on random strings with forced-choice answers shows stable above-chance agreement, with a similar correlation structure across temperatures, indicating shared inductive biases rather than shared knowledge.
Temperature sampling does not induce independence.
Varying temperature has little effect on inducing diversity: betweenT=0.7T{=}0.7andT=1.0T{=}1.0, thepluralityanswer flips in only2.9%of (question, model) pairs (Table4), indicating that additional samples explore surface variation rather than distinct hypotheses.
Model ensembling likewise fails to restore independence. Despite large differences in overall error rates across models on both MATH and AIME, incorrect answers remain highly concentrated, and on 53% of MATH questions where multiple models err, they converge to thesameincorrect answer.
Correlation is structural, not an artifact of temperature or model choice.
Structural corollary.
When errors are correlated, no aggregation rule based solely on internal signals can reliably distinguish a unanimous correct answer from a unanimous wrong one. Additional samples increase confidence without increasing correctness.
(a)HLE.
(b)BoolQ.
(c)Com2Sense.
(d)Predict-the-Future.

Figure 4:Self-reported confidence is poorly aligned with correctness.Reliability diagrams across four verifier-absent benchmarks. Confidence increases faster than accuracy and does not reliably distinguish correct from incorrect answers.
4.3Correlation Without Truth: A No-Signal Negative Control
Correlation on benchmark questions could reflect shared knowledge rather than structural dependence between models. To disentangle these, we introduce a negative control. We generate 10,000 prompts, each consisting of a uniformly random sequence of 32 characters, with models forced to choose from{A,B,C,D}\{A,B,C,D\}:
Random String PromptHere is a random sequence: gP%!mdq4k!’q=T/rp~j~LdW05[:Mkdk$ Now choose one option: (A), (B), (C), or (D). Output your answer as X where X is A, B, C, or D.
Despite the absence of signal, model responses are not independent. Across temperatures, several model pairs have a non-negligible positive correlation. Moreover, the qualitative structure of inter-model correlation is stable acrossT=0.0T{=}0.0andT=1.0T{=}1.0, indicating that temperature increases surface diversity without eliminating shared response biases.
Models exhibit correlated outputs even when no truth exists, confirming that correlation stems from shared inductive biases in model weights, not shared knowledge. Polling then amplifies these biases, increasing consensus without improving correctness.
4.4Consensus Is Easier Than Truth Verification
Models predict collective opinion far better than they predict correctness. Across benchmarks, vote-share predictions correlate strongly with vote shares, while confidence correlates weakly with accuracy. This asymmetry reveals that confidence and predicted popularity track what the crowd will say, not whether the crowd is right.
Figure 5:Agreement remains high under low confidence.Mean confidence for the most popular answer versus its agreement fraction. Deviations fromy=xy=xshow that consensus persists even as confidence decreases.
(a)HLE.
(b)BoolQ.
(c)Com2Sense.
(d)Predict-the-Future.

Figure 6:Predicted popularity tracks agreement, not truth.Predicted vote share for the correct option (x-axis) versus observed agreement (y-axis). Points denote models; error bars show 95% bootstrap confidence intervals. The dashed line indicates perfect calibration (y=xy=x). Models accurately predict consensus even when consensus does not reliably indicate correctness.
5Discussion and Limitations
Our results identify a boundary condition for inference-time scaling. Sampling and aggregation improve performance when candidates can be externally verified. When no verifier exists, additional samples are typically drawn from the same epistemic prior. In this regime, aggregation increases consensus faster than it increases truth.
5.1Why Internal Aggregation Signals Fail
Richer internal signals do not resolve this limitation. Agreement, confidence, predicted popularity, and surprise gaps are all strong predictors of what the crowd will say. None provides a stable signal of correctness across tasks.
The Surprisingly Popular (SP) algorithm illustrates the problem. Its success depends on a stable expert-minority structure. Our diagnostics show that this structure is not reliably present in language model populations. The sign of the surprise gap varies across datasets, and in some cases is anti-correlated with correctness. A signal whose semantics change across tasks cannot function as a verifier.
Confidence-based methods fail for the same reason. Verbalized confidence tracks expected agreement nearly as strongly as it tracks accuracy. Weighting by confidence therefore amplifies the dominant misconception rather than correcting it.
5.2Social Prediction Is Easier Than Truth Verification
Models predict collective opinion substantially better than they predict correctness. This reveals a separation between two capabilities that are often conflated:social prediction(what will others say?) andtruth verification(is this answer correct?). Most aggregation rules operate on the former. When the crowd is systematically wrong, these signals become actively misleading.
This distinction suggests a constructive use of social prediction. Rather than selecting answers, predicted consensus can be used to flag high-risk questions and trigger retrieval, tool use, or deferral. In this framing, agreement is not evidence of truth, but a warning sign of shared failure modes.
5.3Limitations
Binary response format.
We restrict to binary questions to make vote shares and surprise-based aggregation well-defined. This enables clean comparison across methods but limits direct applicability to open-ended generation. Extensions to open-ended settings typically introduce implicit verification steps, which do not contradict our core claim.
Confidence elicitation.
We use verbalized confidence to match black-box usage. While alternative uncertainty estimates may behave differently, the central failure mode is not noise but misalignment: confidence tracks consensus nearly as strongly as correctness.
Diversity interventions.
Temperature sampling and model ensembling change surface form more than beliefs. Stronger interventions that induce genuine independence typically introduce new information, objectives, or supervision. These effectively add verification or break shared priors, aligning with rather than refuting our conclusion.
Forecasting benchmark scope.
Predict-the-Future is intentionally stringent but relatively small. Larger-scale replications would strengthen external validity.
5.4What Would Change the Conclusion?
Our results apply toself-aggregation without verification. Truthfulness may scale when systems:
- 1.add grounding that functions as a verifier (retrieval, tools, execution, or human feedback),
- 2.engineer genuine epistemic diversity through disjoint training or objectives, or
- 3.learn explicit verifiers trained on externally labeled evidence.
All three introduce information absent from pure polling. Scaling truthfulness therefore requires verification or true independence, not more samples from a shared prior.
6Conclusion
When language model errors are correlated, no aggregation rule based solely on agreement, confidence, or predicted popularity can reliably scale truthfulness without an external verifier.
Polling is not a substitute for verification. Across five instruction-tuned language models and multiple verifier-absent benchmarks, we find that agreement-based and metacognitive aggregation rules do not reliably improve accuracy over strong single-sample baselines, even at up to25×25\timesinference cost.
The failure is structural. Crowd wisdom relies on partially independent errors so that mistakes cancel under aggregation. Modern language models violate this assumption. Shared training data, objectives, and post-training incentives induce shared priors and shared blind spots, yielding strongly correlated errors. When the dominant answer is wrong, additional samples and additional models mostly reproduce the same mistake, turning aggregation into an amplifier of common misconceptions rather than a mechanism for correction.
This yields a clear corollary.When errors are correlated, no aggregation rule based solely on internal signals can reliably scale truthfulness in the absence of an external verifier.Confidence, predicted popularity, and surprise gaps primarily track expected consensus, not correctness. Our diagnostics reveal a consistent separation betweensocial predictionandtruth verification: models are substantially better at forecasting what others will say than at identifying what is true. Signals that optimize the former cannot be repurposed into a verifier for the latter.
These results delineate a boundary for inference-time scaling. Aggregation improves performance when a verifier exists, because verification converts additional samples into additional correctness. In verifier-absent regimes, scaling truthfulness requires external grounding or interventions that actively break error correlation, rather than drawing more samples from a shared epistemic prior. In short, inference-time compute scales reasoning when verification is available, but it does not scale truth itself.
Our results have important implications for the future of language models. Many problems, from reasoning to knowledge, have been solved simply by scaling up parameters, compute, and training data. However, as models become more capable, the importance of eliciting truthfulness and obtaining reliable verifiers for scalable oversight will increase. Our results imply that the naive approach of throwing compute at the problem is unlikely to suffice. More creative solutions will be necessary to certify reliability and reinforce safety.
Impact Statement
We show that having multiple language models vote on answers does not reliably improve accuracy in domains that lack a verifier. Since models often make the same mistakes, agreement can be misleading. We hope this encourages more realistic expectations about what aggregation methods can achieve, and pushes toward approaches that actually verify correctness rather than simply measure consensus.
References
- S. Agarwalet al.(2025)Gpt-oss-120b & gpt-oss-20b model card.arXiv preprint arXiv:2508.10925.External Links:LinkCited by:§3.
- B. Brown, J. Juravsky, R. Ehrlich, R. Clark, Q. V. Le, C. Ré, and A. Mirhoseini (2024)Large language monkeys: scaling inference compute with repeated sampling.arXiv preprint arXiv:2407.21787.Cited by:§1,§2.
- C. Clark, K. Lee, M. Chang, T. Kwiatkowski, M. Collins, and K. Toutanova (2019)BoolQ: exploring the surprising difficulty of natural yes/no questions.InNorth American Chapter of the Association for Computational Linguistics (NAACL),Cited by:3rd item.
- J. Cohen (1960)A coefficient of agreement for nominal scales.Educational and Psychological Measurement20(1),pp. 37–46.Cited by:Figure 3,Figure 3.
- N. de Condorcet (1785)Essay on the application of analysis to the probability of majority decisions.Imprimerie Royale.Cited by:§3,§4.1,§4.2.
- Gemma Team (2025)Gemma 3 technical report.arXiv preprint arXiv:2503.19786.External Links:LinkCited by:§3.
- S. Goelet al.(2025)Great models think alike and this undermines ai oversight.InInternational Conference on Machine Learning (ICML),Cited by:§2.
- I. J. Goodfellow, J. Shlens, and C. Szegedy (2015)Explaining and harnessing adversarial examples.InInternational Conference on Learning Representations (ICLR),Cited by:§1.
- D. Hendrycks, C. Burns, S. Kadavath, A. Arora, S. Basart, E. Tang, D. Song, and J. Steinhardt (2021)Measuring mathematical problem solving with the math dataset.External Links:2103.03874,LinkCited by:§4.2.
- J. Huang, X. Chen, S. Mishra, D. Zhou, Z. Yu, and E. Chi (2024)Large language models cannot self-correct reasoning yet.InInternational Conference on Learning Representations (ICLR),Cited by:§2.
- J. Hughes, S. Price, A. Lynch, R. Schaeffer, F. Barez, A. Somani, S. Koyejo, H. Sleight, E. Jones, E. Perez, and M. Sharma (2025)Best-of-n jailbreaking.InThe Thirty-ninth Annual Conference on Neural Information Processing Systems,External Links:LinkCited by:§2.
- S. Kadavath, T. Conerly, A. Askell, T. Henighan,et al.(2022)Language models (mostly) know what they know.arXiv preprint arXiv:2207.05221.Cited by:§2,§3.
- S. Kimet al.(2025)Correlated errors in large language models.InInternational Conference on Machine Learning (ICML),Cited by:§2.
- B. Lakshminarayanan, A. Pritzel, and C. Blundell (2017)Simple and scalable predictive uncertainty estimation using deep ensembles.InAdvances in Neural Information Processing Systems (NeurIPS),Cited by:§2.
- J. Leng, C. Huang, B. Zhu, and J. Huang (2025)Taming overconfidence in LLMs: reward calibration in RLHF.InThe Thirteenth International Conference on Learning Representations,External Links:LinkCited by:§2,§4.1.
- Mathematical Association of America (1983)American invitational mathematics examination (aime).Cited by:§4.2.
- L. Phanet al.(2025)Humanity’s last exam.arXiv preprint arXiv:2501.14249.External Links:LinkCited by:2nd item.
- D. Prelec, H. S. Seung, and J. McCoy (2017)A solution to the single-question crowd wisdom problem.Nature541(7638),pp. 532–535.Cited by:Appendix A,Appendix A,§1,§2,§3,§4.1.
- Qwen Team (2025)Qwen3 technical report.arXiv preprint arXiv:2505.09388.Cited by:§3.
- R. Schaeffer, J. Kazdan,et al.(2025)How do large language monkeys get their power (laws)?.InInternational Conference on Machine Learning (ICML),Note:Oral presentationExternal Links:LinkCited by:§2.
- M. Sharma, M. Tong, T. Korbak,et al.(2023)Towards understanding sycophancy in language models.arXiv preprint arXiv:2310.13548.Cited by:§2,§4.1.
- S. Singh, N. Ng, L. Qiu, H. Thomas, and T. Ma (2021)Com2Sense: a commonsense reasoning benchmark with complementary sense pairs.InFindings of the Association for Computational Linguistics (ACL),Cited by:1st item.
- C. V. Snell, J. Lee, K. Xu, and A. Kumar (2025)Scaling LLM test-time compute optimally can be more effective than scaling parameters for reasoning.InThe Thirteenth International Conference on Learning Representations,External Links:LinkCited by:§2.
- J. Surowiecki (2004)The wisdom of crowds.Anchor.Cited by:§1,§2,§4.1,§4.2.
- R. Sutton (2019)The bitter lesson.External Links:LinkCited by:§1.
- K. Tian, E. Mitchell, A. Zhou, A. Sharma, R. Rafailov, H. Yao, C. Finn, and C. Manning (2023)Just ask for calibration: strategies for eliciting calibrated confidence scores from language models fine-tuned with human feedback.InProceedings of the 2023 Conference on Empirical Methods in Natural Language Processing,pp. 5433–5442.Cited by:§2.
- D. van Dolder and M. J. van den Assem (2018)The wisdom of the inner crowd: a unified perspective.Management Science64(1),pp. 457–473.Cited by:§2.
- X. Wang, J. Wei, D. Schuurmans, Q. Le, E. Chi, S. Narang, A. Chowdhery, and D. Zhou (2023)Self-consistency improves chain of thought reasoning in language models.InInternational Conference on Learning Representations (ICLR),Cited by:§1,§2,§3.
- M. Xiong, Z. Hu, X. Lu, Y. Li, J. Fu, J. He, and B. Hooi (2024)Can llms express their uncertainty? an empirical evaluation of confidence elicitation in llms.InInternational Conference on Learning Representations (ICLR),Cited by:§2.
- A. Yang, B. Yang, B. Zhang, B. Hui,et al.(2024)Qwen2.5 technical report.arXiv preprint arXiv:2412.15115.Cited by:§3.
Appendix AThe Surprisingly Popular Algorithm
The Surprisingly Popular (SP) algorithm(Prelecet al.,2017)addresses a fundamental limitation of democratic aggregation: majority voting fails when most respondents lack the relevant knowledge. Standard approaches cannot distinguish between confident ignorance and genuine expertise. SP solves this by eliciting predictions about others’ responses, exploiting an information asymmetry between those who know and those who do not.
Setup.
Consider a binary question with answersAAandBB. Each respondentiiprovides:
- 1.A votevi∈{A,B}v_{i}\in\{A,B\}
- 2.A predictionpi∈[0,1]p_{i}\in[0,1]representing the expected fraction of respondents votingAA
Letv¯\bar{v}denote the actual fraction votingAA, andp¯\bar{p}denote the average prediction. The SP algorithm selectsAAifv¯>p¯\bar{v}>\bar{p}, andBBotherwise. In words: choose the answer that is more popular than people predicted.
Intuition.
The algorithm exploits an asymmetry in metacognitive awareness. Consider the canonical example: “Is Philadelphia the capital of Pennsylvania?” Most people incorrectly believe yes (the majority is wrong). Those who know the correct answer (Harrisburg) also know that Philadelphia is more famous and that most people will guess wrong. When asked to predict the crowd, they forecast high support for Philadelphia. Meanwhile, those who guess Philadelphia assume their answer is common and predict similarly.
The result: nearly everyone predicts high support for Philadelphia, but the actual vote share is lower because some respondents know the truth. The “no” answer receives more votes than predicted, making it surprisingly popular. This surprise reveals the presence of informed respondents whose knowledge would be drowned out by simple majority voting.
Worked example (Philadelphia).
Consider the question “Is Philadelphia the capital of Pennsylvania?” with answersYESandNO(truth:NO, the capital is Harrisburg). Suppose80%80\%of respondents are uninformed and voteYES, while20%20\%are informed and voteNO. Each respondent also predicts the overall fraction votingYES.Assume uninformed respondents predictpi=0.95p_{i}=0.95(they expect near-consensus onYES), while informed respondents predictpi=0.80p_{i}=0.80(they know most people will guessYES).
Letv¯YES\bar{v}_{\texttt{YES}}be the observed vote share forYESandp¯YES\bar{p}_{\texttt{YES}}the average predicted vote share forYES. Then
v¯YES=0.80,p¯YES=0.80⋅0.95+0.20⋅0.80=0.92.\bar{v}_{\texttt{YES}}=0.80,\qquad\bar{p}_{\texttt{YES}}=0.80\cdot 0.95+0.20\cdot 0.80=0.92.SP selectsYESifv¯YES>p¯YES\bar{v}_{\texttt{YES}}>\bar{p}_{\texttt{YES}}, and otherwise selectsNO. Herev¯YES<p¯YES\bar{v}_{\texttt{YES}}<\bar{p}_{\texttt{YES}}, so SP selectsNO. Equivalently, theNOanswer is “surprisingly popular” because its observed share exceeds its predicted share:
v¯NO=1−v¯YES=0.20andp¯NO=1−p¯YES=0.08,\bar{v}_{\texttt{NO}}=1-\bar{v}_{\texttt{YES}}=0.20\quad\text{and}\quad\bar{p}_{\texttt{NO}}=1-\bar{p}_{\texttt{YES}}=0.08,sov¯NO>p¯NO\bar{v}_{\texttt{NO}}>\bar{p}_{\texttt{NO}}. Intuitively, informed respondents both (i) vote correctly and (ii) anticipate the majority’s mistake, creating a systematic prediction gap that SP exploits.
Theoretical Guarantee.
Prelecet al.(2017)prove that under a Bayesian model where respondents share a common prior and update beliefs based on private signals, SP recovers the truth whenever the following conditions hold:
- 1.Respondents report their beliefs honestly
- 2.Respondents form unbiased predictions about others
- 3.There exists a subpopulation with access to the correct answer
The key insight is that truth-holders make systematically different predictions than non-truth-holders. IfAAis correct, those who knowAApredict lower support forAAthan those who believeBB(becauseAA-knowers understand thatBB-believers exist and are common). This prediction gap causesAAto exceed its predicted support, triggering selection by SP.
When SP Fails.
The algorithm requires an “expert minority” structure: some respondents must know the truth while understanding that others do not. SP fails when:
- •No respondent knows the answer (pure guessing)
- •Everyone knows the answer (no surprise possible)
- •Knowledgeable respondents cannot predict others’ ignorance
- •Errors are correlated such that wrong answers also exceed predictions
Our experiments test whether language models exhibit the expert-minority structure SP requires. When they do (HLE), SP yields large gains. When they do not (BoolQ), SP degrades accuracy by selecting answers that are surprisingly popular for reasons unrelated to correctness.
Appendix BBenchmark Construction
Datasets, splits, and filters.
Table1summarizes the exact splits and filters used in our experiments.
Table 1:Benchmark construction and filtering used in experiments.
Question counts and models.
We use 35 HLE questions and 100 questions each for BoolQ, Com2Sense, and Predict-the-Future.
Sampling protocol summary.
For each (question, model) we draw 25 samples at each temperatureT∈{0.7,1.0}T\in\{0.7,1.0\}for each experiment type (surprisingly popular and confidence-weighted). Each experiment issues both direct-answer prompts and prediction/confidence prompts, yielding 50 responses per (question, model, temperature, experiment). This totals 375,000 responses across all datasets.
Appendix CSingle-Model Polling Results
Tables2and3report per-model results atT=1.0T=1.0. Com2Sense omits Gemma-3-4B.
Table 2:Per-model results (T=1.0) on HLE and BoolQ. Values are accuracy with 95% bootstrap CIs.Table 3:Per-model results (T=1.0) on Predict-the-Future and Com2Sense. Values are accuracy with 95% bootstrap CIs.
(a)HLE (binary subset).
(b)BoolQ.
Figure 7:Per-model aggregation accuracy on factual and expert benchmarks.Accuracy by aggregation rule at temperaturesT∈{0.7,1.0}T\in\{0.7,1.0\}. Bars correspond to individual-sample average, direct majority vote, highest-confidence selection, confidence-weighted vote, predicted-popularity weighting, and Surprisingly Popular. Error bars show 95% bootstrap confidence intervals over questions.
(a)Predict-the-Future (post-cutoff forecasting).
(b)Com2Sense.
Figure 8:Aggregation fails to extract truth in verifier-absent regimes.Forecasting and commonsense benchmarks show no consistent gains from aggregation over single-sample baselines, even as agreement increases. Error bars show 95% bootstrap confidence intervals.
Appendix DPrompts and Parsing Details
Base prompts.
We use the following templates for binary questions. For TRUE/FALSE tasks, replace YES/NO with TRUE/FALSE.
Direct Answer<Question> Answer with just YES or NO:
Surprisingly Popular (Prediction)Question: <Question> What percentage of language models will answer YES to this question? Give just a number 0--100. What percentage will answer NO? (should sum to 100) Format: YES:XX NO:XX
ConfidenceQuestion: <Question> Answer YES or NO, then rate your confidence from 0--100. Format: Answer:YES Confidence:XX or Answer:NO Confidence:XX
Dataset-specific variants.
Com2Sense (Direct)<Scenario> Does this scenario make sense? Answer with just TRUE (makes sense) or FALSE (doesn’t make sense):
Predict-the-Future (Direct)<Question> You may not know the answer for certain, but please make your best prediction. Answer with just YES or NO:
For Com2Sense, the SP and confidence prompts use the same wording with TRUE/FALSE substitutions. For Predict-the-Future, the SP prompt adds the line “Note: The answer may not be knowable for certain, but predict based on available information.”
Parsing rules.
Direct answers are extracted by lowercasing the response and checking for the presence of the target options (YES/NO or TRUE/FALSE). If neither option is found, the response is labeledunclearand excluded from vote counts. Majority ties default to the second option (NO or FALSE).
For Surprisingly Popular predictions, we parse numbers using regex patternsYES:?\s*(\d+)(orTRUE:?\s*(\d+)). Missing values default to 0.5. If both option counts are zero, the observed vote rate defaults to 0.5.
For confidence responses, we parseAnswer:?\s*(yes|no|true|false)andConfidence:?\s*(\d+). Missing confidence defaults to 0.5; missing answers are treated asunclearand ignored in confidence-weighted voting.
Appendix ETemperature Stability Analysis
To test whether temperature variation induces meaningful answer diversity, we comparedpluralityanswers betweenT=0.7T{=}0.7andT=1.0T{=}1.0for each (benchmark, model, question) tuple. Table4reports the fraction of cases in which the plurality answer flips.
Table 4:Plurality answer flip rate betweenT=0.7T{=}0.7andT=1.0T{=}1.0. Low flip rates indicate that temperature variation does not induce the error independence required for effective aggregation.Flip rates vary by model: GPT-OSS-20B shows the highest instability (6.6%), while Gemma-3-4B is nearly deterministic (0.4%). GPT-OSS-20B on both BoolQ and Predict-the-Future reaches 9.0%, the highest in our evaluation. These patterns suggest smaller models may be more sensitive to temperature, though all models remain far below the diversity levels that would enable effective crowd aggregation.
Similar Articles
When Self-Consistency Backfires: Majority Vote Hurts the Majority of Hard Science Problems for Small LLMs
This paper shows that majority-vote self-consistency backfires on a majority of hard science problems in GPQA Diamond for small instruction-tuned LLMs, and that verifier-free gates like plurality agreement or token entropy cannot prevent this. Pre-registered confirmatory experiments quantify the accuracy drop and suggest confidence does not track correctness.
@ChenHenryWu: Self-improvement depends on whether a model can judge its own work. We usually train models to generate better - why no…
This tweet thread introduces research showing that training models to verify their own work can nearly double accuracy on hard math problems and improve scientific reasoning by 14x.
When LLMs Agree, Are They Right? Auditing Self-Consistency and Cross-Model Agreement as Confidence Signals
This paper audits whether self-consistency and cross-model agreement are reliable indicators of correctness in LLMs, finding that agreement is a weak, regime-dependent proxy and that frontier models exhibit overconfidence.
The Art of Interrogation: Consistency Amplifies Factuality in Spatial Reasoning
This paper proposes a self-supervised reinforcement learning framework that uses consistency verifiers—reward functions checking geometric and semantic consistency under transformations—to improve spatial reasoning in large reasoning models without requiring ground-truth annotations. The method approaches the accuracy of supervised fine-tuning and generalizes across diverse tasks.
Refining Over Resampling: Test-Time Self-Correction for LLM Reasoning
A new verifier-free breadth-depth refinement framework improves LLM reasoning at test time by sampling multiple rollouts, iteratively refining each via self-critique, and aggregating with majority voting. It consistently outperforms greedy decoding, majority voting, and verifier-based selection across several math benchmarks and open-weight models.