INQUIRING LINE

Hard reasoning forces an AI's internal signal through far more twists and turns than simple word substitution does.

What distinguishes the convergence patterns between reasoning and lexical variation tasks?

This explores a specific finding — that reasoning tasks and simple lexical/word-substitution tasks leave very different geometric 'signatures' as an LLM processes them — and asks what that difference actually tells us about how the two kinds of work move through the model.


This reads the question as being about the geometry of what happens *inside* the model — the path a prompt's representation traces as it moves layer to layer — and how that path differs between hard reasoning and shallow lexical variation. The sharpest anchor here is the finding that the forward pass is a geometric trajectory whose curvature encodes task difficulty: reasoning and analogy tasks bend that path 2-3x more sharply (mean curvature 0.71–0.83 rad) than lexical tasks (0.27–0.31 rad) Does transformer reasoning leave a geometric signature in representation space?. Lexical variation is nearly a straight shot — the model barely has to change direction — while reasoning forces the representation to keep turning. So the two don't 'converge' the same way at all: one settles quickly, the other carves.

What makes this interesting is that the corpus keeps finding the same split from completely different angles. If reasoning genuinely required a longer, more curved internal path, you'd expect that path to be fragile — and it is. Chain-of-thought reasoning degrades predictably the moment you push it outside its training distribution, producing fluent-but-invalid steps Does chain-of-thought reasoning actually generalize beyond training data?, and several notes argue this is because CoT is really constrained imitation of a reasoning *form*, replaying familiar schemata rather than doing novel inference Does chain-of-thought reasoning reveal genuine inference or pattern matching?. Lexical substitution has no such cliff because there's no multi-step structure to break. The high curvature of reasoning isn't a sign of robustness — it's the model working hard to stay on a memorized track.

That framing also explains where reasoning breaks. Failures cluster not at some complexity threshold but at instance-level *unfamiliarity* — the model fits instance-specific patterns and any chain succeeds if it has seen similar instances Do language models fail at reasoning due to complexity or novelty?. And when you look at token-level errors, most come from *local* memorization keyed to the immediately preceding tokens, which dominates as complexity rises Where do memorization errors arise in chain-of-thought reasoning?. A lexical task barely leans on this machinery; a reasoning task leans on it constantly, which is why its trajectory bends and why it's so distribution-sensitive.

The twist worth carrying away: the curved, effortful path of reasoning is partly optional. Optimal CoT length follows an inverted-U, and more capable models actually prefer *shorter* chains — simplicity emerges from reward, not from dumbing down Why does chain of thought accuracy eventually decline with length?. Minimal 'draft' chains match verbose ones at 7.6% of the tokens because the removed 92% was style and documentation, not computation Can minimal reasoning chains match full explanations?, and verbosity turns out to be a single steerable direction in activation space Can we steer reasoning toward brevity without retraining?. So part of what looks like reasoning's heavier convergence pattern is padding — and when models collapse, it's often an *execution* bottleneck (they know the algorithm but can't run it step-by-step in text) rather than a failure of the reasoning path itself Are reasoning model collapses really failures of reasoning?. The lexical-vs-reasoning geometry gap is real, but a chunk of the gap is the model spending motion on things that don't move the answer.


Sources 9 notes

Does transformer reasoning leave a geometric signature in representation space?

Measuring intrinsic geometry across multiple models shows reasoning and analogy tasks carve paths with mean curvature of 0.71–0.83 rad, while lexical tasks produce only 0.27–0.31 rad, suggesting path geometry encodes task difficulty.

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.

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.

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.

Where do memorization errors arise in chain-of-thought reasoning?

STIM framework identifies local, mid-range, and long-range memorization sources in CoT reasoning. Local memorization—based on preceding tokens—accounts for up to 67% of reasoning errors, especially as complexity increases and distributional shift occurs.

Show all 9 sources
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.

Can minimal reasoning chains match full explanations?

Chain of Draft achieves equivalent accuracy to standard chain-of-thought on arithmetic, symbolic, and commonsense tasks while using only 7.6% of tokens. The 92.4% of removed tokens served style and documentation, not computation.

Can we steer reasoning toward brevity without retraining?

Activation-Steered Compression extracts a single vector from 50 paired examples to reduce chain-of-thought length by 67% while maintaining accuracy and achieving 2.73x speedup. The method is training-free and generalizes across model sizes and domains.

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.

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 mechanistic-interpretability analyst. Still-open question: what actually distinguishes how reasoning tasks vs. shallow lexical-variation tasks converge inside a transformer's forward pass?

What a curated library found — and when (dated claims, not current truth; span ~2024–2026):
- The forward pass is a geometric trajectory whose curvature encodes difficulty — reasoning/analogy bend 2–3x more sharply (mean curvature 0.71–0.83 rad) than lexical tasks (0.27–0.31 rad), which are nearly a straight shot.
- CoT degrades predictably out of distribution, producing fluent-but-invalid steps — argued to be constrained imitation of a reasoning *form*, not novel inference (~2025).
- Reasoning failures cluster at instance-level unfamiliarity, not a task-complexity threshold; any chain succeeds given similar seen instances (~2026).
- Most token errors are *local* memorization keyed to preceding tokens, dominating as complexity rises (~2025).
- Optimal CoT length is an inverted-U; capable models prefer *shorter* chains, and concise drafts match verbose accuracy at 7.6% of tokens — verbosity is one steerable activation direction (~2025).

Anchor papers (verify; mind their dates): arXiv:2508.01191 (Mirage? data-distribution lens, 2025); arXiv:2506.02878 (CoT as tight imitation constraint, 2025); arXiv:2502.07266 (When More is Less, 2025); arXiv:2602.06176 (LLM Reasoning Failures, 2026).

Your task: (1) RE-TEST EACH CONSTRAINT. For every finding, judge whether newer models, training, tooling, orchestration (memory, tool-use, multi-agent), or evaluation has RELAXED or OVERTURNED it; separate the durable geometry question from perishable limits; cite what resolved it, and say where a constraint still holds. (2) RECONCILE THE THREADS — do the curvature, memorization, and verbosity findings describe one mechanism or several? Surface the strongest superseding work from the last ~6 months. (3) Propose 2 research questions assuming the regime moved.

Cite arXiv IDs; flag anything you cannot ground in a real paper.