The Taylor series is the tool that turns differentiation from a local operation (the slope at a point) into a global approximation (the entire function, rebuilt from its derivatives at a single point). In quantitative finance, this bridge is used in three essential ways:
It is the starting point of Itô's Lemma. When you want to find dv(S,t) — how the option price changes as the stock price and time evolve — you begin with a Taylor expansion of v around the current point. In ordinary calculus, you keep the first-order terms and drop everything else. In stochastic calculus, the Brownian motion increment ΔW∼Δt makes the second-order term survive, and that is Itô's Lemma. The Taylor series is therefore the direct ancestor of every stochastic differential equation in quant finance.
It provides local polynomial approximations for pricing and risk. The Greeks — delta, gamma, theta, and the rest — are the coefficients of a Taylor expansion of the option price around the current market state. The P&L of a delta-hedged portfolio over a small time interval is approximated by:
ΔP&L≈ΘΔt+21Γ(ΔS)2+⋯
This is a second-order Taylor expansion in ΔS and Δt. The approximation is accurate for small moves and breaks down for large moves — knowing when to truncate and why the higher-order terms matter is the essence of understanding Taylor series in a quant context.
It connects discrete and continuous formulations. The Taylor expansion of ex=1+x+x2/2!+⋯ is what turns discrete compounding into continuous compounding; the expansion of ln(1+r)≈r−r2/2+⋯ is what converts simple returns to log-returns. These are not just algebraic tricks — they are Taylor series applied to specific functions, and knowing the error term tells you when the approximation is safe.
Definition and setup
Single-variable Taylor series
Let f be a function that is infinitely differentiable (smooth) at a point a. The Taylor series of f about a is:
where f(n)(a) is the nth derivative of f evaluated at a, and n!=n×(n−1)×⋯×1 is the factorial.
When a=0, this is called the Maclaurin series:
f(x)=n=0∑∞n!f(n)(0)xn
Notation convention: Throughout this page and the rest of the vault, we use h=x−a for the displacement from the expansion point. The Taylor series then reads:
f(a+h)=n=0∑∞n!f(n)(a)hn
Taylor polynomials (finite truncation)
The Nth-order Taylor polynomial is the partial sum:
TN(x)=n=0∑Nn!f(n)(a)(x−a)n
This is a polynomial of degree at most N that agrees with f at a in value and in all derivatives up to order N. The first few:
Order
Polynomial
Name
0
T0=f(a)
Constant approximation
1
T1=f(a)+f′(a)h
Linear (tangent line)
2
T2=f(a)+f′(a)h+21f′′(a)h2
Quadratic
In quant finance, the second-order polynomial is by far the most important because it is the truncation that Itô's Lemma uses. The first-order polynomial is the ordinary chain rule; the second-order polynomial is Itô's correction.
The remainder (error term)
The difference between f and its Taylor polynomial is the remainderRN:
f(a+h)=TN(a+h)+RN(a+h)
Taylor's theorem (Lagrange form): there exists some ξ between a and a+h such that:
RN=(N+1)!f(N+1)(ξ)hN+1
The remainder is O(hN+1), meaning it shrinks faster than hN as h→0. This is why truncation works: for small h, the error from dropping order-(N+1) terms is negligibly small compared to the terms you kept.
Why this matters for Itô's Lemma: In the deterministic case, h=Δx=O(Δt), so the second-order term 21f′′h2=O(Δt2) vanishes as Δt→0. But when h=ΔW=O(Δt), the second-order term is O(Δt) — it survives. The third-order term is O(Δt3/2) and vanishes. This is why the Itô expansion truncates at exactly second order: the Δt scaling of Brownian increments promotes one extra term from "negligible" to "leading order."
Key Taylor expansions
The following expansions are used throughout quant finance. All are Maclaurin series (a=0) unless stated otherwise, valid for the indicated range of x.
Exponential
ex=1+x+2!x2+3!x3+⋯=n=0∑∞n!xnfor all x∈R
This converges everywhere and converges rapidly. It is the most important series in quantitative finance because the exponential appears in discount factors (e−rT), stock price models (ST=S0e(μ−σ2/2)T+σWT), and the moment generating function of the normal distribution.
Finance application — small-rate approximation: For small rΔt:
e−rΔt≈1−rΔt+2(rΔt)2−⋯≈1−rΔt
This first-order approximation is used throughout fixed income when time steps are small. The error is O((rΔt)2), which is negligible for daily or even monthly steps when r is moderate.
Natural logarithm
ln(1+x)=x−2x2+3x3−⋯=n=1∑∞n(−1)n+1xnfor −1<x≤1
Finance application — log-returns vs simple returns: If the simple return over a period is R=ΔS/S (a small number), then the log-return is:
ln(1+R)≈R−2R2
For small returns (e.g., daily equity moves of ~1%), R2/2 is tiny and log-returns ≈ simple returns. For large returns (e.g., a 50% crash, R=−0.5), the difference is significant: ln(0.5)=−0.693=−0.5. The Taylor expansion tells you exactly when the approximation breaks down and by how much.
Geometric series
1−x1=1+x+x2+x3+⋯=n=0∑∞xnfor ∣x∣<1
Finance application — present value of a perpetuity: The PV of an infinite stream of payments c discounted at rate r per period is:
PV=n=1∑∞(1+r)nc=rc
This is the geometric series with x=1/(1+r), summed and rearranged. The convergence condition ∣x∣<1 corresponds to r>0 — the discount rate must be positive for the PV to be finite.
Power function (binomial series)
(1+x)α=n=0∑∞(nα)xn=1+αx+2!α(α−1)x2+⋯for ∣x∣<1
where (nα)=n!α(α−1)⋯(α−n+1) is the generalised binomial coefficient. When α is a positive integer, the series terminates (it becomes the binomial theorem). For non-integer α, the series is infinite.
Finance application — duration and convexity: The price of a bond as a function of yield y can be expanded around a base yield y0:
P(y0+Δy)≈P(y0)+P′(y0)Δy+21P′′(y0)(Δy)2
The first-order term is (negative) duration× price ×Δy; the second-order term is convexity× price ×(Δy)2/2. This is a second-order Taylor expansion of the bond price around the current yield — the same structure that appears in the Greeks expansion for options.
Multivariable Taylor expansion
Two-variable expansion
For a function f(x,y) expanded around (a,b), with h=x−a and k=y−b:
where all partial derivatives are evaluated at (a,b). The first-order terms give the total differential df=fxdx+fydy (the multivariable chain rule); the second-order terms add the curvature corrections.
The expansion that becomes Itô's Lemma
This is the central connection in the vault. Let v(S,t) be a twice-differentiable function (the option price), and let S change by ΔS and t by Δt. The second-order Taylor expansion is:
Δv≈vtΔt+vSΔS+21vSS(ΔS)2+vStΔSΔt+21vtt(Δt)2
Now substitute the stock price dynamics. In the Black-Scholes model, ΔS=μSΔt+σSΔW. The key step is determining which terms survive as Δt→0:
Term
Order
Survives?
vtΔt
O(Δt)
Yes
vSΔS
O(Δt)
Yes
21vSS(ΔS)2
O(Δt) via (ΔW)2=O(Δt)
Yes
vStΔSΔt
O(Δt3/2)
No
21vtt(Δt)2
O(Δt2)
No
The third row is the Itô correction. In ordinary calculus, (ΔS)2=O(Δt2) and the entire second-order block vanishes. But with Brownian motion, (ΔW)2=O(Δt), so (ΔS)2=σ2S2(ΔW)2+⋯=σ2S2Δt+⋯, and the vSS term survives. The result, after passing to the limit, is Itô's Lemma:
dv=vtdt+vSdS+21vSSσ2S2dt
This is a Taylor expansion truncated at second order — but truncated at a different place than in ordinary calculus, because the Δt scaling of Brownian increments changes which terms are "leading order."
The Black-Scholes derivation uses exactly this expansion: the vtdt term is theta, the vSdS term is delta times the stock move, and the 21vSSσ2S2dt term is the gamma correction. Setting up a hedged portfolio that cancels the dWt term and requiring the riskless remainder to earn the risk-free rate r gives the Black-Scholes PDE.
Convergence
Radius of convergence
A Taylor series ∑cn(x−a)n converges for ∣x−a∣<R and diverges for ∣x−a∣>R, where R is the radius of convergence. At ∣x−a∣=R, behaviour must be checked case by case.
For the key series:
Function
Centre
Radius of convergence
ex
0
∞
ln(1+x)
0
1
1−x1
0
1
(1+x)α
0
1
sinx, cosx
0
∞
The exponential and trigonometric series converge everywhere; the logarithm and geometric series converge only for ∣x∣<1 (with possible endpoint convergence).
Finance implication: The approximation ln(1+R)≈R is a Taylor series with radius of convergence 1. For R>1 (a return exceeding 100%) or R≤−1 (a total loss), the series diverges and the approximation is meaningless. In practice, daily returns are far inside the radius, but cumulative returns over long horizons may not be.
Analytic functions
A function is analytic at a if its Taylor series converges to f(x) in some neighbourhood of a. Not all infinitely differentiable functions are analytic — the classic counterexample is f(x)=e−1/x2 (with f(0)=0), which has all derivatives zero at x=0 but is not identically zero. In quant finance, virtually all pricing functions encountered in practice (Black-Scholes, bond pricing, etc.) are analytic where they are smooth, so this subtlety rarely causes problems.
Examples and applications
Example 1: Greeks as Taylor coefficients
The P&L of an option position over a small time step Δt with stock move ΔS is, to second order:
Δv≈ΔvSΔS+ΘvtΔt+21ΓvSS(ΔS)2
This is a Taylor expansion with the derivatives named as Greeks. Each Greek is a Taylor coefficient:
Delta (Δ=vS): the coefficient of ΔS. First-order sensitivity.
Theta (Θ=vt): the coefficient of Δt. Time decay.
Gamma (Γ=vSS): the coefficient of (ΔS)2/2. Curvature correction.
Higher-order Greeks (speed =vSSS, charm =vSt, etc.) are coefficients of higher-order Taylor terms.
A delta-hedged portfolio eliminates the ΔS term, leaving:
ΔP&Lhedged≈ΘΔt+21Γ(ΔS)2
This is the theta-gamma trade-off: a delta-hedged option earns theta (time decay) and pays gamma (cost of convexity), or vice versa. For a long call position, Θ<0 and Γ>0: you lose from time decay but gain from large moves. The Taylor expansion makes this decomposition precise.
Example 2: duration and convexity of a bond
Let P(y) be the price of a bond as a function of yield y. Expand around the current yield y0:
Duration gives the first-order sensitivity (analogous to delta); convexity gives the second-order correction (analogous to gamma). For small yield changes, duration dominates. For large yield changes, the convexity term matters — it always helps (convexity is positive for vanilla bonds), which is why bond traders say "convexity is your friend."
This is structurally identical to the options Greeks expansion. Both are second-order Taylor expansions of a pricing function around the current state.
Example 3: why ln(1+R)≈R−R2/2 matters
If a stock returns R=5% in simple terms, the log-return is:
ln(1.05)=0.05−20.052+30.053−⋯=0.04879…
The first-order approximation (ln(1+R)≈R=0.05) overestimates by about 0.12%. The second-order approximation (R−R2/2=0.05−0.00125=0.04875) is accurate to 0.004%.
The Taylor expansion converges, but slowly for large ∣R∣. In risk management, this means linear approximations (VaR based on delta alone) significantly underestimate tail risk. Including the gamma (second-order) term captures the curvature and gives a more accurate loss estimate — exactly the same logic as the Itô correction.
Example 4: the Itô correction as a Taylor remainder
Apply the Taylor expansion to f(S)=lnS around the current stock price, with ΔS=μSΔt+σSΔW:
Δ(lnS)≈S1ΔS+21(−S21)(ΔS)2=SΔS−21S2(ΔS)2
Now (ΔS)2≈σ2S2Δt (keeping only the leading term from (dW)2=dt):
This is the Itô's Lemma result for lnS under geometric Brownian motion. The −21σ2 correction is the second-order Taylor term that ordinary calculus discards but stochastic calculus keeps. This correction determines that log-returns are normally distributed with drift μ−σ2/2 (not μ), and it is what makes the stock price log-normally distributed rather than normally distributed.
Common confusions and pitfalls
"The Taylor series always converges to f." Not necessarily. The series may diverge outside its radius of convergence, or it may converge to a different function (as with non-analytic functions). In quant finance, the functions you encounter are typically analytic where smooth, so this is rarely an issue in practice — but it explains why Taylor-based approximations fail for large perturbations.
"I can always truncate at first order." Only if the second-order term is negligible. In ordinary calculus with smooth functions, (Δx)2=O(Δt2)→0 and first order suffices. With Brownian motion, (ΔW)2=O(Δt) and the second-order term is the same order as the first-order terms — you must keep it. This is the entire content of Itô's Lemma: the truncation point shifts from first to second order.
"Higher-order Greeks are always negligible." For small moves and short time steps, yes. But for large moves (gap risk, stress scenarios), third- and higher-order Greeks can dominate. The "speed" (vSSS), "colour" (vSSt), and other higher-order sensitivities are the third-order Taylor coefficients. Risk managers who rely exclusively on delta-gamma approximations (second-order Taylor) may underestimate losses from extreme moves.
"Duration fully captures interest rate risk." Duration is a first-order Taylor approximation. For large yield changes, the convexity correction (second-order) is material. For very large changes (e.g., a 300bp shock), even convexity may be insufficient and higher-order terms matter. The Taylor expansion makes the error structure explicit.
Confusing the expansion variable with the function argument. In the Itô expansion, you expand v(S,t) with respect to ΔS and Δt, not with respect to S and t themselves. The expansion point is the current value (St,t), and the displacement is the increment(ΔS,Δt). Mixing these up leads to incorrect expressions.
Where this goes next
The Taylor series is the bridge between three parts of the vault:
To Itô's Lemma: The multivariable Taylor expansion of v(S,t), truncated at second order with the Brownian scaling (ΔW)2=Δt, is Itô's Lemma. The entire stochastic calculus correction is a consequence of the Taylor remainder not vanishing at second order when the increment is driven by Brownian motion.
To the Black-Scholes derivation: The derivation begins with the Taylor expansion dv=vtdt+vSdS+21vSS(dS)2, substitutes the GBM dynamics, constructs a hedged portfolio, and obtains the PDE. Every step traces back to the Taylor series on this page.
The Black-Scholes paper itself rests on this chain: the Taylor expansion produces the Itô differential, the Itô differential enables hedging, and hedging produces the no-arbitrage price. The Taylor series is where the chain begins.
References
Stewart, J. (2008). Single Variable Calculus: Early Transcendentals (6th ed.). Thomson Brooks/Cole. Ch. 11 Sections 11.10-11.11 (Taylor and Maclaurin Series) for Taylor polynomials, remainders, and convergence.
Exercises
Test your understanding with 1 exercise for this lesson.