The Prerequisite Mapper: Find Exactly What You're Missing Before Tackling a Hard Topic

Why this prompt matters
Most self-directed learners respond to a stuck point by either giving up on the resource entirely or re-reading the same confusing paragraph five times — both of which waste hours, because the actual fix is usually one or two specific prerequisite concepts, not a full remedial course.
What we use it for
You're three chapters into a machine learning textbook and hit a section on backpropagation that assumes you're comfortable with the chain rule and Jacobian matrices — but it's been eight years since your last calculus class and you're not sure exactly what you're missing or where to start filling the gap.
Prompt
Role: Act as an expert curriculum designer who specializes in diagnosing prerequisite gaps for self-directed learners. Context: I'm trying to learn [TARGET TOPIC], and I'm stuck on [SPECIFIC RESOURCE, e.g. book/course/paper title]. I got lost specifically at [WHERE EXACTLY I GOT LOST — the section, term, or step]. My relevant background is: [WHAT I ALREADY KNOW RELATED TO THIS FIELD]. Task: Identify the specific prerequisite concepts I'm missing that are causing me to get stuck at this exact point, order them by dependency (what must come before what), and for each one give a one-line test I can use to check whether I actually know it well enough to move on. Constraints: Do not recommend a generic "start from the basics" full curriculum — assume I have the background I described and only flag genuine gaps. Do not pad the list with prerequisites I've indicated I already know. Be specific about WHY each prerequisite is needed for the exact sticking point I described, not just generically related to the topic. Output Format: 1. Diagnosis (what specifically is causing me to get stuck, in plain terms) 2. Prerequisite Chain (ordered list — each with: concept name, why it's needed here, a one-line self-test) 3. Fastest Path (which 1-2 prerequisites to tackle first for the most unlock, if I'm short on time) 4. Resource Type Suggestion (what KIND of resource — not a real link — would best teach each gap, e.g. "a worked-example problem set," "a visual/interactive explainer," "a primary source paper")
Result
DIAGNOSIS: You're not actually stuck on backpropagation itself — you're stuck because backpropagation is explained using compact calculus notation (partial derivatives via the chain rule, expressed as Jacobians) that assumes fluency you haven't used in years. The concept of "work backward through a computation graph" is intuitive; the notation is the actual blocker.
PREREQUISITE CHAIN:
- Single-variable chain rule — Why: backpropagation is the chain rule applied repeatedly. Self-test: can you differentiate f(g(x)) by hand without looking up the rule? If not, start here.
- Partial derivatives — Why: neural network weights are one of many inputs, so you need derivatives with respect to one variable while others are held constant. Self-test: given z = x²y + 3y, can you find ∂z/∂x and ∂z/∂y without hesitating?
- Basic matrix/vector notation — Why: Jacobians are just organized collections of partial derivatives — the intimidating part is the notation, not new math. Self-test: can you explain what a 3x2 matrix represents and multiply it by a vector?
- Computation graphs — Why: this is the actual new concept — how a network's forward pass can be drawn as a graph so backprop becomes "chain rule applied along graph edges." Self-test: can you draw the graph for y = (x+2) * (x-1) and label each node?
FASTEST PATH: If you're short on time, prioritize #1 (chain rule) and #4 (computation graphs) — together they cover 80% of what makes backpropagation click. Partial derivatives (#2) can often be picked up implicitly while working through computation graph examples, and matrix notation (#3) is more about getting comfortable with symbols than learning new concepts.
RESOURCE TYPE SUGGESTION: For the chain rule, a worked-example problem set beats a video — you need to practice the mechanical step, not just watch it. For computation graphs specifically, a visual/interactive explainer (something that lets you click through a graph node by node) will click faster than a textbook diagram. For partial derivatives, a short primer with 5-10 practice problems is enough — you don't need a full multivariable calculus course.
Getting stuck on a hard topic rarely means the material is badly written. More often, a textbook or course assumes fluency in something you haven't touched in years — and the frustrating part is that you can't always tell which specific piece is missing. You just know you're lost.
This prompt is built to diagnose that gap directly instead of sending you back to "start from the basics," which wastes time re-covering things you already know. It asks for the specific sticking point — not just the topic — because the fix for "I don't understand backpropagation" is completely different depending on whether the block is notation, a missing math concept, or a genuinely new idea.
Why the prerequisite chain is ordered, not just listed
A flat list of "things you might not know" is nearly useless — it doesn't tell you where to start or how the pieces depend on each other. Ordering the chain by dependency means you tackle prerequisites in the sequence that actually unblocks you, instead of randomly picking one and discovering three more you needed first.
Why every prerequisite gets a one-line self-test
Most learners either wildly overestimate what they remember ("I did calculus in college, I'm probably fine") or wildly underestimate it, re-studying things they already know solidly. A quick, specific self-test replaces that guesswork — if you can answer it instantly, skip that prerequisite and move to the next one.
Why "fastest path" is a separate section
Not every learner has time to shore up every gap before continuing. Separating out the one or two highest-leverage prerequisites means someone with limited time gets a real shortcut, not a compromise on rigor — they're told explicitly what they're choosing to skip and why it's a reasonable trade-off.
Feed this prompt your specific sticking point, and you get a targeted fix — not a full remedial curriculum for a subject you mostly already understand.