Integration Techniques
The main methods for actually computing an integral by hand — substitution and integration by parts — the algebraic toolkit that turns 'this represents an area or an accumulated total' into an actual closed-form number or formula.
Prerequisites: Derivatives and Differentiation Rules
Knowing that an option's fair price is the expected discounted payoff — an integral of the payoff against a probability density — is only half the job. You still have to actually compute that integral to get a number, and most integrals that show up in pricing don't have an obvious antiderivative sitting in front of you. Integration techniques are the systematic methods for turning an integral you can't immediately write down the answer to into one you can, by restructuring the expression algebraically first.
An analogy: unwrapping a nested package
Some integrals are like a small, single, plainly labeled box — you know the answer on sight. Others are like a package wrapped inside another wrapped package: you can't see what's inside until you undo the outer layer first. Integration techniques are the systematic ways of "unwrapping" a complicated integral — substitution repackages the problem in different, simpler variables; integration by parts pulls a product apart into a piece you can integrate directly plus a leftover piece that's hopefully easier than what you started with.
The math, one symbol at a time
Substitution reverses the chain rule: if you spot an inner function and its derivative both present in the integrand, set , , and rewrite the whole integral in terms of :
In words: change variables so the "inner function and its own rate of change" collapse into a single simpler variable , turning a tangled expression into a plain integral of .
Integration by parts reverses the product rule:
In words: split the integrand into two pieces, (which you'll differentiate, hopefully making it simpler) and (which you'll integrate, hopefully staying manageable) — the original integral becomes a simple product minus a new, hopefully easier, integral .
Worked example 1: substitution for a discounting integral
Compute (the total discount factor accumulated continuously over 10 years at a 5% rate). Let , so , i.e. . The integral becomes , evaluated from 0 to 10: . So the integral equals approximately 7.87 — the substitution turned an integral with a messy exponent into one of the most basic integrals there is, .
Worked example 2: integration by parts for a duration-like integral
Compute (relevant to computing a bond's Macaulay duration, which weights each cash flow's timing by its discounted size). Set (so ) and (so ). Then ; carefully, , giving the antiderivative . Evaluating from 0 to 5: at , ; at : . Result: . The product-form integrand — which had no obvious single antiderivative — was pulled apart by parts into pieces that each integrate cleanly.
What this means in practice
Continuous discounting, duration and convexity formulas, and the Black-Scholes derivation all involve integrals that need exactly these two techniques (or their probabilistic cousins, like the The Itô Integral in stochastic calculus) to reduce to closed form. Even where a pricing model is ultimately solved numerically, recognizing which piece of a formula is a standard integral — and simplifying it by hand first — often turns an expensive numerical integration into an exact, instant closed-form answer.
Substitution reverses the chain rule (repackaging the integral into a simpler variable), and integration by parts reverses the product rule (trading a hard product integral for a simple term minus an easier new integral) — together they solve the large majority of integrals that show up in closed-form pricing formulas.
Integration by parts requires choosing which factor is and which is wisely — picking the wrong split can make the new integral harder than the one you started with, not easier. A common guideline (mnemonic "LIATE": logarithmic, inverse trig, algebraic, trigonometric, exponential, roughly in that priority order for choosing ) helps, but blindly applying it without checking whether the resulting and are actually simpler is a frequent source of getting stuck partway through a derivation.
Related concepts
Practice in interviews
Further reading
- Spivak, Calculus, ch. 13-19