INQUIRING LINE

Does an AI write long answers because each step depends on the last, or just because you asked for length?

How do causal chains enforce long-horizon length differently than instruction-based tasks?

This explores whether long outputs held together by step-by-step dependency (each step needs the one before) behave differently from long outputs produced because an instruction asked for them, and the corpus has no study that compares the two head-to-head.


This explores whether long outputs held together by step-by-step dependency behave differently from long outputs produced because an instruction asked for them. No note in the corpus tests the two side by side, so what follows is a synthesis from adjacent findings, not a documented result.

Start with the instruction side. Instruction tuning appears to teach the shape of the output more than the task: models trained on empty or even deliberately wrong instructions score about the same as models trained on correct ones (Does instruction tuning teach task understanding or output format?). If that holds for length too, an instruction like 'think step by step at length' gets you something that looks like a long chain. The same pattern shows up in reasoning traces: length tracks difficulty only on problems near the training distribution, and decouples from it elsewhere (Does longer reasoning actually mean harder problems?). Chain-of-thought looks like constrained imitation of reasoning form, not inference (Does chain-of-thought reasoning reveal genuine inference or pattern matching?, Why does chain-of-thought reasoning fail in predictable ways?). Even the best length isn't 'as long as possible'. Accuracy peaks at a middle length, and RL training pushes models toward shorter chains as they improve (Why does chain of thought accuracy eventually decline with length?).

The causal side has a useful test. Fine-tuned models produce reasoning chains that matter less to the final answer. Cut the chain short, paraphrase it, or swap in filler, and the answer stays the same more often (Does fine-tuning disconnect reasoning steps from final answers?). That gives a working definition (my reading, not the paper's wording). A chain is causal when removing a step changes the outcome. A chain is instruction-shaped when its length is decoration. So a causal chain enforces length because every link is load-bearing, whereas an instruction can only ask for length.

The corpus also shows two ways to make the dependency real by building it into the system instead of asking the model for it. LLM Programs put an explicit algorithm in charge of control flow. Each model call sees only the context its own step needs, so the number and order of steps live in the program, not in the model's willingness to keep going (Can algorithms control LLM reasoning better than LLMs alone?). The Thread Inference Model does something similar inside one model. It structures reasoning as recursive subtask trees and prunes the KV cache down to what the current branch needs, which lets reasoning run past the context limit (Can recursive subtask trees overcome context window limits?). In both, horizon length is a property of the dependency structure. Neither depends on how long an instruction says to go.

Structure doesn't guarantee competence, though. Frontier reasoning models reach only 20–23% exact match on constraint problems that require real backtracking, even though their reflection reads fluently (Can reasoning models actually sustain long-chain reflection?). A separate line of work suggests the long-context bottleneck is the compute needed to turn old context into usable internal state, not memory capacity (Is long-context bottleneck really about memory or compute?). The corpus also has two notes on how LLMs reason about cause and effect. They are a different question, but they show the model's handling of causal links is uneven. LLMs are better with explicit causal connectives than with implicit temporal order (Why do LLMs handle causal reasoning better than temporal reasoning?), and they share human errors such as weak explaining-away (Do large language models make the same causal reasoning mistakes as humans?).


Sources 12 notes

Does instruction tuning teach task understanding or output format?

Models trained on semantically empty or deliberately incorrect instructions achieve comparable performance to those trained on full correct instructions, achieving 43% vs random baseline 42.6%. The semantic content of instructions appears largely irrelevant; what transfers is knowledge of the output space.

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.

Does chain-of-thought reasoning reveal genuine inference or pattern matching?

CoT works by constraining models to reproduce familiar reasoning patterns from training, not by enabling novel symbolic reasoning. Performance degrades predictably under distribution shifts—the signature of imitation rather than capability emergence.

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.

Why does chain of thought accuracy eventually decline with length?

Task accuracy peaks at intermediate CoT length, with optimal length increasing alongside task difficulty but decreasing with model capability. RL training naturally gravitates toward shorter chains as models improve, revealing that simplicity emerges from reward signals rather than explicit training.

Show all 12 sources
Does fine-tuning disconnect reasoning steps from final answers?

Three faithfulness tests show fine-tuned models generate reasoning chains that less reliably influence final outputs. Early termination, paraphrasing, and filler substitution all produce invariant answers more often after fine-tuning, suggesting reasoning becomes performative rather than functional.

Can algorithms control LLM reasoning better than LLMs alone?

LLM Programs embed LLMs within explicit algorithms that manage control flow and state, presenting only step-specific context to each LLM call. This information hiding addresses capability and context window limits while treating complex reasoning as modular, debuggable sub-tasks.

Can recursive subtask trees overcome context window limits?

The Thread Inference Model demonstrates that reasoning structured as recursive subtask trees with rule-based KV cache pruning sustains accurate reasoning beyond context limits, even when manipulating 90% of the cache. This enables single models to replace multi-agent systems by handling full recursive reasoning internally.

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.

Is long-context bottleneck really about memory or compute?

Research shows the bottleneck is not memory capacity but the compute required to consolidate evicted context into fast weights during offline sleep phases. Performance improves with more consolidation passes, following a test-time scaling pattern on harder reasoning tasks.

Why do LLMs handle causal reasoning better than temporal reasoning?

ChatGPT excels at causal relations but struggles with temporal ordering because causal connectives are explicit and frequent in training data, while temporal order is often implicit and must be inferred contextually.

Do large language models make the same causal reasoning mistakes as humans?

LLMs show weak explaining away and Markov violations in collider networks, matching human error patterns exactly. This suggests shared mechanisms rooted in training data statistics rather than categorical reasoning inferiority.

Papers this line draws on 8

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