Time Value of Money — Chapter 5
Move value through time: FV = PV(1+r)^n
(forward, compounding) and PV = FV/(1+r)^n
(backward, discounting).
Glossary & Notation
- PV — Present Value: value at t=0 (today).
- FV — Future Value: value at t=n (future date).
- r — interest rate per period (year if annual, month if monthly).
- n — number of periods.
- PMT — constant payment per period (for annuities/loans; Ch.6).
- Compounding — forward growth; Discounting — present valuation.
- APR — nominal annual % (no intra-year compounding); EAR — effective annual % (with compounding).
Core Formulas & Excel Twins
- Future Value:
FV = PV(1 + r)^n
• Excel:=ABS(FV(rate, nper, 0, PV))
- Present Value:
PV = FV / (1 + r)^n
• Excel:=ABS(PV(rate, nper, 0, FV))
- Rate:
r = (FV/PV)^(1/n) − 1
• Excel:=RATE(nper, 0, -PV, FV)
(PV & FV must have opposite signs) - Periods:
n = ln(FV/PV) / ln(1+r)
• Excel:=NPER(rate, 0, -PV, FV)
(PV & FV opposite signs)
Excel sign rules: Single cash flow (only PV or only FV): keep the amount positive and wrap the function with ABS(...)
(e.g., =ABS(FV(...))
, =ABS(PV(...))
). Two cash flows (PV & FV both present): use opposite signs — one positive, one negative (e.g., =RATE(nper,0,-PV,FV)
, =NPER(rate,0,-PV,FV)
). The on‑page toggle only affects the interactive calculators.
APR vs EAR
APR is the quoted nominal rate. EAR is the true annual growth including compounding.
- APR→EAR (m times/year):
EAR = (1 + APR/m)^m − 1
- Excel:
=EFFECT(APR, m)
- Example:
=EFFECT(12%, 12)
⇒ 12.68%
📽️ Chapter 5 Slides (PPT)
Viewing inline uses the Office web viewer. If your browser blocks it, use the download button.
Video: TVM Basics
Practice Questions (Q1–Q9 with timelines)
Q1 — Find FV (compounding)
Invest $1,000 today for 5 years at 5%. How much at time 5?
FV = 1000×(1.05)^5 = $1,276.28
• Excel: =ABS(FV(5%,5,0,1000))
Q2 — Long-run FV intuition
$10 at 5.5% for 200 years. What is FV?
FV ≈ $447,189.80
• Excel: =ABS(FV(5.5%,200,0,10))
Q3 — Find FV
$500 at 8% for 15 years. What is FV?
FV ≈ $1,586.09
• Excel: =ABS(FV(8%,15,0,500))
Q4 — Find PV (discounting)
Need $150,000 in 17 years at 8%. How much to invest today?
PV ≈ $40,540.34
• Excel: =ABS(PV(8%,17,0,150000))
Q5 — Find PV from known FV
Trust fund now is $19,671.51 (after 10 years at 7%). What was the initial deposit?
PV = $10,000.00
• Excel: =ABS(PV(7%,10,0,19671.51))
Q6 — Solve for Rate r
You invest $5,000 and it grows to $6,650 in 4 years. What annual rate did you earn?
r = (FV/PV)^(1/n) − 1 = (6650/5000)^(1/4) − 1 = 7.31%
Excel:
=RATE(4,0,-5000,6650)
Q7 — Solve for Rate r (another set)
$1,200 becomes $1,800 over 6 years. What annual r?
r = (1800/1200)^(1/6) − 1 = 6.92%
Excel:
=RATE(6,0,-1200,1800)
Q8 — Solve for Periods n
You deposit $2,000 at 6% annual. How many years to reach $3,500?
n = ln(FV/PV)/ln(1+r) = ln(1.75)/ln(1.06) = 9.74 years
Excel:
=NPER(6%,0,-2000,3500)
Q9 — Solve for Periods n (another set)
How long for $750 at 9% to become $1,500?
n = ln(2)/ln(1.09) = 8.04 years
Excel:
=NPER(9%,0,-750,1500)
Chapter 6 Preview
Next: PMT/annuities, amortization, and multi-cash-flow timelines. Want those added here with sliders? Say the word.