PM-301d · Module 1

Step-Back Prompting

4 min read

Step-back prompting instructs the model to derive the general principle or framework underlying the specific problem before attempting to solve the specific problem. It addresses the failure mode where the model dives into a specific case without activating the relevant domain knowledge or methodology. "Step back and ask what type of problem this is before solving it."

# PATTERN 1: Explicit step-back instruction
Before answering the specific question, step back and identify:
1. What type of problem is this? (legal, financial, technical, strategic, etc.)
2. What methodology or framework is appropriate for this type of problem?
3. What information is required to solve this type of problem correctly?

Then apply that methodology to the specific case.

Specific case: [problem here]

---

# PATTERN 2: Principle-first
What is the general principle for evaluating [problem type]?
[pause — model states principle]

Now apply that principle to this specific case: [specific case]

---

# PATTERN 3: Combined with CoT
Step 1: What type of problem is this, and what methodology applies?
Step 2: What information do I need that is provided in the case?
Step 3: What information is missing or assumed?
Step 4: Apply the methodology with the available information.
Step 5: State the conclusion and its confidence level given the available information.

Problem: [problem here]
  1. When Step-Back Helps Most Use step-back for domain-specific problems where the model tends to solve the surface question without activating relevant domain knowledge. Legal analysis, security assessments, financial modeling, architectural decisions. These benefit from explicit methodology activation before case-specific reasoning.
  2. When Step-Back Adds Overhead Without Value Tasks where the problem type is obvious from context. Factual retrieval questions. Simple classification tasks. Step-back prompting for these wastes tokens — the model already knows the methodology and applying step-back just produces a tautological "first I will answer factually" statement.