Thinking to recall: How reasoning unlocks parametric knowledge in LLMs

| Source: Google Research Blog

Tags: Google Research, chain-of-thought, Gemini 2.5, Qwen3, reasoning, parametric memory, factual recall

Google Research finds chain-of-thought reasoning unlocks correct factual recall in LLMs even for simple single-hop questions — operating via two mechanisms: a computational buffer effect where intermediate tokens do latent work, and factual priming where related facts trigger the target answer.

Details

Google Research published 'Thinking to Recall,' a study examining why reasoning traces help language models recall simple facts that require no complex deduction. The established view was that chain-of-thought (CoT) helps with multi-step problems — math, code, multi-hop QA — but shouldn't matter for single-hop factual questions. Using pass@k evaluation (checking whether the correct fact appears anywhere across multiple generated attempts), the researchers tested Gemini-2.5 Flash, Gemini-2.5 Pro, and Qwen3-32B on SimpleQA Verified and EntityQuestions benchmarks. Results were consistent across all three models: enabling reasoning unlocked answers that were nearly unrecoverable without it. Two mechanisms drive the effect. First, a computational buffer: generated reasoning tokens provide extra processing capacity that lets the model effectively compute toward the answer — intermediate tokens do work even when no logical deduction is visible. Second, factual priming: generating related facts during a reasoning trace increases the probability of the target fact surfacing, similar to how related context improves human memory recall. The practical implication is direct: for factual retrieval tasks — RAG pipelines, knowledge-intensive QA, agentic fact-finding — enabling reasoning traces may improve recall accuracy even when the task appears to require no reasoning.