Quant Memo
Core

Compounding Shortcuts for Repeated Growth

You don't need a calculator to know what 8% for ten years does to your money — a single approximation, added instead of multiplied, gets you within a rounding error every time.

Prerequisites: Doing Arithmetic Fast Under Pressure

An interviewer asks: "$100 grows at 8% a year, compounded, for 9 years. Roughly what's the final value, and please don't reach for a calculator." Multiplying 1.081.08 by itself nine times in your head is a non-starter. But you already know, roughly, that repeated multiplicative growth behaves almost like repeated addition when the rate is small — and "almost" is close enough for an interview, if you know how close.

Try estimating 1.06121.06^{12} in your head before reading on. Then check it against a calculator and see how far off you were.

The trap: trying to multiply it out exactly

Compounding is inherently multiplicative — (1+r)(1+r) multiplied by itself nn times — and multiplying decimals repeatedly in your head is exactly the kind of task that eats your working memory and produces silently wrong answers. The fix is to notice that for small rr, each multiplication by (1+r)(1+r) adds approximately rr to the running total, because the cross-terms from compounding are second order and small.

For small rr and nn up to a few dozen, (1+r)n1+nr(1+r)^n \approx 1 + nr. Growth compounds multiplicatively, but when the rate is small, it looks almost additive — add up the rate nn times and you're close. The approximation gets worse as rr or nn grows, and there's a simple correction when you need one.

Where the approximation comes from

Expand (1+r)n(1+r)^n using the binomial theorem:

(1+r)n=1+nr+(n2)r2+(n2)r2(1+r)^n = 1 + nr + \binom{n}{2}r^2 + \binom{n}{2}r^2\cdots

In words: the first two terms are "1" and "nn copies of rr added up" — that's the linear approximation. Every term after that involves r2r^2 or higher, and if rr is a small number like 0.08, r2=0.0064r^2 = 0.0064 is tiny, so those terms barely move the answer unless nn is also large. The whole approximation is just "keep the first two terms of the expansion, throw away the rest."

Worked example: 8% for 9 years

Linear approximation: 1+9×0.08=1.721 + 9\times0.08 = 1.72, so $100 becomes roughly $172.

The true value: 1.089=1.9991.9991.08^9 = 1.999\ldots \approx 1.999, so $100 becomes about $199.90.

That's a 16% miss — too large to call "close enough" for a real answer, which is the whole point of showing it: the plain linear rule quietly breaks down once nrnr gets large (here nr=0.72nr = 0.72, not small at all). You need the standard correction.

The correction: add half of nrnr squared-ish, or just use enre^{nr}

A much better approximation for moderate nrnr comes from remembering that (1+r)nenr(1+r)^n \approx e^{nr} when rr is small (since ln(1+r)r\ln(1+r)\approx r). So instead of 1+nr1+nr, estimate enre^{nr}.

(1+r)nenr.(1+r)^n \approx e^{nr}.

In words: compounding at rate rr for nn periods is close to continuous growth at total rate nrnr. Here nr=0.72nr = 0.72. You likely have e0.72.01e^{0.7}\approx 2.01 memorised or close to it (from the rule that e0.72e^{0.7}\approx 2, tied to the rule of 72's ln20.693\ln 2\approx 0.693). So the estimate is $100 times 2.01, about $201 — within half a percent of the true $199.90, versus the linear rule's 16% miss.

true 1.08^n e^(nr) 1 + nr (linear) year 0 year 9
The linear rule 1+nr peels away from true compounding within a few years; the exponential rule e^(nr) tracks it closely for far longer.

A second worked example, going the other way: -5% for 14 years

A portfolio loses 5% a year for 14 years. Linear estimate: 114×0.05=10.7=0.31 - 14\times0.05 = 1-0.7=0.3, i.e. 70% of value lost — but this rule can't even go negative gracefully once nrnr passes 1, a sign you've left its comfort zone. Exponential estimate: e0.70.497e^{-0.7}\approx 0.497, so about half the value remains, a 50% loss. The true value is 0.95140.4880.95^{14}\approx 0.488 — the exponential estimate is off by about two percentage points, dramatically better than the linear rule's answer, which is off by twenty.

The plain 1+nr1+nr rule is only trustworthy when nrnr itself is small — a rough rule of thumb is nr0.2nr \lesssim 0.2–0.3. Interviewers often pick numbers (nn years at rr percent) specifically so that nrnr is large enough to expose someone using the linear shortcut past its limits. When in doubt, or when nrnr exceeds about 0.3, switch to enre^{nr}.

The transferable technique

Any repeated multiplicative process — compounding returns, population growth, radioactive decay, volatility scaling with t\sqrt{t} — has the same two-tier mental toolkit: a cheap linear approximation for small total change, and the exponential form enre^{nr} (or enre^{-nr} for decay) for anything bigger, anchored to memorised values like e0.72e^{0.7}\approx2 and e2.718e\approx2.718. Recognising which regime nrnr puts you in, before you start calculating, is the actual skill being tested.

Related concepts

Practice in interviews

Further reading

  • Weisberg, mental-math approximation notes for interviews
ShareTwitterLinkedIn