Finance · 11 min read · ~26 min study · beginner
Time Value of Money
Present value, future value, discounting, NPV — the concept that underpins all of finance.
Time Value of Money: The Foundation of Every Financial Calculation
Present value, future value, discounting, NPV — the concept that a pound today is worth more than a pound tomorrow underpins all of finance.
A Pound Today Is Worth More Than a Pound Tomorrow
This is not a deep philosophical statement — it is a mathematical fact with real consequences. If I offer you $1,000 today or $1,051.27 in a year, you should take the $10,000 today. Why? Because you could invest it and have more than $1,000 in a year.
This simple insight — the time value of money — is the foundation upon which the entirety of finance is built. Bond pricing, stock valuation, derivatives, mortgages, pensions — every single one boils down to comparing cash flows at different points in time.
Future Value: Growing Money Forward
If you invest $1,000 at 5% annual interest:
After 1 year: ( 1000 \times 1.05 = $1,000 )
After 2 years: ( 1000 \times 1.05^2 = $1,000 )
After n years: ( FV = PV \times (1 + r)^n )
The magic is compounding — earning interest on interest. Over short periods, the difference between simple and compound interest is small. Over decades, it is enormous. At 7% annual returns, your money roughly doubles every 10 years.
Present Value: Bringing Money Back
Present value (PV) reverses the process. If someone promises you $1,000 in 5 years, and the relevant interest rate is 6%, what is that promise worth today?
[ PV = \frac{FV}{(1+r)^n} = \frac{1000}{1.06^5} \approx $1,000 ]
That $1,000 future payment is worth about $1,000 today. The process of converting future values to present values is called discounting, and the interest rate used is the discount rate.
Different discount rates reflect different risks. A US government bond uses a low rate (low risk). A startup's projected cash flows use a high rate (high risk). Choosing the right discount rate is one of the most important — and contentious — decisions in finance.
Net Present Value (NPV)
NPV is the sum of all discounted cash flows:
[ NPV = \sum_{t=0}^{T} \frac{C_t}{(1+r)^t} ]
If NPV > 0, the investment creates value. If NPV < 0, it destroys value.
This is how companies evaluate investments, how bonds are priced, and how every discounted cash flow (DCF) model works. It is a direct application of sigma notation and geometric series.
Continuous Compounding
As you increase the compounding frequency — monthly, daily, every second — you approach a limit:
[ FV = PV \cdot e^{rT} ]
This is continuous compounding, and it uses the exponential function. Quant finance uses continuous compounding almost exclusively because the maths is cleaner: derivatives of ( e^{rT} ) are simple, products become sums in log space, and calculus works smoothly.
The corresponding discount factor is ( e^{-rT} ). A cash flow of $1,000 in 3 years at a continuously compounded rate of 4%:
[ PV = 100 \times e^{-0.04 \times 3} = 100 \times 0.8869 = $1,000 ]
Discount Factors
A discount factor ( D(T) ) tells you what $1,000 received at time ( T ) is worth today:
[ D(T) = e^{-rT} \quad \text{(continuous)} \quad \text{or} \quad D(T) = \frac{1}{(1+r)^T} \quad \text{(discrete)} ]
Discount factors are the building blocks of bond pricing, swap valuation, and yield curve construction. A bond's price is literally the sum of its cash flows multiplied by their respective discount factors.
The Arbitrage Argument
Why does the time value of money have to hold? Because of arbitrage — the possibility of making risk-free profit.
If a risk-free bond paid 5% and someone offered you $1,000 in a year for $1,000 today, you could:
- Invest $1,000 in the bond → receive $1,000 in a year
- Pocket the remaining $1,000 as free money
Market participants doing exactly this would quickly push the price to $1,000, which is the present value. The no-arbitrage principle — the idea that free money should not exist in an efficient market — is the logical foundation of the entire derivatives pricing framework.
Interest Rate Conventions
A quick practical note: interest rates are quoted in different ways depending on the market:
| Convention | Example | Typical Use |
|---|---|---|
| Annual compounding | 5% per year | Bank savings |
| Semi-annual | 2.5% per 6 months | US Treasury bonds |
| Quarterly | 1.25% per quarter | Some money market instruments |
| Continuous | 4.879% (equivalent to 5% annual) | Quant models |
Converting between conventions is a common source of errors. The key relationship: a rate ( r_c ) continuously compounded is equivalent to ( r_a = e^{r_c} - 1 ) annually compounded.
TVM in Python
import numpy as np
# Present value of $1,000 in 5 years at 6%
fv, r, n = 1000, 0.06, 5
pv = fv / (1 + r)**n
print(f"PV (discrete): ${pv:.2f}")
# Same with continuous compounding
pv_cont = fv * np.exp(-r * n)
print(f"PV (continuous): ${pv_cont:.2f}")
# NPV of a stream of cash flows
cash_flows = [-500, 100, 150, 200, 250] # Initial investment + returns
times = [0, 1, 2, 3, 4]
npv = sum(cf * np.exp(-r * t) for cf, t in zip(cash_flows, times))
print(f"NPV: ${npv:.2f}")
Why This Matters for Quants
Every pricing formula, every risk model, and every valuation you will encounter uses discounting. The Black-Scholes formula discounts expected payoffs. Bond pricing sums discounted coupons. VaR models discount future losses.
If TVM is not second nature to you, everything built on top of it will feel shaky. covers this thoroughly in the finance stream, with interactive exercises that connect the maths to the code.
For further reading, the Investopedia article on TVM provides a solid supplementary overview.
Want to go deeper on Time Value of Money: The Foundation of Every Financial Calculation?
This article covers the essentials, but there's a lot more to learn. Inside , you'll find hands-on coding exercises, interactive quizzes, and structured lessons that take you from fundamentals to production-ready skills — across 50+ courses in technology, finance, and mathematics.
Free to get started · No credit card required
Keep Reading
[Finance
Understanding Financial Markets: A Practical Guide for Aspiring Quants
Equity, fixed income, FX, derivatives — how financial markets actually work, who the participants are, and where quantitative engineers fit in.](/quant-knowledge/finance/understanding-financial-markets)[Finance
Bonds and Fixed Income: Pricing, Duration, and Why Quants Care
Bond pricing, yield to maturity, duration and convexity — the fixed income concepts that form the backbone of interest rate modeling.](/quant-knowledge/finance/bonds-and-fixed-income)[Mathematics
Exponentials and Logarithms: Why Finance Cannot Live Without Them
Compound interest, log returns, continuous growth — the exponential function and its inverse are everywhere in quantitative finance. Here is why.](/quant-knowledge/mathematics/exponentials-and-logarithms)[Finance
Option Pricing Models Explained: Binomial Trees to Black-Scholes (2026)
A clear guide to option pricing models — the binomial tree, risk-neutral valuation, and the Black-Scholes formula. Learn how derivatives are valued and why it matters for every quant.](/quant-knowledge/finance/option-pricing-models-explained)
What You Will Learn
- Explain a pound today is worth more than a pound tomorrow.
- Build future value: growing money forward.
- Calibrate present value: bringing money back.
- Compute net present value (npv).
- Design continuous compounding.
- Implement discount factors.
Prerequisites
- Derivatives intuition — see Derivatives intuition.
- Options Greeks — see Options Greeks.
- Comfort reading code and basic statistical notation.
- Curiosity about how the topic shows up in a US trading firm.
Mental Model
Markets are auctions for risk. Every product, model, and strategy in this section is a way of pricing or transferring some piece of risk between counterparties — and US markets give you the deepest, most regulated, most algorithmic version of that auction in the world. For Time Value of Money, frame the topic as the piece that present value, future value, discounting, NPV — the concept that underpins all of finance — and ask what would break if you removed it from the workflow.
Why This Matters in US Markets
US markets are the deepest, most algorithmic, most regulated capital markets in the world. The SEC, CFTC, FINRA, and Federal Reserve govern equities, options, futures, treasuries, and OTC derivatives. The big buy-side (Bridgewater, AQR, Citadel, Two Sigma, Renaissance) and the major sell-side (GS, MS, JPM, Citi, BofA) hire heavily against the material in this section.
In US markets, Time Value of Money tends to surface during onboarding, code review, and the first incident a junior quant gets pulled into. Questions on this material recur in interviews at Citadel, Two Sigma, Jane Street, HRT, Jump, DRW, IMC, Optiver, and the major bulge-bracket banks.
Common Mistakes
- Quoting risk-free rates without saying which curve (T-bill, OIS, fed funds futures).
- Treating implied volatility as a forecast instead of a market-clearing quantity.
- Using realized correlation as a hedge ratio without accounting for regime change.
- Treating Time Value of Money as a one-off topic rather than the foundation it becomes once you ship code.
- Skipping the US-market context — copying European or Asian conventions and getting bitten by US tick sizes, settlement, or regulator expectations.
- Optimizing for elegance instead of auditability; trading regulators care about reproducibility, not cleverness.
- Confusing model output with reality — the tape is the source of truth, the model is a hypothesis.
Practice Questions
- Compute the delta of an at-the-money call on SPY with one month to expiry under Black-Scholes (σ=18%, r=5%).
- Why does the implied volatility surface for SPX exhibit a skew rather than a flat smile?
- Define the Sharpe ratio and explain why it is annualized.
- Why does delta-hedging a sold straddle on SPY produce P&L proportional to realized minus implied variance?
- What does a 100 bps move in the 10-year Treasury yield typically do to a 30-year fixed-rate mortgage rate?
Answers and Explanations
- Δ = N(d1) where d1 = (ln(S/K) + (r + σ²/2)T) / (σ√T). With S=K, T=1/12, σ=0.18, r=0.05: d1 ≈ (0 + (0.05 + 0.0162)·0.0833) / (0.18·0.2887) ≈ 0.106; N(0.106) ≈ 0.542. Delta ≈ 0.54.
- Because investors pay a premium for downside protection (left tail) and equity returns are negatively correlated with volatility; out-of-the-money puts therefore trade rich relative to OTM calls.
- Sharpe = (excess return) / (volatility). Annualization (multiply by √252 for daily returns) puts strategies of different frequencies on comparable footing — a key requirement for comparing US asset managers.
- Because the hedger captures gamma·dS² over time; integrating gives Σ gamma·(dS)², and theta paid over the life is set by implied variance. Net P&L tracks σ_realized² − σ_implied² scaled by gamma exposure.
- Roughly 75-100 bps move the same direction; mortgages are priced off the 10y plus a spread that includes prepayment risk and originator margin, which both move with rates.
Glossary
- Delta — first derivative of option price with respect to underlying.
- Gamma — second derivative; rate of change of delta.
- Vega — sensitivity of option price to implied volatility.
- Theta — time decay; daily P&L from holding the option as expiry approaches.
- Implied volatility — the σ that, when plugged into Black-Scholes, recovers the market price.
- Skew — variation of implied volatility across strikes.
- Spread — the difference between two prices; a yield curve, an option spread, or a cross-instrument arb.
- Sharpe ratio — annualized excess return divided by annualized volatility; the standard performance metric in US asset management.
Further Study Path
- Understanding Financial Markets — Equity, fixed income, FX, derivatives — how markets actually work and where quants fit in.
- Bonds and Fixed Income — Pricing, yield to maturity, duration, convexity — the fixed-income concepts behind interest-rate modeling.
- Introduction to Derivatives — Forwards, futures, options, swaps — the contracts at the heart of quantitative finance.
- Python for Quant Finance: Fundamentals — Variables, functions, data structures, classes, and error handling — the core Python every quant role expects.
- Advanced Python for Financial Applications — Decorators, generators, and context managers — the patterns that separate beginner Python from production quant code.
Key Learning Outcomes
- Explain a pound today is worth more than a pound tomorrow.
- Apply future value: growing money forward.
- Recognize present value: bringing money back.
- Describe net present value (npv).
- Walk through continuous compounding.
- Identify discount factors.
- Articulate the arbitrage argument.
- Trace finance as it applies to time value of money.
- Map fundamentals as it applies to time value of money.
- Pinpoint how time value of money surfaces at Citadel, Two Sigma, Jane Street, or HRT.
- Explain the US regulatory framing — SEC, CFTC, FINRA — relevant to time value of money.
- Apply a single-paragraph elevator pitch for time value of money suitable for an interviewer.
- Recognize one common production failure mode of the techniques in time value of money.
- Describe when time value of money is the wrong tool and what to use instead.
- Walk through how time value of money interacts with the order management and risk gates in a US trading stack.
- Identify a back-of-the-envelope sanity check that proves your implementation of time value of money is roughly right.
- Articulate which US firms publicly hire against the skills covered in time value of money.
- Trace a follow-up topic from this knowledge base that deepens time value of money.
- Map how time value of money would appear on a phone screen or onsite interview at a US quant shop.
- Pinpoint the day-one mistake a junior would make on time value of money and the senior's fix.