This is a rapid-fire trap deck for Activation patching. Every item hides a misconception the technique invites. Read the prompt, answer out loud in one sentence, then reveal. If your gut said "yes/no" without a because, you fell in the trap.
Before the traps, four definitions the deck leans on. Read them once so every symbol below is earned.
The picture below fixes the whole vocabulary — the three runs, the two baselines, the gap G, and where the patch effect ΔC lives.
True or false: A component that activates strongly on the relevant token is therefore causally responsible for the behavior.
False — strong activation is correlation; it may be epiphenomenal (driven by computation elsewhere) or redundant, and only patching reveals whether removing it actually breaks behavior.
True or false: Attention weights alone can tell us which head is doing the work.
False — attention shows where a head looks, not whether the model uses that information; only an intervention like patching tests the causal link.
True or false: If patching a component restores clean behavior, that component is causally involved in producing that behavior.
True — restoration under intervention is exactly the causal signal, since we changed only that component and the output moved toward clean.
True or false: A causal fraction of 1.0 means the patched component is the only thing that matters.
False in general — it means that component's clean activation is sufficient to close the gap G here, but redundant paths could also each score high, so sufficiency is not exclusivity.
True or false: Patching always moves the corrupted output toward the clean output.
False — if the component is irrelevant, the metric barely changes (ΔC≈0); and a badly chosen patch site can even distort behavior in neither direction cleanly.
True or false: Cross-entropy loss is a safe default metric for any patching experiment.
False — it averages over all tokens, so it can dilute or hide the specific capability you care about; the metric L must target the exact behavior (e.g. logit difference between the two candidate tokens).
True or false: Activation patching and ablation are the same intervention.
False — ablation destroys an activation (zeroing or mean-replacing it), while patching replaces it with a meaningful counterfactual value from another run, so patching tests restoration, not just removal.
True or false: Patching is a form of causal mediation analysis applied to internal activations.
True — it treats the activation as a mediator and measures how routing a counterfactual value through it changes the outcome, which is exactly mediation.
"I patched all 144 attention heads at once and got a huge effect, so the model's IOI (Indirect Object Identification — completing 'John gave a drink to ___' with the right name) ability lives in the attention heads." — what's wrong?
Patching everything at once cannot decompose which heads matter; redundant heads inflate the joint effect ΔA∪B, so you must patch individually first, then test groups for synergy.
"Neuron 472 has 90% selectivity for pronouns, so it resolves pronouns — no need to patch." — what's wrong?
Selectivity is a correlational property; without patching you cannot rule out that pronoun resolution happens elsewhere and neuron 472 is a downstream side-effect (epiphenomenal).
"I'm studying toxicity, so I patched a layer and measured drop in overall accuracy." — what's wrong?
Overall accuracy is a generic metric; it can stay flat while the toxic-token probability shifts, so you need a targeted metric L like the logit difference between toxic and safe completions.
"My causal fraction came out to 1.4, which means the component is super important." — what's wrong?
A fraction above 1 means ΔC overshot the gap G (the patch beat the clean baseline); this usually signals a metric or normalization problem, or an unstable corrupted baseline, not extra importance.
"Both head A and head B individually gave Δ=0.05, so together they must give about 0.10." — what's wrong?
Effects are not additive when components interact; Synergy(A,B)=ΔA∪B−(ΔA+ΔB) can be strongly positive (collaboration) or negative (redundancy), so you must patch the pair directly.
"I got zero effect patching this head, so it is useless to the model." — what's wrong?
ΔC≈0 on this clean/corrupt pair means it is not causal for this specific behavior; it may be load-bearing for a completely different capability the current metric never probes.
"To find where a computation lives, I patch the corrupted run into the clean run." — what's wrong?
The standard direction inserts the clean activation into the corrupted run to test restoration; swapping the direction (corrupt into clean, "noising") answers a different question — how fragile clean behavior is, not what restores corrupted behavior.
Why do we need two inputs (clean and corrupted) instead of just one?
The corrupted input creates the controlled gap G, and only by injecting the clean activation into that gap can we isolate one component's causal contribution against a matched baseline.
Why must clean and corrupted inputs be as similar as possible (same length, same structure)?
If they differ in many ways, the activation you swap carries confounds beyond the feature you study, so restoration could come from irrelevant differences rather than the mechanism you're testing.
Why does patching layer 20 alone barely help in the greater-than example while layer 15 helps a lot?
Layer 15 does the numerical reasoning and layer 20 only formats numbers into tokens; restoring formatting is useless while the underlying "greater-than" computation is still corrupted upstream.
Why is the causal-fraction denominator the full clean-to-corrupt gap G rather than just the corrupt loss?
G is all the closable distance, so dividing by it normalizes ΔC into [0,1], where "1" means the component closed all the closable distance, making effects comparable across tasks of different difficulty.
Why can a single patch experiment fail to detect a genuinely important circuit?
If the circuit is spread over redundant paths, patching any one path leaves the others intact and the behavior barely moves, hiding importance that only joint patching (or path patching) reveals.
Why is patching considered stronger evidence than the logit lens alone?
The logit lens reads off what a layer represents but is still observational; patching intervenes, so it tests whether that representation is actually used downstream.
Why complement patching with Causal Scrubbing?
Patching confirms a component matters, but causal scrubbing stress-tests a full hypothesized circuit by resampling activations consistent with your claim, catching hypotheses that pass single patches yet are still wrong.
What happens when clean and corrupted inputs are identical?
The gap G=0 and there is no distinguishing activation to swap, so the causal fraction is undefined (division by zero) and the experiment carries no information.
What does a negativeΔC (negative causal effect) mean?
The patched activation made the metric worse than the corrupted baseline, meaning the clean value from this component actively hurts in the corrupted context — often a sign of interaction with other unpatched components.
Two heads are perfectly redundant. What do individual patches show, and how do you detect them?
Each individually shows a smallΔ (the other head compensates), and you detect redundancy by patching both together and seeing Synergy(A,B)<0, i.e. the pair's effect is less than the sum.
What if the corrupted run already produces the correct answer by luck?
Then there is no error to restore, the gap G is near zero, and patching results are noisy and meaningless — you must choose a corruption that reliably breaks the target behavior.
What does a causal fraction near 0 for every component you tested imply?
Either the true mechanism is a component/location you haven't patched, or the behavior is distributed so widely that no single site is decisive — a cue to widen the search or patch groups.
Recall One-line summaries to self-test
Correlation vs causation ::: Activation strength and attention weights are correlational; only intervention (patching) is causal.
Restoration test ::: Insert the clean activation into the corrupted run and see if the metric returns toward clean.
Patch effect ::: ΔC is the drop in metric L from patching C; causal fraction is ΔC/G.
Individual before joint ::: Patch components alone first, then groups, to separate real effect from redundancy/synergy.
Metric matters ::: The metric L must measure the exact capability, not generic loss.