When a model reasons through several steps, is it traveling a path through a hidden map of meaning?
What role does embedding space geometry play in multi-hop reasoning?
This explores whether the *shape* of where meanings sit in a model's internal space — distances, angles, curvature of the path through it — actually does the work when a model chains one fact into the next, or whether geometry is just an incidental byproduct.
This explores whether the *shape* of a model's internal representation space — how entities cluster, the angles between them, the curve of the path a forward pass traces — is what enables reasoning across multiple steps. The corpus suggests geometry isn't decoration on top of reasoning; it's where the reasoning is visibly happening. The clearest evidence comes from watching multi-hop skill emerge during training: successful cross-step reasoning shows up as *cosine clustering* of entity representations, meaning the model literally pulls related concepts into the same angular neighborhood before it can compose them How do transformers learn to reason across multiple steps?. Reasoning, in other words, has a geometric fingerprint you can measure.
That fingerprint isn't only about *where* things sit but *how the model moves through* the space. Measuring the intrinsic geometry of the forward pass shows that genuine reasoning and analogy tasks carve high-curvature paths (0.71–0.83 rad) while shallow lexical tasks trace nearly straight lines (0.27–0.31 rad) — the harder the composition, the more the trajectory bends Does transformer reasoning leave a geometric signature in representation space?. And the geometry is richer than distance alone: a polar-coordinate probe finds LLMs encode *both* the type and the direction of a relation using distance *and* angle between embeddings, nearly doubling accuracy over distance-only methods How do language models encode syntactic relations geometrically?. Direction matters because multi-hop reasoning is directional — A relates to B relates to C — and angular structure is how the model keeps the arrows pointing the right way.
Here's the twist a curious reader might not expect: if geometry carries the reasoning, you can *intervene* on it. Because distinct kinds of thinking occupy distinct regions of activation space, researchers extract a single steering vector that shifts chain-of-thought toward brevity — cutting length 67% with no retraining, just by nudging the model along a direction in that space Can we steer reasoning toward brevity without retraining?. The same logic runs the other way in Soft Thinking, which refuses to collapse a reasoning step down to one discrete token and instead keeps a probability-weighted blend of concept embeddings, letting several candidate paths coexist as a superposition in the continuous space before the model commits Can we explore multiple reasoning paths without committing to one token?. Both treat the embedding geometry as a control surface, not a readout.
There's a strand that pushes reasoning *entirely* into geometry. Meta's Large Concept Model abandons token-by-token generation to reason over whole sentence embeddings in a language-agnostic space, planning at the concept level before decoding Can reasoning happen at the sentence level instead of tokens?, while SoftCoT delegates continuous 'soft thought' generation to a small assistant so the frozen backbone can reason in embedding space without forgetting what it knew Can continuous reasoning avoid forgetting in instruction-tuned models?. Looped architectures make a related bet from a different angle: re-applying the same layers in recurrent depth lets a model refine its position in representation space over many passes, buying compositional generalization that raw parameter scale can't Can models learn by looping instead of growing larger?.
But geometry inside the model isn't the only place multi-hop reasoning lives — and the contrast is instructive. A whole family of systems externalizes the hops into *explicit graph structure* rather than trusting the embedding manifold: HippoRAG runs Personalized PageRank over a knowledge graph to traverse multi-hop paths in a single retrieval Can knowledge graphs enable multi-hop reasoning in one retrieval step?, and hypergraph memory binds three-or-more entities into one relation so joint constraints survive across steps Can hypergraphs capture multi-hop reasoning better than graphs?. The reason both exist is the corpus's cautionary note: chain-of-thought that lives purely in learned geometry degrades predictably once you leave the training distribution, producing fluent paths that don't actually connect Does chain-of-thought reasoning actually generalize beyond training data?. So the honest answer is that embedding geometry is *how* transformers do multi-hop reasoning natively — clustering, angle, and curvature are the mechanism — but that same geometry is also why the reasoning can look right while being wrong, which is exactly why explicit graph structure keeps getting bolted back on.
Sources 11 notes
Controlled training reveals transformers learn multi-hop reasoning in three phases: memorization, in-distribution generalization, and cross-distribution reasoning. Successful reasoning correlates with cosine clustering of entity representations, and second-hop generalization requires explicit compositional exposure during training.
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.
The Polar Probe shows LLMs represent syntactic type and direction through both distance and angular position between embeddings, nearly doubling accuracy over distance-only methods. This demonstrates neural networks spontaneously learn structured, symbolic-compatible geometry.
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.
Training-free method replaces discrete token selection with probability-weighted concept embeddings, preserving superposition of reasoning paths. Improves accuracy up to 2.48 points while reducing tokens 22.4% via entropy-based early stopping.
Show all 11 sources
Meta's Large Concept Model operates on sentence embeddings rather than tokens, reasoning in a language-agnostic space before decoding to any target language. This hierarchical approach with paragraph-level planning produces more coherent output than flat token generation.
SoftCoT avoids catastrophic forgetting by keeping the main LLM frozen while delegating soft thought generation to a small auxiliary model. This architectural separation maintains pre-trained knowledge while enabling continuous reasoning.
Models that re-apply layers in recurrent depth outperform larger feedforward networks on reasoning tasks. This works because recursion enables state tracking and compositional generalization that parameter scaling alone cannot achieve, with convergence signals providing natural halting.
HippoRAG converts corpus into a knowledge graph, then uses Personalized PageRank seeded from query concepts to traverse multi-hop paths in one step. It matches iterative retrieval while being 10-20x cheaper and 6-13x faster, with 20% better accuracy on multi-hop QA.
HGMem organizes retrieved evidence as hyperedges rather than flat lists or binary graphs, allowing three or more entities to bind into single relations without decomposition. This structure accumulates coherent knowledge across retrieval steps, trading representational complexity for constraint expressiveness.
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.
Papers this line draws on 8
The research behind the notes this line reads — ranked by how closely each paper relates.
- Soft Thinking: Unlocking the Reasoning Potential of LLMs in Continuous Concept Space
- Farther the Shift, Sparser the Representation: Analyzing OOD Mechanisms in LLMs
- Hierarchical Reasoning Model
- Soft Tokens, Hard Truths
- SoftCoT: Soft Chain-of-Thought for Efficient Reasoning with LLMs
- How do Transformers Learn Implicit Reasoning?
- Loop, Think, & Generalize: Implicit Reasoning in Recurrent-Depth Transformers
- A Mechanistic Analysis of Looped Reasoning Language Models