Do Agents Have a Scaling Law? Google + MIT Study Debunks the Myth That Multi-Agent Is Always Better
> Paper: *Towards a Science of Scaling Agent Systems* > Authors: Ken Gu, Chanwoo Park, Chunjong Park, Samuel Schmidgall (Google Research / DeepMind / MIT) > arXiv: 2512.08296v3 > Scale: 260 configurations × 6 benchmarks × 5 architectures × 3 LLM families
---
1. A Counterintuitive Story
One team built a financial analysis agent. Single agent: 34.9% accuracy. Adding multiple agents: jumped to 63.1%, an 80.8% improvement.
The same team built a Minecraft planning agent. Single agent: 56.8%. Adding multiple agents: crashed to 17.0%, a 70% drop.
Same tech stack, same multi-agent framework — one doubled, one collapsed.
That's not a bug; that's a pattern. A joint team from Google Research, DeepMind, and MIT quantified this pattern for the first time with 260 controlled experiments.
---
2. Experimental Design: Eliminating Confounds
A major problem with prior research: comparing apples to oranges. Paper A uses GPT-4 + ReAct, paper B uses Claude + a custom protocol, paper C swaps the prompt — who can say whose multi-agent design is better?
This paper's controls are textbook:
| Control | Approach | |----------|----------| | Prompt | Identical task prompts across all architectures | | Tools | Identical tool APIs and observation structures | | Compute budget | Matched compute so no side "thinks more" | | Variables | Only two vary: coordination structure + model capability |
5 architectures:
| Architecture | Core feature | Complexity | |------|----------|--------| | SAS (single agent) | One LLM executes sequentially | O(k) | | Independent | n agents in parallel, results aggregated | O(nk) | | Centralized | Orchestrator assigns tasks + verifies | O(rnk) | | Decentralized | Peer-to-peer agent debate | O(dnk) | | Hybrid | Orchestrator + peer-to-peer mix | O((r+p)nk) |
6 benchmarks (all genuinely agentic — multi-step interaction, partial observability, adaptive strategy): 1. BrowseComp-Plus — cross-site information retrieval 2. Finance-Agent — financial analysis (entry-level analyst tasks) 3. PlanCraft — Minecraft environment planning 4. Workbench — common business activities (16 tools) 5. SWE-bench Verified — GitHub issue fixing 6. Terminal-Bench — sysadmin / security / ML CLI tasks
3 LLM families: OpenAI (GPT-5 series), Google (Gemini-2.5 series), Anthropic (Claude Sonnet series).
---
3. Core Findings: Three Scaling Patterns
Pattern 1: The Baseline Paradox — "Smart Enough? Don't Team Up"
Statistical evidence: β̂ = −0.236, p = 0.004
If your single agent already achieves 45% accuracy, adding agents yields negative returns.
Why? A single agent keeps a complete memory stream with constant-time access to all prior reasoning (global context). Multi-agent splits memory into fragments — each agent only sees its assigned slice. After 10 interaction rounds, two agents' world-state overlap drops to just 34% — they drift apart into separate worlds.
Data:
| Benchmark | Single-agent baseline | Multi-agent result | Verdict | |-----------|------------|-------------|---------| | PlanCraft | 56.8% | −39% ~ −70% | Collapse | | SWE-bench | 52.2% | −2% ~ −15% | Slight drop | | Finance | 34.9% | +74% ~ +81% | Huge gain | | BrowseComp | 31.8% | −35% ~ +9% | Mixed |
Rule: single-agent baseline < 45% → multi-agent may help; baseline > 45% → multi-agent likely hurts.
Pattern 2: The Tool–Coordination Tradeoff — "More Tools, More Coordination Tax"
Statistical evidence: β̂ = −0.096, p = 0.002
Every additional tool adds to the multi-agent coordination tax. Workbench has 16 tools (email, calendar, spreadsheets, CRM...). On this task, multi-agent efficiency (success rate / overhead) collapsed to 1/6.3 of single-agent.
Each agent's token budget gets eaten by coordination messages. Context that could go toward understanding tools goes to reading teammates' updates:
- Single agent: 100% of tokens → reasoning + tools
- Multi-agent (Hybrid): tokens split n ways, each slice reserving room for coordination → effective reasoning tokens may fall to ~30%
- >45%? Don't add agents yet — optimize prompts and tools.
- <45%? Consider multi-agent, but pick the right architecture.
- Efficiency E_c = success rate / total overhead (higher is better)
- Error amplification Aᵉ_trace (lower is better)
- Redundancy R (moderate is best; too high wastes tokens)
- MAS average improvement: −0.3% (yes, negative)
- Standard deviation: 37.5%
- Range: −70% to +81%
Key insight: tool-heavy tasks (>10 tools) favor single agents or minimal coordination.
Pattern 3: Error Amplification — "No Goalkeeper, Own Goal"
Statistical evidence: cross-architecture differences up to 17.2× vs 4.4×
| Architecture | Error amplification | Mechanism | |------|-------------|------| | Independent | 17.2× | No verification, errors propagate freely | | Decentralized | 7.8× | Debate catches some, but no authoritative arbiter | | Hybrid | 5.1× | Mixed verification, partial containment | | Centralized | 4.4× | Orchestrator as verification bottleneck, intercepts errors | | SAS | 1.0× | Baseline |
In the Independent architecture, one agent's mistake is unknown to others, the aggregator doesn't verify, and the error goes straight to the user — snowballing. In the Centralized architecture, an orchestrator reviews each sub-agent's output like a project manager, intercepting errors before they spread (at the cost of O(r·n) communication overhead).
Key insight: for low fault-tolerance tasks (finance, medical, safety), use architectures with a verification bottleneck. Independent architectures suit only decomposable + independently verifiable subtasks.
---
4. Quantitative Rules: Which Architecture, When
The paper derives operational architecture-selection rules with 87% predictive accuracy (random choice: 20%).
P_SA ≈ 0.45 (45%) is the single-agent vs multi-agent decision boundary.
Three task archetypes
| Task type | Typical parameters | Recommended architecture | Rationale | |----------|----------|--------|---------| | Planning | Few tools (T=4), high baseline (P_SA=0.57) | Single agent | Baseline paradox + sequential dependency | | Analysis | Medium tools (T=5), low baseline (P_SA=0.35) | Centralized MAS | Error control (Aᵉ=4.4) + decomposability | | Tool-heavy | Many tools (T=16), high baseline (P_SA=0.63) | Decentralized MAS | Parallelism + redundancy offset efficiency loss |
The positive effect of redundancy
An easily missed finding: redundancy × agent count has a positive interaction (β̂ = 0.024, p = 0.034). A 4-agent system with redundancy R=0.5 gains ~5% performance — multiple agents attacking from different angles cover more blind spots, but only with an orchestrator integrating results.
---
5. Cross-Model Consistency: A "Universal" Law
Experiments covered OpenAI, Google, and Anthropic models. The relative ranking of architecture preferences is highly consistent across model families (CV < 0.02).
This means it's not that GPT suits multi-agent and Claude suits single-agent — rather: task structure determines the optimal architecture; the model is just an amplifier. Like physical laws not depending on your brand of scale, the agent scaling law doesn't depend on which LLM you use.
---
6. Practical Advice for Vibecoders
1. Measure your single-agent baseline first
Don't start by building multi-agent. Run the strongest single-agent setup first and check accuracy.2. Count your tools
| Tool count | Recommendation | |----------|----------| | ≤4 | Single agent or Centralized | | 5–10 | Centralized or Hybrid | | >10 | Use multi-agent cautiously, or switch to Decentralized |
3. Ask three questions before choosing an architecture
1. Is the task decomposable? → Yes: consider MAS; strong sequential dependency: stick with SAS 2. Is the cost of error high? → High: must use Centralized (verification bottleneck); Low: Independent is fine 3. Do you need exploratory diversity? → Yes: Decentralized debate; No: Centralized suffices4. Monitor three metrics
5. Beware "more agents is all you need"
The paper opens by pushing back on that claim. The data:---
7. Relation to Prior Work
| Paper | Topic | Relation | |------|------|----------| | Deli AutoResearch series (2025) | Autonomous research agents | Centralized architecture resembles Deli's "orchestrator" role | | CoEvolve (ACL26) | Agent–data co-evolution | The baseline paradox: confirm the baseline before evolving the environment | | Planning with Files | Agent working ledgers | The 34% state-overlap problem can be mitigated with progress.md | | The 44K-star prompt leak | System prompt engineering | Anthropic's 120K-token prompt is ~30% tool definitions — validating the importance of tool overhead |
---
8. Limitations
The authors are candid: 1. R² = 0.373 — the model explains 37% of variance; 63% remains uncaptured 2. Only text agents tested; no multimodal 3. Only small teams (2–4 agents); no large-scale swarms 4. Agent count (nₐ) main effect not significant — structure matters more than quantity
---
9. Conclusion
This paper is a belated "coming of age" gift to the agent community:
> The value of multi-agent collaboration is not a given — it can be predicted, quantified, and optimized.
Three core laws: 1. The 45% rule — above a 45% single-agent baseline, adding agents most likely loses 2. The tool tax rule — every extra tool adds to the multi-agent coordination tax 3. The verification rule — architectures without a verification bottleneck amplify errors 17×
For vibecoders like @steper, this means: run the numbers with these three laws before building a multi-agent system — far more important than blindly stacking agent count.
---
Reference
Kim, Y.B., et al. "Towards a Science of Scaling Agent Systems." arXiv preprint arXiv:2512.08296 (2025).