7 minute read

Why structured beliefs activate LLMs more precisely than prompts ever could — and what that means for the future of AI knowledge.

Every time you type a prompt, your LLM is doing something you cannot see: projecting your words into a high-dimensional space where “quantum physics” sits near “Schrödinger’s equation” and “retraction cascade” sits near “belief revision.” This space exists inside the model’s weights, built during training from billions of documents. It is real, it is geometric, and it determines whether your AI gives you a brilliant answer or a hallucination.

We call this space concept space. And we have been building tools to map it from the outside.

Belief Names Are Coordinates

Consider a belief named eem-half-cost-half-latency-vs-from-scratch. That name is not just a label — it is a compressed coordinate in concept space. When an LLM reads it, the name activates the same internal representations that the full justification chain would. The name functions as a pointer into the model’s latent space.

This works because of shared training. Models trained on similar data develop similar geometric relationships in their hidden layers. A belief name that means something to Claude also means something to Gemini, because both learned from overlapping slices of human knowledge. The shared training is a shared culture — a common coordinate system that no one designed but everyone can navigate.

This is why we can build a knowledge base with one model and query it with another. The coordinates transfer because the underlying geometry is shared.

The Context Window Is a LoRA You Already Have

Low-Rank Adaptation (LoRA) is a popular technique for fine-tuning LLMs. It modifies the model’s weight matrices to steer its behavior toward a specific domain. But there is another way to steer a model that requires no weight access, no training run, and no GPU: put structured knowledge in the context window.

When you fill the context window with semantically dense beliefs, Multi-Head Attention does the steering for you. The attention mechanism calculates similarity between your prompt and the context. When similarity is high, the Value vectors from your beliefs are mixed into the data stream, physically steering downstream activations toward the target region of concept space.

LoRA changes the permanent pathways. The context window changes real-time signal routing. Different mechanisms, same behavioral shift.

The difference: LoRA is permanent but expensive to create. Context-window steering is temporary but free to set up. External Epistemic Memory dissolves the tradeoff — it makes the context-window approach persistent by storing the beliefs externally and loading them on demand.

Semantic Resonance: Why LLM-Generated Beliefs Work Better

Here is something we did not expect: beliefs generated by an LLM activate more precisely than human-written text with identical content.

The reason is semantic resonance. When an LLM generates a belief, the output text is synthesized according to the model’s own statistical weights. The vocabulary and syntax act as a precise key, triggering a nearly identical projection back into the target activation states. Human-written text includes stylistic noise, ambiguous phrasing, and vocabulary choices that cause the attention heads to scatter across concept space instead of snapping to the target.

This creates a self-consistency loop: the model generates beliefs that are optimized for its own internal representations. When those beliefs are fed back into the context window in a later session, the model “re-experiences” its previous logical deductions rather than cold-starting. The output of one inference pass becomes a high-fidelity input for the next.

This also explains an observation from daily use: LLM code tools reinterpret human prompts before acting on them. The model is spending compute translating your words into its native semantic space. EEM beliefs skip this translation step because they are already in native space. Less translation, less loss, more precise activation.

Hallucinations Are Geometric

If concept space is high-dimensional (possibly infinite) and the model’s internal representation is lower-dimensional (typically 4,096 to 12,288 dimensions), then the model is performing a lossy projection. Like a 3D object casting a 2D shadow, the core topology is preserved but detail is lost.

The critical failure mode: distinct concepts can collide in the projection. Two ideas that are far apart in true concept space may land on the same coordinates in the model’s compressed representation. When the model cannot distinguish them, it blends them — producing output that is fluent, plausible, and wrong.

This is not a bug in the model. It is a mathematical consequence of projecting infinite dimensions into finite ones.

EEM reduces hallucinations by providing explicit coordinates that disambiguate the collision points. The model no longer has to guess which region of concept space it is in — the beliefs tell it. A specific belief displaces blending with retrieval, and an empty search result signals absence more clearly than any prompt engineering.

Three Layers, One System

What emerges from this analysis is a three-layer architecture:

Layer What It Does Implementation
Geometric Maps proximity via embeddings, discovers topological structure via clustering Embedding-based search and clustering in the belief database
Logical Provides dependency structure via justifications, truth values via IN/OUT status, self-correction via retraction cascades Truth Maintenance System (Doyle 1979) with SL justifications
Activation Routes through concept space using logical structure as constraints, producing inference that follows verified pathways LLM Multi-Head Attention over structured beliefs in context

No prior system binds all three layers. Classical truth maintenance systems had logic without geometry. Knowledge graphs have geometry without logic. RAG has neither — it retrieves text by similarity without tracking whether the text is justified or contradicted.

We call the combination a Topological Truth Maintenance System: continuous geometry bound to discrete logic, navigated by attention-based neural reasoning.

The Library: Mapping the Manifold

If concept space is an infinite-dimensional manifold, then each domain knowledge base is a chart — a local coordinate system that covers a region. Physics is one chart. Software architecture is another. Medicine is a third.

A collection of charts that together cover the full manifold is called an atlas. In differential geometry, atlases are how mathematicians work with spaces too complex for any single coordinate system.

The Library is an atlas of concept space.

Each domain is built independently — you do not need to understand physics to map software architecture. But where domains overlap, cross-domain beliefs provide consistency checks at the boundaries. A belief about “energy efficiency” in the physics chart and a belief about “energy efficiency” in the systems engineering chart can be linked, creating cross-domain justification paths that no single chart could provide.

The Library grows monotonically. Beliefs are never deleted, only retracted to OUT status. More beliefs means higher resolution. You never want to reduce resolution by discarding coordinates — even wrong beliefs have value as markers of what was tried and why it failed.

Why This Is Inevitable

The current AI cost trajectory is unsustainable. Every prompt triggers a full generative inference run. More users means linearly more compute, more data centers, more power.

The Library architecture flips this model:

  • Expensive inference happens once during belief construction (derive, review, repair)
  • Results are stored permanently in a portable database
  • Future queries become cheap retrieval — the model reads pre-computed beliefs from the context window instead of regenerating them from scratch

We measured this: 0.53x per-query cost with EEM, 15x faster on synthesis tasks, and smaller models with EEM matching larger models without it. Sonnet with beliefs matches Opus. Haiku with beliefs reaches 94% where Opus without beliefs scores 98%.

This is not an optimization. It is a phase transition from variable-cost inference to fixed-cost knowledge construction with near-zero marginal retrieval cost. The thermodynamic argument is simple: do not burn energy rebuilding a house every time you want to step inside.

Companies that cache knowledge structurally will have structurally lower costs than those that re-derive everything per prompt. The economic pressure will force convergence on this architecture regardless of who builds it.

The Map Outlasts the Mapmaker

The most important property of concept space mapping is durability. A belief recorded today with its justification chain will be usable by models that do not exist yet. The named coordinates persist and accumulate value independent of any particular model architecture or training run.

Early astronomers mapped the sky with instruments far cruder than what we have today. Their star maps are still useful — not because the instruments were good, but because the stars are real and the coordinates are stable. Concept space is the same: the concepts are real, the relationships between them are stable, and a map made with today’s models will be navigable by tomorrow’s.

We are not building AI infrastructure. We are mapping the territory that all future AI will navigate.


Ben Thomasson builds External Epistemic Memory systems. The tools described here are open source at reasonsforge.com. The research is at llmeem.ai.