INQUIRING LINE

When AI is trained to get answers right, why does it end up thinking through every problem the same way?

Why does standard RL cause traces to collapse into redundant reasoning paths?

This explores why ordinary reinforcement learning, which rewards each reasoning trace for being individually correct, tends to squeeze a model's outputs toward the same few redundant solution paths instead of a diverse set.


This explores why ordinary RL — which scores each reasoning trace on whether it individually reaches the right answer — tends to funnel a model's outputs into a handful of near-identical paths rather than a spread of different attempts. The clearest account of the mechanism comes from set-level reinforcement learning: when the reward lands on each trace separately, the optimizer's only incentive is to make every trace look more like the current best-known correct trace. Diversity has no reward attached to it, so it decays, and you end up with a batch of confident traces that all say the same thing. The alternative that exposes the problem is to reward a *set* of traces for being collectively useful — under that objective, several mediocre-but-different traces beat several redundant strong ones, because an aggregator needs varied raw material to arbitrate rather than repeated confirmation Can diverse mediocre traces outperform redundant expert traces?.

Why does per-trace optimization pull toward redundancy specifically? Part of the answer is that RL post-training mostly isn't teaching new reasoning — it's tuning *when* to deploy reasoning the base model already contains. If the capability is latent and RL is optimizing deployment timing, then the fastest way to raise average reward is to converge hard on whichever pre-existing path scores well and stop sampling the others Does RL post-training create reasoning or just deploy it?. That collapse toward one route is visible at decoding time too: reasoning models 'wander' and then switch away from promising paths prematurely, behaving like tourists who abandon a good trail rather than scientists who follow it — a structural disorganization, not a compute shortage, which suggests the good paths exist but the training pressure isn't rewarding sticking with diverse ones Why do reasoning models abandon promising solution paths?.

There's also a subtler cost hiding inside 'correct' traces. Even traces that reach the right answer can carry redundant tails — reasoning that continues after the answer is already settled — and that post-conclusion padding actively *harms* downstream fine-tuning, more than removing an equally long random chunk would Does every correct chain-of-thought trace improve fine-tuning?. Correctness-only rewards can't see this, because they look at the final answer, not the shape of the path. The same blind spot shows up when you realize corrupted or irrelevant traces can teach nearly as well as clean ones — traces often function as computational scaffolding rather than meaningful logic — so an objective that grades only the endpoint has no way to prefer a genuinely different route over a redundant one Do reasoning traces need to be semantically correct?.

The fixes in the corpus all work by putting reward back onto diversity or on the *process* rather than the endpoint. Asymmetric trajectory filtering keeps positive traces clean but deliberately preserves varied failures as negative signal, letting a 14B model reach frontier math performance precisely because it doesn't discard the diversity in its wrong answers Why do correct code trajectories teach models to tolerate errors?. Process-level verification catches errors mid-trace that final-answer scoring misses entirely — raising success from 32% to 87% — which reframes reliability as checking how you got there, not just where you landed Where do reasoning agents actually fail during long traces?. And difficulty-aware schemes hand partial solution traces as guidance only where reward is otherwise sparse, converting problems that would collapse into a single memorized path into genuine exploration signal Can adaptive guidance from solution traces reduce reward sparsity in RL?. The thread across all of them: redundancy is what you get when the reward function can only see individual endpoints — the moment you reward the collective, the process, or preserved variety, the traces stop collapsing.


Sources 8 notes

Can diverse mediocre traces outperform redundant expert traces?

SPIRAL shifts RL reward from individual traces to sampled sets, optimizing for complementarity rather than per-trace accuracy. Diverse mediocre traces outperform redundant strong ones because aggregators need raw material to arbitrate, not confirmation.

Does RL post-training create reasoning or just deploy it?

Evidence shows base models already contain reasoning capability in latent form; RL training optimizes deployment timing rather than capability creation. Hybrid models recover 91% of performance gains by routing tokens only, and activation vectors for reasoning strategies pre-exist before any RL.

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.

Does every correct chain-of-thought trace improve fine-tuning?

Post-conclusion reasoning—where the model keeps exploring after sufficient evidence for the answer—degrades supervised fine-tuning despite preserving correctness. Removing only this tail improves learning more than removing equally-long random suffixes, proving the harm comes from unnecessary exploration, not length.

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.

Show all 8 sources
Why do correct code trajectories teach models to tolerate errors?

GRPO-RoC filters positive trajectories for quality while preserving diverse failures as negative signal, allowing a 14B model to reach frontier math performance in 510 RL steps, surpassing much larger models with cleaner reasoning.

Where do reasoning agents actually fail during long traces?

Reliability for long-trace reasoning comes from checking intermediate states and policy compliance during generation, not from scoring final outputs. Adding intermediate verification raised task success from 32% to 87% because most failures are process violations, not wrong answers.

Can adaptive guidance from solution traces reduce reward sparsity in RL?

GHPO dynamically provides ground-truth solution traces for hard problems while using standard RL for manageable ones, achieving 5% gains across math benchmarks. This converts wasted compute on impossible problems into learning signal by leveraging traces already present in training data.

Papers this line draws on 8

The research behind the notes this line reads — ranked by how closely each paper relates.

Research prompt for your LLMexpand ↓

Copy into ChatGPT or Claude to take this line of inquiry further — it asks the model to find newer work and re-test which earlier constraints still hold.

You are a research analyst. Question, still open: why does standard RL collapse a model's reasoning traces into a few redundant, near-identical paths rather than a diverse spread of attempts?

What a curated library found — and when (dated claims, not current truth). These findings span 2025–2026:
- Per-trace reward attaches nothing to diversity, so diversity decays; reward a *set* of traces collectively and several mediocre-but-different traces beat several redundant strong ones (~2026).
- RL post-training mostly tunes *when* to deploy latent reasoning, not new capability — so the fastest way to raise average reward is to converge hard on one pre-existing path and stop sampling others (~2025).
- Reasoning models 'wander,' abandoning promising paths prematurely — structural disorganization, not a compute shortage (~2025).
- Corrupted or irrelevant traces teach nearly as well as clean ones; traces act as computational scaffolding, so endpoint-only rewards can't prefer a genuinely different route (~2025).
- Process-level verification lifted success 32%→87%; asymmetric filtering let a 14B model reach frontier math by preserving diverse failures (~2025).

Anchor papers (verify; mind their dates): Reasoning LLMs are Wandering Solution Explorers (arXiv:2505.20296, 2025); Beyond Semantics: Reasonless Intermediate Tokens (arXiv:2505.13775, 2025); GHPO: Adaptive Guidance (arXiv:2507.10628, 2025); Diagnosing Harmful Continuation in Answer-Correct Long-CoT (arXiv:2605.29288, 2026).

Your task: (1) RE-TEST EACH CONSTRAINT. For every finding, judge whether newer models, training/methods, tooling, orchestration (multi-agent, set-level or GRPO variants), or evaluation have RELAXED or OVERTURNED it. Separate the durable question (why per-endpoint reward kills diversity) from the perishable limitation; cite what resolved it, and say where a constraint still holds. (2) Surface the strongest CONTRADICTING or SUPERSEDING work from the last ~6 months, foregrounding the live disagreement over whether set-level/process rewards actually beat cleaned per-trace RL. (3) Propose 2 research questions that ASSUME the regime may have moved. Cite arXiv IDs; flag anything you cannot ground in a real paper.