Demonstrates that chain-of-thought reasoning improves LLM factual retrieval through computational buffering and self-priming. Improves single-hop factual accuracy by enabling models to generate contextual bridge facts before recalling answers.
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Une commande directe contourne le prompt de vérification. Examinez la source avant de l'exécuter.
Thinking to Recall: How Reasoning Unlocks Parametric Knowledge in LLMs
version
0.0.2
engine
skillxiv-v0.0.2-claude-opus-4.6
license
MIT
url
https://arxiv.org/abs/2603.09906
keywords
["Reasoning","Parametric Knowledge","Inference Time Scaling","Prompt Engineering","Fact Retrieval"]
description
Demonstrates that chain-of-thought reasoning improves LLM factual retrieval through computational buffering and self-priming. Improves single-hop factual accuracy by enabling models to generate contextual bridge facts before recalling answers.
Thinking to Recall: Unlocking Parametric Knowledge Through Reasoning
LLMs perform well on multi-hop reasoning tasks but surprisingly struggle on simple single-hop factual questions that require no complex logic. Enabling chain-of-thought reasoning dramatically improves performance on these supposedly simple queries. The question: why does reasoning help when the task requires no reasoning?
Through controlled experiments isolating different reasoning effects, this skill reveals three mechanisms: computational buffering (generating tokens to "warm up"), factual priming (recalling related facts that enable main answer), and verification (intermediate facts provide checkpoints). By understanding these mechanisms, you can optimize prompting strategies for pure factual retrieval tasks.
Core Concept
Reasoning doesn't just help complex tasks—it unlocks parametric knowledge on simple factual questions through:
Computational Buffer: Model generates reasoning tokens independently of semantic content; this computation alone improves main answer quality (even with random text of same length)
Factual Priming: Model generates topically related facts during reasoning that serve as "bridges" to the target answer, like priming in human memory
Hallucination Detection: Intermediate facts in reasoning traces can be verified, identifying when the trajectory will fail
Architecture Overview
Chain-of-Thought Prompting: Request thinking before answering for simple facts
Intermediate Fact Extraction: Parse generated reasoning to identify stated facts
Fact Verification: Cross-check extracted facts against knowledge bases
Trajectory Quality Assessment: Predict answer correctness from intermediate fact validity
Calibration: Only prioritize high-confidence reasoning trajectories
Implementation Steps
Implement fact-aware reasoning with intermediate verification to improve single-hop factual recall.
Real-time applications where reasoning adds latency
Key Pitfalls:
Priming facts too different from question—doesn't help
Verification against wrong KB—false confidence
Reasoning trajectories too long—diminishing returns
Not using multiple samples—single trajectory may be unlucky
Integration Notes: Works as a prompting strategy; requires knowledge base for fact verification; can be combined with retrieval-augmented generation for external fact access.