Before you can trust that claim, you must be able to read every mark on the parent page. This note takes each one, gives it plain words, draws its picture, and says why the topic can't live without it. Read top to bottom — each block leans on the one above it.
The parent note keeps saying "moving parts" and "interacting pieces." That word is doing real work, so we pin it down first. Everything else — the counting, the formula, the whole argument for simplicity — is built out of pieces.
We use a letter instead of a fixed number because we want to reason about any size at once. Writing n lets us say "whatever the count is, here is what happens" — one sentence covers every function that will ever exist.
The parent claims the reader's burden is not the number of pieces but the number of ways pieces can affect each other. That word — interaction — needs a picture before its formula appears.
Look at the red lines in the figure. With 3 dots there are 3 lines; with 6 dots there are 15. The dots barely doubled, but the tangle of red lines exploded. That red web is what "cognitive load" actually looks like. This picture is the whole reason KISS matters — hold it in mind.
Now we can read the parent's central formula. It uses a notation that looks scary but asks a simple question.
Why this exact tool and not something else? A reader's burden is the number of pairs (interactions), and (2n) is the mathematics of counting pairs. That is why it, and not n itself or n2, shows up.
The red curve is the punchline of the whole topic: you add pieces one at a time (straight line), but the reader pays for them in pairs (curve). Cutting a few pieces near the top of the curve deletes a huge chunk of load. That gap between the black line and red curve is exactly why KISS repays effort super-linearly.
The parent's refactors lean on one shape you must be able to see, not just read.
On the left, three nested ifs force the reader to hold all three conditions open at once — that's the red tangle again. On the right, each guard is handled and dropped before the next begins, so at any moment only one condition is live. Same logic, far fewer simultaneous interactions.