INQUIRING LINE

Is reasoning failure caused by task complexity or training distribution gaps?

This explores a false binary: when a model flubs a hard reasoning problem, is it because the problem is intrinsically too complex, or because the model never saw anything like it in training? The corpus comes down hard on one side — and then complicates it.


This explores whether reasoning breaks down because problems get too complex or because they drift away from what the model was trained on. The corpus is unusually decisive: it's the second one — but the more interesting finding is that "task complexity" turns out to be a mirage that mostly tracks novelty. One study finds that large reasoning models don't hit a wall at some complexity threshold at all; they fail at *instance-level unfamiliarity* Do language models fail at reasoning due to complexity or novelty?. A long reasoning chain succeeds fine if the model trained on similar instances, and a short one fails if it didn't. Models are fitting instance-shaped patterns, not learning general algorithms — so what looks like "this problem is too hard" is often "this problem is too unfamiliar."

That reframes chain-of-thought itself. CoT degrades *predictably* as you push tasks, lengths, or formats outside the training distribution, producing fluent prose that's logically broken Does chain-of-thought reasoning actually generalize beyond training data?. The reason it's so brittle: CoT is closer to constrained imitation than abstract inference — the model pattern-matches the *shape* of reasoning rather than executing it Why does chain-of-thought reasoning fail in predictable ways?. The most startling evidence is that you can train models on deliberately corrupted, irrelevant reasoning traces and they perform about as well, sometimes generalizing *better* — the traces work as computational scaffolding, not meaningful logic Do reasoning traces need to be semantically correct?. If the steps don't even need to be correct, then "complexity of the reasoning" was never really the load-bearing variable.

But the distribution story isn't the whole picture, and this is where it gets surprising. Several notes argue the bottleneck isn't training coverage *or* complexity — it's plumbing. Reasoning accuracy collapses from 92% to 68% with just 3,000 tokens of padding, far below the context window, in a way that's task-agnostic and uncorrelated with general language ability Does reasoning ability actually degrade with longer inputs?. And the dramatic "reasoning cliff" on hard puzzles partly evaporates when models get tools: many failures are *execution* failures — the model knows the algorithm but can't run enough steps by hand in text Are reasoning model collapses really failures of reasoning?. Others trace failure to disorganized search: models wander invalidly and abandon promising paths prematurely, and simple decoding tweaks recover accuracy with no retraining at all Why do reasoning models abandon promising solution paths?, Why do reasoning LLMs fail at deeper problem solving?. If a decoding penalty fixes it, the capability was already there — it was being squandered, not missing.

That thread connects to a striking claim about where capability lives. Base models already contain latent reasoning that five independent methods — RL steering, critique tuning, decoding changes, SAE feature steering, RLVR — all merely *elicit* rather than create; post-training selects reasoning, it doesn't install it Do base models already contain hidden reasoning ability?. Pretraining seeds this through broad, transferable *procedural* knowledge drawn from many documents, unlike factual recall which depends on narrow memorization Does procedural knowledge drive reasoning more than factual retrieval?. So the "training distribution gap" isn't about missing facts — it's about whether the right procedural patterns got laid down and can be elicited.

The honest synthesis: "task complexity vs. training gaps" dissolves under scrutiny. Complexity mostly proxies for novelty; novelty is really a procedural-coverage-and-elicitation problem; and a large chunk of what's left is execution bandwidth and search discipline rather than reasoning capacity at all. The thing you didn't know you wanted to know: reasoning models persistently beat non-reasoning ones *no matter how much inference compute you throw at the weaker model*, because training instills a protocol that makes extra tokens productive — the gap is structural, not a matter of trying harder at test time Can non-reasoning models catch up with more compute?. And training the reasoning protocol isn't free: because knowledge sits in lower network layers and reasoning adjustment in higher ones, reasoning training that helps math can actively *degrade* knowledge-heavy domains like medicine Why does reasoning training help math but hurt medical tasks?.


Sources 12 notes

Do language models fail at reasoning due to complexity or novelty?

LRMs don't break at complexity thresholds but at instance-novelty boundaries. Models fit instance-based patterns rather than generalizable algorithms, so any reasoning chain succeeds if trained on similar instances, regardless of length.

Does chain-of-thought reasoning actually generalize beyond training data?

DataAlchemy experiments show CoT fails systematically under distributional shifts in task, length, and format. Models produce fluent but logically inconsistent reasoning — imitating reasoning form without valid underlying logic.

Why does chain-of-thought reasoning fail in predictable ways?

CoT guides models to pattern-match reasoning structure rather than perform genuine inference. This explains distribution-bounded failures, why structural coherence matters more than content correctness, and why performance optimizes against interpretability.

Do reasoning traces need to be semantically correct?

Models trained on systematically irrelevant traces maintain solution accuracy and sometimes improve out-of-distribution generalization, suggesting traces function as computational scaffolding rather than meaningful reasoning steps.

Does reasoning ability actually degrade with longer inputs?

FLenQA shows reasoning accuracy drops from 92% to 68% at just 3000 tokens of padding, far below context window capacity. The degradation is task-agnostic, uncorrelated with language modeling performance, and persists even with chain-of-thought prompting.

Are reasoning model collapses really failures of reasoning?

Models confined to text-only generation cannot execute multi-step procedures at scale, even when they know the underlying algorithm. Tool-enabled models solve problems beyond the supposed reasoning cliff, suggesting the bottleneck is procedural execution bandwidth.

Why do reasoning models abandon promising solution paths?

Reasoning LLMs exhibit two reinforcing failures: wandering (invalid exploration) and underthinking (premature path-switching). Decoding-level interventions like thought-switching penalties improve accuracy without fine-tuning, suggesting viable solutions exist but are abandoned prematurely.

Why do reasoning LLMs fail at deeper problem solving?

Current reasoning models lack the three properties of systematic exploration: validity, effectiveness, and necessity. This causes success probability to drop exponentially with problem depth, making medium problems solvable but deep problems catastrophically harder.

Do base models already contain hidden reasoning ability?

Five independent mechanisms—RL steering, critique fine-tuning, decoding changes, SAE feature steering, and RLVR—all elicit reasoning already present in base model activations. Post-training selects rather than creates reasoning; the bottleneck is elicitation, not capability acquisition.

Does procedural knowledge drive reasoning more than factual retrieval?

Analysis of 5 million pretraining documents shows reasoning relies on broad, transferable procedural knowledge from diverse sources, unlike factual recall which depends on narrow, document-specific memorization of target facts.

Can non-reasoning models catch up with more compute?

Reasoning models persistently outperform non-reasoning models regardless of inference budget because training instills a reasoning protocol that makes additional tokens productive. The gap is fundamentally about deployment mechanisms and training structure, not raw capability.

Why does reasoning training help math but hurt medical tasks?

Two-phase inference model shows knowledge retrieval operates in lower network layers while reasoning adjustment happens in higher layers. This separation explains why reasoning training improves math but can degrade knowledge-intensive domains like medicine.

Next inquiring lines