Finance · 13 min read · ~28 min study · beginner
Introduction to Derivatives
Forwards, futures, options, swaps — the contracts at the heart of quantitative finance.
Introduction to Derivatives: Forwards, Futures, Options, and Swaps
What derivatives are, how they work, and why they matter — the contracts at the heart of quantitative finance.
Try it yourself
Put this theory into practice
Use our free interactive tool to experiment with the concepts from this article - no signup required.
Options Pricing PlaygroundAdjust spot price, strike, volatility, time and rates - see call/put prices and Greeks update in real time.
What Are Derivatives (and Why Should You Care)?
A derivative is a financial contract whose value depends on — is derived from — the price of something else. That something else is called the underlying: a stock, a bond, an interest rate, an exchange rate, a commodity, even the weather.
The global derivatives market is vast. By notional value, it is measured in the hundreds of trillions — dwarfing the equity and bond markets combined. And it is where some of the most mathematically sophisticated work in finance happens.
If you want to work in quant finance, derivatives are very likely going to be part of your world. This post covers the four main types and the intuition behind them.
Forwards and Futures
A forward contract is an agreement to buy or sell an asset at a fixed price on a future date. No money changes hands today (unlike buying the asset outright).
Example: You agree today to buy 1,000 barrels of oil at $75/barrel in 3 months. In 3 months, if oil is at $80, you have saved $5,000. If it is at $70, you have lost $5,000 compared to the market.
Futures are standardised forwards traded on exchanges. The key differences:
| Feature | Forward | Future |
|---|---|---|
| Trading venue | OTC (private) | Exchange |
| Standardization | Customized | Standardised |
| Counterparty risk | Bilateral | Cleared (minimal) |
| Settlement | At maturity | Daily mark-to-market |
The Forward Price
The forward price is determined by no-arbitrage. If the spot price is ( S_0 ), the risk-free rate is ( r ), and maturity is ( T ):
[ F_0 = S_0 \cdot e^{rT} ]
This is the cost-of-carry model. If the forward price were higher, you could buy the asset, sell the forward, and earn a risk-free profit. If lower, the reverse. Arbitrageurs ensure the price stays close to this formula.
This is your first taste of risk-neutral pricing — the foundational principle of derivatives valuation.
Options
An option gives the holder the right, but not the obligation, to buy or sell an asset at a specified price (the strike) by a certain date (the expiry).
- Call option: right to buy
- Put option: right to sell
The asymmetry — you can choose not to exercise — is what makes options interesting. It also makes them harder to price than forwards.
Payoff Diagrams
At expiry:
Call payoff: ( \max(S_T - K, 0) ) — you profit if the stock ends above the strike
Put payoff: ( \max(K - S_T, 0) ) — you profit if the stock ends below the strike
These hockey-stick-shaped payoffs are the signature of options. They are piecewise functions — and if mathematical notation is fresh in your mind, you will recognize the ( \max ) function immediately.
Intrinsic Value vs Time Value
An option's price has two components:
- Intrinsic value: the payoff if you exercised right now
- Time value: the extra premium for the chance of further favorable moves
Time value decays as expiry approaches (this is theta decay). A deep out-of-the-money option with a week to expiry has almost no time value — it needs a miracle.
Put-Call Parity
A beautiful no-arbitrage relationship links puts and calls:
[ C - P = S_0 - K e^{-rT} ]
If this does not hold, arbitrageurs can earn risk-free profits. It is one of the cleanest examples of how no-arbitrage pricing works.
Swaps
A swap is an agreement to exchange cash flows. The most common type — an interest rate swap — exchanges fixed-rate payments for floating-rate payments.
Example: Company A pays a fixed 3% and receives SONIA (the floating rate). If SONIA averages 4% over the swap's life, Company A profits. If SONIA averages 2%, it loses.
Interest rate swaps are the single largest derivative market by notional value. Banks use them to manage interest rate risk, and corporations use them to convert between fixed and floating debt.
Why Derivatives Exist
Derivatives serve three fundamental purposes:
1. Hedging
A wheat farmer can sell futures to lock in a price, removing the risk of a price drop before harvest. An airline can buy oil futures to manage fuel costs. A bank with a fixed-rate mortgage book can use swaps to manage interest rate risk.
2. Speculation
If you believe a stock will rise, buying call options gives you leveraged exposure with limited downside (you can only lose the premium). More bang for your buck — and more potential bang for your loss.
3. Arbitrage
If a derivative is mispriced relative to its underlying, traders can construct risk-free profits. This activity — and the threat of it — keeps markets efficient and ensures derivatives prices stay closely linked to their underlyings.
Pricing Derivatives: The Big Ideas
Pricing forwards is relatively straightforward (cost of carry). Pricing options is harder because of the asymmetric payoff. Two major approaches:
The Binomial Model
Start with a simple world: the stock can only go up or down each period. Build a tree, calculate payoffs at expiry, and work backward using risk-neutral probabilities. The binomial model is the first formal pricing framework, and it is surprisingly powerful.
Black-Scholes
In the limit of infinitely many small time steps, the binomial model converges to the Black-Scholes formula — the most famous equation in finance. It uses calculus, probability, and Brownian motion to produce a closed-form solution for European option prices.
The Greeks
Once you can price an option, you need to understand how the price changes when market conditions move. The Greeks — delta, gamma, theta, vega, rho — measure these sensitivities. They are partial derivatives (the maths kind) of the option price with respect to its inputs.
Traders use the Greeks every day to manage risk. A delta-neutral portfolio is insensitive to small stock price moves. Adding gamma hedging protects against larger moves. The Greeks transform abstract calculus into practical risk management.
Getting Started with Derivatives
Derivatives are where maths, technology, and finance meet most intensely. The pricing models use stochastic calculus, the risk management uses linear algebra, and the implementation requires solid programming.
takes you from the basics through to pricing models and the Greeks, with Python implementations at every step. The finance, maths, and technology streams are designed to converge — because that is how derivatives work in practice.
Hull's Options, Futures, and Other Derivatives is the standard textbook if you want a comprehensive reference. And Investopedia's derivatives section is good for quick lookups.
Frequently Asked Questions
What are derivatives in simple terms?
Derivatives are financial contracts whose value is derived from an underlying asset (like a stock, bond, commodity, or interest rate). The four main types are forwards, futures, options, and swaps. They are used for hedging risk, speculating on price movements, and gaining exposure to assets without owning them directly.
Why are derivatives important in quant finance?
Derivatives are at the heart of quantitative finance. Pricing them requires the most sophisticated mathematical models (Black-Scholes, stochastic volatility, jump-diffusion). Managing their risk requires the Greeks. And trading them requires understanding market microstructure. Most quant analyst roles involve derivatives in some form.
What is the difference between a future and an option?
A future obligates both buyer and seller to transact at a predetermined price on a set date. An option gives the holder the right (but not obligation) to buy or sell at a set price. This asymmetry means options have non-linear payoffs and require more complex pricing models.
Are derivatives risky?
Derivatives themselves are tools — they can reduce risk (hedging) or increase it (speculation with leverage). The risk depends entirely on how they are used. Unhedged, leveraged derivatives positions have caused major losses (LTCM, AIG). Properly managed derivatives are essential for modern risk management.
Want to go deeper on Introduction to Derivatives: Forwards, Futures, Options, and Swaps?
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
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)[Finance
Options Greeks Explained: Delta, Gamma, Theta, Vega & Volatility (2026)
A clear guide to the options Greeks — delta, gamma, theta, vega, and rho — plus volatility modeling. Learn how traders use these sensitivities for hedging and risk management.](/quant-knowledge/finance/options-greeks-explained)[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.](/quant-knowledge/finance/time-value-of-money)
What You Will Learn
- Explain what are derivatives (and why should you care).
- Build forwards and futures.
- Calibrate options.
- Compute swaps.
- Design why derivatives exist.
- Implement pricing derivatives: the big ideas.
Prerequisites
- 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 Introduction to Derivatives, frame the topic as the piece that forwards, futures, options, swaps — the contracts at the heart of quantitative 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, Introduction to Derivatives 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 Introduction to Derivatives 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.
- Time Value of Money — Present value, future value, discounting, NPV — the concept that underpins all of finance.
- Bonds and Fixed Income — Pricing, yield to maturity, duration, convexity — the fixed-income concepts behind interest-rate modeling.
- 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 what are derivatives (and why should you care).
- Apply forwards and futures.
- Recognize options.
- Describe swaps.
- Walk through why derivatives exist.
- Identify pricing derivatives: the big ideas.
- Articulate the greeks.
- Trace derivatives as it applies to introduction to derivatives.
- Map fundamentals as it applies to introduction to derivatives.
- Pinpoint how introduction to derivatives surfaces at Citadel, Two Sigma, Jane Street, or HRT.
- Explain the US regulatory framing — SEC, CFTC, FINRA — relevant to introduction to derivatives.
- Apply a single-paragraph elevator pitch for introduction to derivatives suitable for an interviewer.
- Recognize one common production failure mode of the techniques in introduction to derivatives.
- Describe when introduction to derivatives is the wrong tool and what to use instead.
- Walk through how introduction to derivatives 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 introduction to derivatives is roughly right.
- Articulate which US firms publicly hire against the skills covered in introduction to derivatives.
- Trace a follow-up topic from this knowledge base that deepens introduction to derivatives.
- Map how introduction to derivatives would appear on a phone screen or onsite interview at a US quant shop.
- Pinpoint the day-one mistake a junior would make on introduction to derivatives and the senior's fix.