A B … A → B — watch the copy circuit fire
The induction head plays one move: when the current token has appeared before, find that earlier occurrence, slide one position to the right, and attend there — because whatever followed it last time is a great guess for what follows it now. Step through this repeating sequence and watch when the head can fire (a match exists) and when it sits silent (first time seeing a token).
Type nonsense, get prophecy — it copies words that don't exist
Here's the spooky part: the circuit never needs to have seen your tokens before. It matches “same token as now” and copies “whatever came next” — pure pattern plumbing, zero vocabulary. Type any repeating gibberish and it predicts the continuation; delete the repetition and it goes blind.
Two heads shaking hands — no single head can do this
One attention head can't “match my token, then shift right” — shifting requires knowing each position's previous token, which attention alone doesn't give you. So the trick takes a two-layer relay: a layer-1 previous-token head stamps every position with “the token before me was X”, and the layer-2 induction head searches those stamps. Step through the relay, then ablate layer 1 and watch layer 2 go blind.
The contradiction attack — feed the copier two truths
The head attends to every earlier occurrence of the current token and averages what followed. If “rok” is always followed by “mil”, the average is sharp. Mix in pairs where “rok” is followed by “ven” instead, and the same circuit that gave you perfect copying now produces a confident-looking coin flip. Slide the mixture yourself.
This is in-context learning — few-shot prompts are induction bait
A few-shot prompt — wug → dax, blicket → toma, wug → ? — is a repeating pattern wearing a costume. The model isn't “learning” your mapping in any deep sense; the induction circuit finds the earlier key → and copies what followed. Build clean prompts from words that have never existed, then poison one example and watch the circuit copy your mistake with total loyalty.
Conceptual demo: answers are produced by literal induction matching over the prompt tokens — the same move ablation studies show carries much of real few-shot performance.