The time value of money
▸ Pretest — guess, even if you don't know
You invest $10,000 at 8% per year for 30 years, reinvesting everything. Roughly how much do you end with?
Interest is the price of time
If I offer you 100 in a year, you take it today — even ignoring inflation and the risk I might not pay. Money in hand can be put to work: lent out, invested in T-bills, used now instead of later. The interest rate is the market price of that flexibility. It's what someone must pay you to give up your money for a period of time.
This one idea underlies almost everything in finance: bond pricing, options pricing, why the Sharpe ratio subtracts a risk-free rate, why a "guaranteed 1M today.
Future value: compounding forward
Two abbreviations you'll see everywhere in finance: PV is present value — money in hand today. FV is future value — what that money becomes later.
Invest today at rate per year, reinvesting all interest. After years:
In words: future value equals present value times "one plus r, raised to the power n." The raised is an exponent: it means multiply by itself times — once per year. At 8% for 3 years, that's , not .
That exponent is the whole story. Ten thousand dollars at 8%:
| Years | Value | Linear guess |
|---|---|---|
| 1 | $10,800 | $10,800 |
| 9 | $19,990 | $17,200 |
| 18 | $39,960 | $24,400 |
| 30 | $100,627 | $34,000 |
By year 30 the compound value is roughly 3× what linear intuition suggests. This is why fees, small edges, and small return differences matter so much over long horizons — they compound too.
Present value: discounting backward
Run the same machine in reverse. A cash flow — any payment you'll receive — of size arriving in years is worth today:
In words: the value today equals the future cash amount , divided by "one plus r to the power n." It's the future-value formula solved backwards — instead of multiplying by the growth factor, you divide by it.
This is called discounting, and here is the discount rate — the rate you use to shrink future money back to today's terms. A dollar tomorrow is worth less than a dollar today, because you could have invested today's dollar and had more than a dollar tomorrow. Concretely: at , 50 today** — because 100 in 9 years (; read that as "1.08 to the power 9 is roughly 2").
Every asset price is, at some level, a discounted stream of expected future cash flows. When interest rates rise, discount rates rise, and the present value of far-future cash flows falls. That's why long-duration assets — assets whose cash flows arrive far in the future, like long bonds and high-growth tech stocks whose profits are decades away — get hit hardest when rates go up.
Compounding frequency, briefly
assumes interest compounds once a year. Compound more often and you earn slightly more. Example: 8% compounded monthly gives effective — read it as "one plus the yearly rate split into 12 monthly pieces, compounded 12 times, minus the 1 you started with." Push the frequency to the limit — compounding every instant — and you get continuous compounding:
In words: future value equals present value times "e to the power r times t," where is time in years. The letter is not a variable — it's a fixed mathematical constant, roughly 2.718 (like ), that shows up whenever growth happens continuously.
At 8%, vs. 1.08 for annual compounding — a small difference. But the continuous form is mathematically cleaner, which is why derivatives pricing (Hull's world) and log returns (which add across time exactly the way exponents add) live in continuous-compounding land. For now just recognize when you see it.
The risk-free rate: the baseline everything is measured against
The risk-free rate, written ("r sub f"), is what you earn for giving up money over time while taking (essentially) zero default risk — risk that the borrower fails to pay you back. In practice it's the yield — the annualized return — on short-term US Treasury bills (T-bills: short-term IOUs from the US government). It is pure time value: no risk premium at all.
This is the baseline hurdle for every investment. Earning 5% when T-bills pay 5% means your risk earned you nothing. That's why:
- The Sharpe ratio (A2-04) is — read: expected return minus the risk-free rate, divided by sigma (the spread of returns). Only return above the risk-free baseline counts as compensation for risk.
- CAPM and factor models explain excess returns (return minus the risk-free rate), not raw returns.
- A backtest run during a 5%-rate era that "makes 6%" is far less impressive than the same 6% during a 0%-rate era.
When you see subtracted anywhere in this curriculum, it's this lesson operating: strip out the price of time first, then judge what the risk bought you.
The rule of 72
Quick mental math: money doubles in approximately years, with in percent. In words: divide 72 by the interest rate to get the doubling time. At 8%: years. (The exact answer is , where is the natural logarithm — the inverse of the function from above. You don't need to compute it; the point is the shortcut is remarkably accurate for rates between ~4% and ~12%.)
The power move is chaining doublings. A 30-year horizon at 8% is doublings: — two multiplied by itself 3.3 times is about ten. That single estimate — "8% for 30 years is about 10×" — reframes retirement math, fee drag, and why starting to invest 9 years earlier roughly doubles the final outcome for the same contributions.
Try it
Implement present_value(cashflow, r, years): the value today of a single cash flow arriving in the future, discounted at annual rate r. Formula: cashflow / (1 + r) ** years.
⧉ Review cardWhat is the future value formula for annual compounding?
⧉ Review cardWhy is a dollar tomorrow worth less than a dollar today?
⧉ Review cardWhat is the rule of 72?
⧉ Review cardWhat is the risk-free rate and why does the Sharpe ratio subtract it?
⧉ Review cardWhy do long-duration assets fall hardest when interest rates rise?
Explain it in your own words
Your generative activity: explain to a friend with no finance background why 50 today when rates are 8% — without using the word "formula." If you can make the reinvestment argument in plain speech, you own this concept.
◈ Calibration check
Could you compute a present value by hand and explain why discounting exists?
1 = guessing · 5 = could teach it
⏻ End of lesson
Mark it read to book its 5 review cards into your deck.
Sources & further reading
- bookBodie, Kane & Marcus (2021), Investments, 12e — §5
- bookHull (2021), Options, Futures, and Other Derivatives, 11e — §4