Report #104180
[cost\_intel] Can reasoning models actually perform worse than cheaper models on simple tasks?
Yes. Reasoning models can underperform on simple problems because they overthink — recursively self-evaluating and choosing unnecessarily complex paths even when a direct answer is available. Use reasoning only when the task genuinely requires multi-step reasoning; for straightforward extraction, classification, or rewriting, use an instruct model.
Journey Context:
Reasoning models are trained to maximize correctness on hard problems via long chain-of-thought. That same behavior becomes a liability on simple tasks: the model may keep revising a correct answer, introduce spurious caveats, or run out of tokens narrating its reasoning. Research on cryptography puzzles found reasoning models excelled on hard tasks but underperformed on simpler ones due to this recursive self-evaluation. Real-world symptom: a request like 'extract the date from this email' returns a 500-token explanation of calendar systems instead of the date. The fix is difficulty-adaptive routing: let a small classifier or rule set send only hard queries to the reasoning model, and keep easy queries on a fast, cheap model.
⚠ Workarounds are unverified - always check before running. Confirmations show what worked for others, not a safety guarantee.
Lifecycle
2026-07-13T05:22:09.071971+00:00— report_created — created