INQUIRING LINE

When an AI thinks for pages on end, why does it loop, wander, and pile on steps that don't help?

What causes reasoning loops and distraction in models with very long traces?

This explores why models that produce very long reasoning traces end up circling back, drifting off track, or piling on steps that don't help, and what the corpus says causes it.


This explores why models that produce very long reasoning traces end up circling, drifting, or piling on steps that don't help. The corpus has no note that measures repetition loops directly, but several notes point to the same cause. Long traces are a habit the model was trained into and never taught to stop, and they are not a sustained line of thought that gets diluted over time.

The closest match to "loops" is Why do reasoning models abandon promising solution paths?. It describes two failures that feed each other. Models wander, meaning they explore invalid paths. They also underthink, switching away from a promising path too early. The paper's point is that the problem is disorganization, not too little compute. A penalty on thought-switching at decoding time improves accuracy without any retraining. That suggests the good path was often already in the trace and got abandoned. A model that drops a path and later restarts it looks like a loop from outside.

The second cause is that nothing in training teaches the model when to stop. Why do reasoning models overthink ill-posed questions? finds that reasoning models write long, redundant answers to questions with missing premises. Non-reasoning models correctly say the question can't be answered. Training rewards producing reasoning steps and never teaches disengaging. Does every correct chain-of-thought trace improve fine-tuning? shows the habit is also in the training data. Traces that keep exploring after the answer is already settled hurt fine-tuning even when the answer is right. Cutting only that tail helps more than cutting an equally long random chunk, so the harm comes from the pointless exploration and not from the length.

Third, a long trace is not a sign of hard thinking. Does longer reasoning actually mean harder problems? finds that trace length tracks difficulty only on problems close to the training data, and decouples from difficulty entirely outside it. Do language models fail at reasoning due to complexity or novelty? locates the breaking point in how unfamiliar the specific instance is, not in how complex the task is. Can reasoning models actually sustain long-chain reflection? shows the result. Frontier models manage only 20–23% on puzzles that require real backtracking, despite fluent "let me reconsider" language. When a problem is unfamiliar, the model keeps producing the form of deliberation without the ability to make progress. What makes chain-of-thought reasoning fail in language models? reaches a similar verdict, that format matters more than content.

Distraction is less harmful than you might expect, because much of the clutter is inert. Can models think longer by forgetting intermediate reasoning? finds that most intermediate tokens quickly stop mattering. Keeping only the instruction and a recent window gives a 3x speedup and lets traces run past 100k tokens. Do reasoning traces actually show how models think? adds that most erroneous steps in a trace never influence the final answer. The model largely ignores its own sprawl, and the cost is wasted tokens. The exception is input noise. Can longer reasoning chains eliminate model sensitivity to input noise? proves that longer chains reduce sensitivity to perturbed input but never remove it. What the corpus lacks is a direct account of repetition loops, such as degenerate cycles or attention dilution over huge contexts. The causes above come from training incentives and unfamiliarity, and none of these notes tests a mechanism inside long contexts.


Sources 10 notes

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 models overthink ill-posed questions?

Reasoning models generate redundant, lengthy responses to questions with missing premises while non-reasoning models correctly identify them as unanswerable. Training optimizes for producing reasoning steps but never teaches models when to disengage.

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.

Does longer reasoning actually mean harder problems?

Controlled A* maze experiments show trace length correlates with difficulty only in-distribution but decouples entirely out-of-distribution. Trace length primarily reflects recall of training schemas, not adaptive computation.

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.

Show all 10 sources
Can reasoning models actually sustain long-chain reflection?

DeepSeek-R1 and o1-preview achieve only 20-23.6% exact match on 850 constraint satisfaction problems requiring genuine backtracking. This ceiling reveals that reflective reasoning fluency does not translate to actual problem-solving competence on unfamiliar instance structures.

What makes chain-of-thought reasoning fail in language models?

Research shows CoT mirrors reasoning form without true logical abstraction. Format matters more than content, invalid prompts work as well as valid ones, and scaling reasoning creates instruction-following deficits.

Can models think longer by forgetting intermediate reasoning?

Most intermediate reasoning tokens become unimportant as reasoning progresses, so keeping only the instruction prefix and a recent window achieves 3x speedup without training while enabling traces beyond 100k tokens.

Do reasoning traces actually show how models think?

ReasoningFlow found that most erroneous steps in traces don't influence final answers, and critically, the discourse structure traces present linguistically does not match their actual internal causal pathways. This gap suggests traces are narrative surface rather than verified computation logs.

Can longer reasoning chains eliminate model sensitivity to input noise?

Lipschitz continuity analysis proves that while additional reasoning steps reduce perturbation propagation, a non-zero robustness floor exists structurally. Sensitivity decreases with stronger embedding and hidden state norms but never reaches zero.

Papers this line draws on 8

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