Visual walkthrough — DRY — Don't Repeat Yourself
The parent note DRY — Don't Repeat Yourself made a claim and then dropped two formulas on you:
This page builds both from absolute zero — no symbol appears before you can see it. By the end you will feel, in pictures, exactly why one copy is safe and five copies are a time bomb.
Let us first agree on what every letter is going to mean, one at a time, as pictures.
Step 1 — What is "a copy"? (setting the scene)
WHY start here? Every formula below counts copies. If we do not nail down what we are counting, the maths is meaningless. So the very first symbol we earn is:
PICTURE. Below, the same fact "TAX = 18%" is drawn as identical sticky notes. Count the notes — that count is .

Look at the yellow notes: there are five of them, so here . Nothing more complicated than counting is happening yet.
Step 2 — What does it cost to fix ONE copy?
WHY invent this number? Because we want to compare "editing one place" with "editing many places". To compare, we need a unit of effort for one place. That unit is:
PICTURE. One sticky note, one hand editing it, one little cost-bar of height .

The single blue bar is : the price of touching one home. Remember its height — in the next step we start stacking these bars.
Step 3 — The total edit cost: stacking the bars
WHY multiplication? "Add to itself times" is exactly what multiplication means. So the total is lots of :
Each symbol's job:
- — the count from Step 1 (how many bars we stack).
- — the unit from Step 2 (how tall each bar is).
- — the total height of the stacked bars: the whole bill.
PICTURE. Watch the bars stack as grows: — a straight ramp.

The dots march up a straight line. This is what "grows linearly" means: double the copies → double the bill. No surprises, just a steady, honest tax on every extra copy. (The dangerous part is coming in Step 5.)
Step 4 — What is the chance you MISS a copy?
WHY a probability? Because "forgetting" is not certain, it is a risk. Risks are measured as probabilities (0 = never, 1 = always). So we earn:
PICTURE. A single coin split into two slices: a slice (forget) and a slice (remember).

The blue slice is "I handled this copy correctly". That single slice is the seed of the whole exponential decay — because now we need every copy to land on blue.
Step 5 — All copies correct: why the chance collapses
WHY multiply the 's? When independent events must all happen, their probabilities multiply. (Chance of two coins both landing heads .) Getting each of the copies right is , and they must all succeed, so:
PICTURE. A curve of plotted against . It starts high and dives toward the floor.

Trace the pink curve: at you sit at (as high as it ever gets). Each extra copy multiplies by another , so the height keeps shrinking — this is exponential decay. Compare it to the straight ramp of Step 3: cost grows steadily, but safety collapses fast.
Step 6 — The degenerate cases (do the formulas behave?)
A formula you trust must survive its extreme inputs. Let us test every corner.
PICTURE. The two curves side by side, with the four corner cases marked as chalk dots.

Notice the vertical dashed line at : it lands cost at its minimum and safety at its maximum. There is no corner of the input space where "more copies" wins — that is the derivation's verdict.
Step 7 — A concrete number to make it real
Let minutes, (you miss 1 in 10). Compare (DRY) against (WET):
That single comparison is the entire argument for Single Source of Truth in two numbers.
The one-picture summary

Left panel: cost climbs a straight line (). Right panel: safety plunges as a curve (). The green marker sits at the sweet spot of both — cheapest and safest. Every step right of it pays twice: more work and more risk. That crossroads is DRY.
Recall Feynman retelling — the whole walkthrough in plain words
Picture a fact written on sticky notes. Count the notes — that count is . Fixing one note takes some effort; call it . So fixing all of them is just stacked times, — a steady, straight climb: twice the notes, twice the work. But you're human, so each note has a small chance of being forgotten, meaning a chance of being done right. To be safe, every note must be right at once, and "everything at once" means multiplying — times itself times, . Multiplying a number smaller than one, over and over, races toward zero. So as notes pile up, your effort rises gently but your safety crashes. The only spot that's both cheap and safe is one note — one home for the fact. That's DRY: one fact, one home.
Connections
- DRY — Don't Repeat Yourself — the parent; this page derives its two formulas from zero.
- Single Source of Truth — Step 7 is its numeric justification.
- WET — Write Everything Twice — the world we just measured.
- Rule of Three — remember: shows duplication isn't always deadly, so wait before abstracting.
- Refactoring — Extract Method — how you actually drive back down to 1.