The technique is called step-back prompting, and its whole shape is one sentence: two calls, where the first answer becomes the second call's context.
Style: notebook-3d • hero generated with gpt-image-2
You have a hard, detail-heavy question. The instinct is to ask it directly. Step-back prompting says: don't. First ask a deliberately weaker, more general question — what principle governs this kind of problem? — get that answer, then ask your real question with that principle sitting in the context window.
It works for a mechanical reason, not a mystical one. Retrieval and attention are both driven by the tokens in front of them. The abstract question isolates the fundamental concept from the noisy details and pulls the governing rule into context; the concrete question then reasons from a stated rule instead of from a half-remembered instance.
Source: arXiv 2310.06117v2 — Take a Step Back: Evoking Reasoning via
Abstraction in Large Language Models, Zheng et al., Google DeepMind.
A generalisation of the original prompt. Not a rephrasing and not a hint — it asks for the class of principle the question belongs to.
The model's answer to that weaker question. This is the artifact you actually wanted: a principle stated in tokens rather than recalled implicitly.
The original prompt again, now with the principle prepended as context. Two calls, not one — that extra round trip is the cost.
What genuinely composes with step-back is retrieval — Step-Back + RAG
is its own arm in the paper. Chain-of-thought is a competing baseline, not a partner.
Versus chain-of-thought: CoT reasons forward step by step from
the question's own surface details, so a wrong early step poisons the whole chain. Step-back
retrieves the governing principle first and reasons down from it. The paper reports gains
of up to 36% over CoT and lists PaLM-2L + CoT and
PaLM-2L + Step-Back as separate arms.
| Task | Baseline → Step-back | Gain |
|---|---|---|
| MMLU Physics | 66.4 → 73.2 | +6.8 pts |
| MMLU Chemistry | 70.9 → 81.8 | +10.9 pts |
| TimeQA | 41.5 → 66.0 | +24.5 pts |
| TimeQA + RAG | 41.5 → 68.7 | +27.2 pts |
| MuSiQue | 35.5 → 42.6 | +7.1 pts |
These are percentage POINTS, not percent. Say "+24.5 points" or "four in ten to two in three on TimeQA". Saying "+27%" invites the relative reading of +65% — about 2.4× the real effect. All three of PaLM-2L, GPT-4 and Llama2-70B were tested; these five rows are PaLM-2L's.
TimeQA is the striking row and it fits the mechanism: multi-hop, time-scoped questions are exactly where surface details mislead and a retrieved principle helps most.
The test: run the same evaluation set both ways and report where it LOST, not only where it won.