GRIP: Grounded Reasoning via Information-Restricted Premises
> Original paper: GRIP: Grounded Reasoning via Information-Restricted Premises > Author: Lirui Teng > arXiv: 2608.16776 > Published: 2026-08-17
The Problem: Query Dominance in RAG
Retrieval-Augmented Generation (RAG) promises to ground LLM answers in retrieved external documents, fixing knowledge staleness and hallucination. But GRIP's author identifies a hidden failure mode: query dominance. In standard RAG encoders, the query's latent representation overwhelms the evidence, so the decoder essentially generates from the query while ignoring the retrieved documents.
This is quantifiable. The mutual information between the query and the latent state measures 14.8 bits in standard systems—whereas a system truly reading evidence should show a value near zero.
A simple diagnostic
1. Give the RAG system a question and its retrieved documents, record the answer. 2. Swap the retrieved documents for random ones, keeping the query fixed. 3. Record the answer again.
If the system genuinely reads evidence, answers should change drastically. In many cases, they barely change—the system is performing evidence as ceremony, not substance.
Why It Happens
- Asymmetric encoding: Short queries get fully, densely encoded, while long documents are compressed into fixed-length vectors, losing most details.
- Iterative retrieval amplifies it: Each retrieval round inherits the query bias from generated text, echoing and reinforcing it like a feedback loop.
- Query channel: full-dimensional, unrestricted.
- Evidence channel: a severe stochastic information bottleneck—evidence vectors are randomly projected onto a low-dimensional subspace and noise-added.
- Multimodal models: ensuring vision is truly used, not ignored.
- Tool use: ensuring API results actually influence decisions.
- Multi-agent systems: ensuring information genuinely transfers between agents.
- Teng, L. (2026). *GRIP: Grounded Reasoning via Information-Restricted Premises*. arXiv:2608.16776.
- Lewis, P., et al. (2020). Retrieval-augmented generation for knowledge-intensive NLP tasks. *NeurIPS 33*, 9459-9474.
- Guu, K., et al. (2020). REALM: Retrieval-augmented language model pre-training. *ICML*, 3929-3938.
- Tishby, N., Pereira, F. C., & Bialek, W. (2000). The information bottleneck method. *arXiv preprint physics/0004057*.
GRIP's Solution: Starve the Query, Bottleneck the Evidence
Counterintuitively, GRIP doesn't boost evidence—it weakens the query's path to dominance by imposing deliberate capacity asymmetry:
Because the bottlenecked evidence channel can only carry the most essential information—precisely the information the query does not already contain—the system is forced to actually depend on evidence.
Results
| Metric | Standard RAG | GRIP | Change | |--------|--------------|------|--------| | Query-latent mutual information | 14.8 bits | 0.47 bits | 30x reduction | | Hallucination rate | baseline | -73% | large drop | | Reasoning accuracy (5 benchmarks) | baseline | beats strong iterative baselines | significant |
Residual-alignment analysis
Bottlenecked evidence representations in GRIP occupy subspaces orthogonal to the query representation—meaning the bottleneck successfully extracts only the *incremental* information evidence provides beyond the query.
Broader Implications
GRIP reveals that correct outputs can arise from faulty processes: a RAG system may merely echo query bias while treating evidence as decoration. The proposed design principle generalizes beyond RAG:
The core insight: if an information source is optional, systems will tend to ignore it. Only by making it indispensable—via information bottlenecks—does the system take it seriously.
Practical takeaways for RAG builders
1. Diagnose before treating: measure query-latent mutual information; high values mean your system is likely faking evidence use. 2. Capacity asymmetry can be a deliberate design choice, not a defect. 3. Bottlenecks can be features: they force systems to focus on essentials. 4. Evaluate process, not just outcomes: correct answers from wrong processes fail on edge and adversarial cases.
> Grounded reasoning isn't about putting evidence on the table—it's about making evidence an irreplaceable information source.