Imagine you're cooking a complex dish. You have a recipe card taped to the cabinet (your working notes — always visible, easy to glance at) and years of muscle memory from cooking similar dishes (your ingrained skill — no notes needed). For simple recall — 'how much cumin?' — the recipe card wins every time. For technique — 'how do I julienne this?' — muscle memory is faster. But a dish that demands you adapt a technique based on a specific ingredient substitution listed on the card? You need both systems firing simultaneously, and they activate different parts of your brain. That's exactly what this paper finds about how LLMs use their two memory systems. The committed claim: activation memory (KV caches from in-context examples) and parametric memory (weights updated via gradient descent on examples) recruit distinct, non-overlapping neuron populations — and a composite task called Conditional Arithmetic cannot be solved by either memory type alone, only by their synergy. This isn't about which memory is 'better.' It's about proving they're complementary at the neuron level. The experimental design is straightforward and well-controlled. The authors construct synthetic tasks — factual recall, arithmetic operations, and a composite 'Conditional Arithmetic' that chains a fact-lookup into an arithmetic operation. They compare three conditions: facts provided only in-context (activation memory), facts baked in via fine-tuning (parametric memory), and both combined. The key finding on task learning is surprising: parametric memory does NOT consistently outperform activation memory for learning new tasks, contradicting a common assumption in the field. Activation memory handles factual recall better. But neither alone cracks Conditional Arithmetic. The neuron-level analysis is where this gets interesting. When the model accesses the same historical information through activation versus parametric memory, it lights up different neuron sets. When both memory types are available, the model recruits neurons from both populations simultaneously. This is a mechanistic finding, not just a performance delta — it tells you something about the internal architecture of how LLMs organize information routing. The distinct neuron sets suggest the two memory pathways are not redundant channels to the same computation but genuinely different computational strategies. Where does this sit in the field? The activation-vs-parametric memory question has been explored by work on in-context learning mechanics (Olsson et al. on induction heads, Dai et al. on gradient-descent interpretation of ICL) and meta-learning through fine-tuning. This paper's contribution is the controlled head-to-head comparison with neuron-level attribution on a composite task. The Conditional Arithmetic benchmark is synthetic and narrow, but that's the point — controlled conditions let you isolate what you're measuring. The integrity picture is mixed. The tasks are synthetic by design, which gives clean signal but raises questions about generalization to natural language tasks. There are no community benchmarks here — the authors built their own evaluation, which is appropriate for mechanistic work but means the validation loop is internal. The neuron-overlap analysis is the load-bearing evidence, and it would benefit from replication on different model families and scales. The practical implication is pointed: if you're designing systems that combine retrieval-augmented generation (context injection) with fine-tuning (parameter updates), these aren't redundant strategies competing for the same slot. They activate different computational pathways and their combination unlocks capabilities neither achieves alone. For anyone building LLM pipelines that mix RAG with fine-tuning, this offers a mechanistic rationale for why the combination works — and a warning that evaluating either pathway in isolation will underestimate the system's composite capability.