One idea, 4 fields
Logarithms & Exponential Growth
The unifying principle
Compounding is the statement that the rate of change of a quantity is proportional to the quantity itself:
Integrating gives the continuous form:
and the discrete (per-step) form, when growth happens times with factor :
The logarithm is the exact inverse: it recovers the number of compounding steps (time, doublings, digits) from the result.
Two invariants recur everywhere:
- Doubling time: — the time to multiply by 2, independent of starting size.
- Log-linearity: plotting against gives a straight line of slope . Exponential curves become lines under logs; that's why we can see compounding.
How it shows up in each field
Biology — bacterial growth
In exponential phase, each cell divides on a fixed schedule, so population size obeys where is the generation (doubling) time. Equivalently with .
Why it's the same idea: division rate is proportional to the number of cells present → .
Stock-Market — compound interest
An investment reinvesting its returns grows by a fixed fraction each period:
Why it's the same idea: interest is earned on the whole current balance, so . Log returns are used precisely because they add across periods where percentage returns multiply.
Coding/CS — Moore's Law & algorithmic complexity
Two faces of the same math:
Moore's Law: transistor count doubles ~every 2 years: — pure exponential growth.
Algorithmic complexity: logarithms measure how many times you can halve a problem.
Why it's the same idea: divide-and-conquer compounds a factor of per step; counts the steps.
Why this bridge matters
- Doubling-time intuition transfers everywhere. A biologist's feel for "how many generations?" is identical to an investor's "Rule of 72" and a programmer's depth. Learn it once, use it four times.
- Log-scale is the universal linearizer. Bacterial growth curves, stock charts, and Moore's-Law plots are all drawn on log axes because compounding becomes a readable straight line — slope = growth rate.
- Small rates, huge outcomes. Intuition from finance (a 1% edge, compounded, dominates long-run) explains why a slightly faster-dividing microbe outcompetes rivals and why an algorithm crushes at scale.
- The inverse is the insight. In every field the exponential is the phenomenon and the logarithm is the analytical tool: recovering time, doublings, or steps from the outcome.
Connections
- 01 Exponential & Logarithmic Functions
- 02 Differential Equations — Growth Models
- 03 Bacterial Growth Phases
- 04 Compound Interest & Log Returns
- 05 Moore's Law & Scaling
- 06 Big-O & Divide-and-Conquer
- 07 Rule of 72 & Doubling Time
#bridge