Scaling Trends for Multi-Hop Contextual Reasoning in Mid-Scale Language Models
Brady Steele, Micah Katz
TL;DR
This work investigates how multi-hop contextual reasoning scales in mid-scale language models using a synthetic, controlled framework that separates task structure from reasoning method. It contrasts rule-based pattern matching with multi-agent LLM reasoning across four model configurations, fitting both power-law and sigmoidal scaling models to characterize performance. Key findings include a robust task-method dissociation, where rule-based methods excel on structured tasks but fail on contextual tasks, while multi-agent LLMs excel in the latter; multi-agent gains depend on base capability and can be substantial (up to ~46.7 percentage points), with active parameters better predicting MoE reasoning than total parameters; architecture quality also matters beyond parameter count. The study provides a practical, reproducible evaluation framework runnable on consumer hardware and offers insights for deployment decisions, showing that advances in reasoning hinge on effective use of model capacity and that multi-agent coordination amplifies, rather than substitutes for, existing capabilities. Code and data are released at https://github.com/micahkatz/multi-hop-contextual-reasoning.git to support reproducible research.
Abstract
We present a controlled study of multi-hop contextual reasoning in large language models, providing a clean demonstration of the task-method dissociation: rule-based pattern matching achieves 100% success on structured information retrieval but only 6.7% on tasks requiring cross-document reasoning, while LLM-based multi-agent systems show the inverse pattern, achieving up to 80% on reasoning tasks where rule-based methods fail. Using a synthetic evaluation framework with 120 trials across four models (LLaMA-3 8B, LLaMA-2 13B, Mixtral 8x7B, DeepSeek-V2 16B), we report three key findings: (1) Multi-agent amplification depends on base capability: statistically significant gains occur only for models with sufficient reasoning ability (p < 0.001 for LLaMA-3 8B, p = 0.014 for Mixtral), with improvements of up to 46.7 percentage points, while weaker models show no benefit, suggesting amplification rather than compensation; (2) Active parameters predict reasoning performance: Mixtral's performance aligns with its ~12B active parameters rather than 47B total, consistent with the hypothesis that inference-time compute drives reasoning capability in MoE architectures; (3) Architecture quality matters: LLaMA-3 8B outperforms LLaMA-2 13B despite fewer parameters, consistent with known training improvements. Our results provide controlled quantitative evidence for intuitions about multi-agent coordination and MoE scaling, while highlighting the dependence of multi-agent benefits on base model capability. We release our evaluation framework to support reproducible research on reasoning in mid-scale models.
