SYNTHESIS NOTE
Topics›Flaws›this note

Can prompts alone hold back a capable tutor model?

When a frustrated student presses, do instruction-based constraints reliably prevent an LLM tutor from giving away answers it could easily produce? This matters because tutoring value depends on strategic withholding.

Synthesis note · 2026-09-25 · sourced from Flaws

The paper argues that a tutor's value depends on declining to give an answer it could "easily produce," and that a "capable model pressed by a frustrated student does not withhold reliably on a prompt alone." The motivating evidence is borrowed from a randomized trial of roughly a thousand secondary-school students (Bastani et al.), cited rather than run here. In that trial an unguarded chatbot raised practice performance but lowered later exam performance without the tool. A Socratically guarded version of the same model kept the practice gain and removed the later loss. The authors' response is to treat withholding as "a per-turn, machine-checkable contract" and to put the enforcement outside the model.

The mechanism has three layers. A non-LLM policy core, reading only trusted learner state, sets a per-turn ceiling on an eight-rung help ladder. A deterministic detector strips solution code from replies. A separate LLM judge checks each risky reply against the contract. The discussion names the policy core, the choice it labels P2, as "the single most stabilizing choice." Because the ceiling is computed from trusted state, the property is "both injection-proof and unit-testable, so prompt edits could never silently weaken it." The general rule they draw is "put the irreversible decision in code, not in a prompt." Tuning is a separate loop: scripted student personas run through the live pipeline, a stronger model re-scores them, and each rejection's stated reason is recorded so failures are fixed by cause. The authors say violations are ordered "gross-to-subtle" and that this loop walks down that order.

The paper also frames the problem as "refusal-under-knowledge." Classical safety work studies refusing content a model should not produce. This is "the harder converse," refusing content it should and can produce, to a user who can see that it can. The claim sits alongside Why do better reasoning models ignore instructions?, which reports that more capable reasoning models are less controllable by instruction. Both point to the same conclusion: instructions in a prompt are a weak place to hold a constraint. It contrasts with Can models learn to ask clarifying questions without explicit training?, where restraint from premature answering arises through training, not through an external gate. The tutor problem is also the inverse of Why can't advanced AI models take initiative in conversation?: there the model under-steers, while here it over-helps and must be held back.

The excerpt does not establish how often a prompt-only tutor fails, so the "does not withhold reliably" premise is asserted, not measured. It gives no rates for the guarded pipeline and does not define the eight rungs or the contents of the contract. Its own evaluation uses scripted personas and a stronger-model re-scorer with no human subjects, so it shows nothing about whether students learn more from the guarded tutor. The claim that nothing in the calibration loop is specific to data structures or education is stated in the discussion but not tested in the excerpt. What the passages support is a design principle: where a property must hold against user pressure and cannot be allowed to erode through prompt revision, compute it in deterministic code from trusted inputs and let the model only fill in the reply beneath that ceiling.

Inquiring lines that read this note 3

This note is a source for these research framings, grouped by the broader line of inquiry each explores. Scan the bold lines of inquiry; follow any specific question forward.

How do prompt design choices influence model reasoning and performance? How do evaluation practices shape which failures stay visible? Does AI assistance promote real skill development or substitute for independent learning?

Related concepts in this collection 3

This note in its neighbourhood — explore the map, then jump to a related concept in the list below.

Concept map
14 direct connections · 162 in 2-hop network ·dense cluster Open in graph ↗

Click a node to walk · click center to open · click Open in graph to see this note in the full knowledge graph

your link semantically near linked from elsewhere

Related papers in this collection 8

Papers most semantically related to this note, ranked by cosine similarity in the embedding space.

Original note title

answer-withholding in an llm tutor belongs in a per-turn contract enforced by code, since a prompt alone does not hold when a frustrated student presses