enhancing reasoning accuracy in large language models during inference time

arXiv cs.CL / 3/24/2026

💬 OpinionIdeas & Deep AnalysisModels & Research

Key Points

  • The paper investigates inference-time methods to improve LLM multi-step reasoning without additional training or fine-tuning, focusing on reliability for multi-step tasks.
  • It compares three strategy classes under controlled conditions using Chain-of-Thought prompting: self-consistency (stochastic sampling with temperature/top-p and majority selection), dual-model agreement (trusting only consistent reasoning traces), and self-reflection (self-critique and revision).
  • Across experiments, self-consistency with controlled nucleus sampling/temperature delivers the largest benefit, improving accuracy by about 9% to 15% over greedy single-pass decoding with relatively low compute overhead.
  • The dual-model agreement approach improves trust in reasoning by verifying consistency between two independent models, making it more suitable for moderate-risk settings where extra compute is acceptable.
  • Self-reflection yields only marginal gains, indicating that it may be limited—particularly for smaller models that are less specialized in reasoning.

Abstract

Large Language Models (LLMs) often exhibit strong linguistic abilities while remaining unreliable on multi-step reasoning tasks, particularly when deployed without additional training or fine-tuning. In this work, we study inference-time techniques to improve the reasoning accuracy of LLMs. We systematically evaluate three classes of inference-time strategies: (i) self-consistency via stochastic decoding, where the model is sampled multiple times using controlled temperature and nucleus sampling and the most frequent final answer is selected; (ii) dual-model reasoning agreement, where outputs from two independent models are compared and only consistent reasoning traces are trusted; and (iii) self-reflection, where the model critiques and revises its own reasoning. Across all evaluated methods, we employ Chain-of-Thought (CoT) [1] prompting to elicit explicit intermediate reasoning steps before generating final answers. In this work, we provide a controlled comparative evaluation across three inference-time strategies under identical prompting and verification settings. Our experiments on LLM [2] show that self-consistency with nucleus sampling and controlled temperature value yields the substantial gains, achieving a 9% to 15% absolute improvement in accuracy over greedy single-pass decoding, well-suited for low-risk domains, offering meaningful gains with minimal overhead. The dual-model approach provides additional confirmation for model reasoning steps thus more appropriate for moderate-risk domains, where higher reliability justifies additional compute. Self-reflection offers only marginal improvements, suggesting limited effectiveness for smaller non-reasoning models at inference time.