Chapter 3: Stochastic Differential Equations¶
This chapter develops stochastic differential equations as the natural continuous-time limit of random systems and builds the analytical framework needed to study them. The entire chapter is driven by the single identity arising from quadratic variation:
From this one fact the Itô integral, Itô's formula, and the theory of diffusions all follow.
The structure follows a single pipeline:
Key Concepts¶
Empirical Motivation¶
Financial returns exhibit statistical properties — heavy tails, volatility clustering, and absence of autocorrelation — that deterministic models cannot reproduce.
This forces the introduction of randomness and motivates stochastic modeling. The required integration theory is developed in the next section.
Itô Integration¶
Classical integration fails for Brownian motion because its paths have unbounded first variation but non-vanishing quadratic variation:
The Itô integral is defined as an \(L^2\)-limit of adapted Riemann sums evaluated at left endpoints and is characterized by the Itô isometry:
This defines the fundamental stochastic integral and produces continuous martingales. The same quadratic variation identity is what forces a correction term in the chain rule below.
Itô's Formula¶
Itô's formula is the stochastic chain rule — the fundamental theorem of stochastic calculus. For \(f \in C^{1,2}\) and an Itô process \(X_t\):
The extra second-order term arises from quadratic variation. This is the central mechanism that transforms randomness into drift and makes SDEs solvable in closed form when a transformation is available.
Stochastic Differential Equations¶
An SDE
defines a stochastic process via its drift \(b\) and diffusion coefficient \(\sigma\). Solving an SDE means constructing a process satisfying the corresponding integral equation.
Analytical solutions are obtained via Itô transformations; numerical schemes approximate paths when closed forms are unavailable. The question of when a solution exists at all is addressed next.
Existence and Uniqueness¶
Under Lipschitz and linear growth conditions on \(b\) and \(\sigma\), an SDE admits a unique strong solution. The solution is constructed via Picard iteration, paralleling the classical theory for ODEs.
This establishes when SDE models are mathematically well-defined, setting the stage for studying their structure.
Diffusion Processes¶
Solutions of SDEs with Markov coefficients form diffusion processes — continuous-path Markov processes completely determined by \(b\) and \(\sigma\). They can be characterized equivalently by:
- SDEs (pathwise description),
- infinitesimal generators (analytic description),
- martingale problems (law-based description).
These three perspectives describe the same object through different lenses and are connected by the generator introduced below.
Infinitesimal Generator and Dynkin's Formula¶
The generator
captures the instantaneous rate of change of \(\mathbb{E}^x[f(X_t)]\). The fundamental identity
decomposes the dynamics of \(f(X_t)\) into a predictable drift and a martingale fluctuation \(M_t\). Taking expectations yields Dynkin's formula:
which governs the evolution of expectations and is the bridge from stochastic models to pricing PDEs.
Conceptual Flow¶
flowchart LR
A[Empirical Data]
--> B[Randomness Required]
--> C[Itô Integral]
--> D[Itô Formula]
--> E[SDE]
--> F[Existence & Uniqueness]
--> G[Diffusion Structure]
--> H[Generator & Dynkin]
Each idea appears exactly once, in the section that owns it; the sections below develop the details.