02.15.01 · analysis / stochastic-analysis

Brownian motion and the Wiener process

shipped3 tiersLean: none

Anchor (Master): Revuz-Yor, Continuous Martingales and Brownian Motion (Springer Grundlehren 293, 3rd ed. 1999), Ch. I-IV; Karatzas-Shreve §§2.6-3.3 (quadratic variation, Lévy's characterisation, strong Markov, reflection, Wiener measure)

Intuition Beginner

Imagine a speck of pollen floating on still water, jittering this way and that without end. Each tiny push from an unseen water molecule nudges it a little, and the nudges keep coming from every direction. The speck never settles; it wanders. Brownian motion is the mathematical idealisation of that wandering — a path that is continuous, so it never jumps, yet so jagged that it has no sensible direction of travel at any instant.

The wandering has two defining habits. First, where it goes next does not depend on where it has been: the future push is fresh, unrelated to the past. Second, the size of a wiggle depends only on how much time passes, not on the clock reading — a one-second step looks the same whether taken now or an hour from now. These two habits, together with the demand that the path stay unbroken, pin down the object almost completely.

A surprising consequence is scale. Over a span of time of length , the typical distance the speck has drifted grows like the square root of , not like itself. Doubling the time does not double the spread; it multiplies it by about . This square-root law is the fingerprint of diffusion, and it recurs everywhere a quantity is buffeted by many small independent shocks.

The path is also self-similar: zoom in on any short stretch, rescale, and it looks like the whole again. There is no smallest wiggle to find.

Visual Beginner

A single jagged curve runs left to right across the frame, plotting position against time. It rises and falls erratically, never flat for long, never with a clean slope you could read off. Around it, a pale shaded band spreads outward like a sideways trumpet: narrow at the left where time is zero and the position is known, flaring as time grows. The band's edges trace two curves shaped like the square root of time, marking where the path typically stays.

The picture carries two lessons at once. The jaggedness of the single path is genuine: no matter how far you zoom in, the curve keeps wiggling, with no straight piece anywhere. The widening band is a statement about many paths at once — start the speck again and again, and the cloud of where it ends up after time is a bell curve whose width grows like the square root of . One picture, one path, but it stands in for a whole spreading family.

Worked example Beginner

Suppose our wanderer starts at position at time , and we ask about its position at time . Call that position . The rules say is drawn from a bell-shaped (normal) law centred at , with a spread measured by the square root of the elapsed time. Here the elapsed time is , so the spread is .

A bell curve centred at with spread puts about two-thirds of its weight within one spread of the centre. So roughly two times out of three, the wanderer at time sits somewhere between and . It strays beyond (two spreads) only about one time in twenty.

Now compare two stretches: from time to time , and from time to time . The first lasts one unit, the second lasts two units. The displacement over the first has spread ; the displacement over the second has spread . The longer stretch produces a wider wiggle, but only by the square-root factor, not by doubling. And because the two stretches do not overlap in time, their displacements are independent: knowing the first tells you nothing about the second.

If we wanted the total displacement from time to time , we would not add the spreads. We add the elapsed times — — and take the square root: spread . Variances add along disjoint time intervals; spreads do not.

Check your understanding Beginner

Formal definition Intermediate+

Fix a probability space . A filtration is an increasing family of sub--algebras of , meaning whenever . We read as the information available by time . The filtration satisfies the usual conditions when it is right-continuous, , and contains every -null set.

For an integrable random variable and a sub--algebra , the conditional expectation is the unique (up to null sets) -measurable integrable random variable with $$ \int_G Y , d\mathbb{P} ;=; \int_G X , d\mathbb{P} \qquad \text{for every } G \in \mathcal{G}. $$ Existence and uniqueness follow from the Radon-Nikodym theorem 02.07.08 applied to the signed measure , which is absolutely continuous with respect to the restriction of to ; the density is .

An adapted, integrable process — adapted meaning each is -measurable — is a martingale if for all . It is a submartingale if holds and a supermartingale if holds.

A real-valued process on is a standard Brownian motion (or Wiener process) if

  1. almost surely;
  2. for the increment has the centred Gaussian law ;
  3. for the increments are independent;
  4. the map is continuous for almost every .

Condition (2) makes the increments stationary (their law depends only on ) and Gaussian; (3) makes them independent. Relative to its own filtration , a Brownian motion is a martingale, since by independence of the increment from the past.

Key theorem with proof Intermediate+

We record the optional-sampling theorem and the existence of Brownian motion, the two structural pillars of everything that follows.

Theorem (Optional sampling, bounded case). Let be a right-continuous martingale and let be bounded stopping times for the filtration , that is, for all and for some constant . Then and $$ \mathbb{E}[M_\tau \mid \mathcal{F}\sigma] = M\sigma, \qquad \text{in particular } \mathbb{E}[M_\tau] = \mathbb{E}[M_0]. $$

Proof. First take dyadic discretisations and likewise , decreasing to . For the discrete martingale obtained by sampling on the grid , Doob's discrete optional-sampling theorem gives ; this is proved by summing the defining martingale identity over the finitely many grid points and using that . The family is uniformly integrable because each is a conditional expectation of the single integrable variable , and such a family is uniformly integrable. Right-continuity of gives and almost surely; uniform integrability upgrades this to convergence, and the conditioning identity passes to the limit.

Theorem (Existence; Lévy-Ciesielski). A standard Brownian motion exists on a suitable probability space.

Proof sketch. On , let be the Haar system and the Schauder functions obtained by integrating them, . Draw independent standard Gaussians and set . Each Schauder function is a tent supported on a dyadic subinterval; at generation the tents have height of order , and a Borel-Cantelli estimate on over the indices of generation shows the series converges uniformly almost surely. The uniform limit of continuous functions is continuous, giving property (4). Because the Schauder functions are obtained from an orthonormal basis of , the resulting Gaussian process has covariance , which is exactly the covariance forcing properties (1)-(3). Concatenating independent copies extends the construction from to ; alternatively, the Kolmogorov extension theorem builds the finite-dimensional Gaussian laws and the Kolmogorov continuity theorem supplies the continuous modification.

Bridge. These two theorems are the foundational reason the rest of stochastic analysis is possible. The optional-sampling identity is exactly the statement that a fair game stays fair when you stop it at a strategy that cannot see the future, and it builds toward the martingale machinery that defines the Itô integral 02.15.02. The Lévy-Ciesielski series generalises the finite-dimensional Gaussian vectors of 26.02.01 to an infinite-dimensional object living on the path space, and the covariance is dual to the variance-additivity the Beginner tier saw as the square-root law. Putting these together, the central insight is that Brownian motion is simultaneously a Gaussian process and a martingale, and its existence as an a.s.-continuous object is what makes the quadratic-variation identity below meaningful; this same continuous-path object appears again in Lévy's characterisation, the strong Markov property, and the Wiener measure.

Exercises Intermediate+

Advanced results Master

We now state the deep sample-path and structural theorems. Throughout, is a standard Brownian motion on a probability space carrying its augmented natural filtration.

Quadratic variation. For a partition with mesh , set . Then in as , and along a refining sequence of partitions the convergence is almost sure. One writes . The computation is short: , and the variance of is , using that a variable has fourth moment .

Nowhere differentiability. Almost surely the path is nowhere differentiable; in fact it is nowhere even locally Hölder of any exponent , while it is locally Hölder of every exponent . The non-differentiability is the path-space shadow of the quadratic variation being a strictly increasing function of rather than zero, which is the situation for any function of bounded variation.

Law of the iterated logarithm. Almost surely, $$ \limsup_{t\downarrow 0} \frac{B_t}{\sqrt{2t\log\log(1/t)}} = 1, \qquad \liminf_{t\downarrow 0}\frac{B_t}{\sqrt{2t\log\log(1/t)}} = -1, $$ with the analogous statement at obtained by time inversion . This sharpens the square-root scaling: the true envelope of the path is , fractionally larger than .

Lévy's characterisation. A continuous local martingale with and quadratic variation is a standard Brownian motion. This converts a list of distributional axioms into two purely martingale-theoretic conditions.

Strong Markov property and reflection. If is a finite stopping time, then is a Brownian motion independent of . Applying this at the hitting time of a level yields the reflection principle: for , $$ \mathbb{P}\Big(\max_{0\le s\le t} B_s \ge a\Big) = 2,\mathbb{P}(B_t \ge a) = \mathbb{P}(|B_t| \ge a). $$

Synthesis. Putting these together, the central insight is that all five results are facets of one object whose defining tension is to be simultaneously Gaussian, continuous, and a martingale. The quadratic-variation identity is the foundational reason the path cannot be differentiable: a differentiable path would have zero quadratic variation, so the very roughness measured by is exactly what the nowhere-differentiability and the law of the iterated logarithm describe from the path side. Lévy's characterisation is dual to the construction: existence builds Brownian motion from Gaussian axioms, while Lévy's theorem recovers those axioms from the two intrinsic facts that is a continuous martingale and — this is exactly the rigidity that makes the Itô integral well posed. The strong Markov property generalises the plain Markov property to random times and is the bridge to the reflection principle, whose hitting-time identity appears again in barrier-option pricing and in the arcsine laws. This pattern recurs throughout the subject: a distributional fact, a martingale fact, and a path fact are three readings of the same structure.

Full proof set Master

Proposition (Lévy's characterisation). Let be a continuous local martingale on a filtered probability space satisfying the usual conditions, with and quadratic variation for all . Then is a standard Brownian motion.

Proof. We use the complex exponential martingale and the (already available) Itô formula for continuous local martingales; the argument fixes the finite-dimensional distributions, which together with the assumed continuity yield Brownian motion. Fix and define $$ Z_t = \exp!\Big(i\xi X_t + \tfrac{1}{2}\xi^2 \langle X\rangle_t\Big) = \exp!\Big(i\xi X_t + \tfrac{1}{2}\xi^2 t\Big). $$ Applying Itô's formula to the function along and its quadratic variation , the bounded-variation terms cancel exactly: the term is , while the second-order term is , leaving only the local-martingale differential . Hence is a continuous local martingale; since is bounded on each , it is a genuine martingale there.

The martingale property of gives, for , $$ \mathbb{E}\big[e^{i\xi(X_t - X_s)} \mid \mathcal{F}_s\big] = e^{-\frac12\xi^2 (t-s)}. $$ The right-hand side is non-random. Taking expectations shows the conditional characteristic function of equals that of a variable, so . That the conditional characteristic function is non-random and -free means is independent of ; iterating over a finite time grid gives independence of the successive increments and identifies each increment's law as . Thus has independent, stationary, centred Gaussian increments with the correct variances, and . The path continuity is a hypothesis. All four defining properties of standard Brownian motion hold, so is a standard Brownian motion.

Proposition (Reflection principle). For a standard Brownian motion and , with , $$ \mathbb{P}(M_t \ge a) = 2,\mathbb{P}(B_t \ge a). $$

Proof. Let , a stopping time, finite almost surely because . On the event we have , and by continuity . By the strong Markov property the post- process is a Brownian motion independent of ; in particular is symmetric, so conditionally on the endpoint is equally likely to lie above or below . Therefore $$ \mathbb{P}(B_t \ge a) = \mathbb{P}(B_t \ge a,, \tau\le t) = \mathbb{P}(M_t\ge a)\cdot \mathbb{P}(\widetilde B_{t-\tau}\ge 0 \mid \tau \le t) = \tfrac12,\mathbb{P}(M_t \ge a), $$ where the first equality holds because forces . Rearranging gives , and since is symmetric this also equals .

Connections Master

  • The construction here builds the Wiener measure on the path space : it is the law of , the pushforward of under , a Borel probability measure on the Polish space of continuous paths. This is the rigorous mathematical counterpart of the physics treatment of the Wiener measure and the path integral in 08.14.01; that unit reaches the same measure on path space through the heat kernel and the formal Feynman sum, where the present unit reaches it through Gaussian increments and the Kolmogorov continuity theorem.

  • The martingale, quadratic-variation, and Lévy-characterisation results assembled here are the exact foundation for the Itô integral and Itô calculus developed in 02.15.02 (co-produced with this unit). The identity is what makes an -isometry, and Lévy's theorem is what lets one recognise time-changed continuous martingales as Brownian motions inside that calculus.

  • The whole apparatus rests on measure-theoretic prerequisites: filtrations are increasing families of the -algebras introduced in 02.07.01; the conditional expectation defining martingales is the Radon-Nikodym derivative of 02.07.08; and the convergence of quadratic-variation sums and of martingale limits lives in the spaces of 02.07.06. The Gaussian increment law and the additivity of variance over disjoint intervals are the continuous-time face of the distributions and independence catalogued in 26.02.01.

Historical & philosophical context Master

The physical phenomenon was recorded by the botanist Robert Brown in 1827, watching pollen grains jitter in water, and given a kinetic explanation by Einstein in 1905 and Smoluchowski in 1906, who derived the linear-in-time growth of the mean-squared displacement that the square-root law encodes. The mathematical object, however, was not secured until Norbert Wiener's 1923 memoir Differential space [Wiener 1923] constructed a genuine countably additive measure on the space of continuous functions — the first rigorous proof that the intuitive "random continuous path" exists as a well-defined probabilistic object rather than a heuristic. Wiener's achievement was to tame an infinite-dimensional integral, and his measure now bears his name.

The structural theory matured with Paul Lévy, whose Théorie de l'addition des variables aléatoires [Lévy 1937] established the law of the iterated logarithm and pointed toward the martingale characterisation later sharpened by Doob, Itô, and Watanabe. Philosophically, Brownian motion sits at a fault line: it is the canonical example of an object that is everywhere continuous yet nowhere differentiable, dramatising that the smoothness of classical analysis is a strong and special assumption, not a default of nature. Wiener measure also gave the first concrete model for a genuinely infinite-dimensional measure on a function space, a template that Feynman would later imitate (without rigour) for quantum amplitudes, and that the mathematics of 08.14.01 still works to justify.

Bibliography Master

@book{KaratzasShreve1991,
  author    = {Karatzas, Ioannis and Shreve, Steven E.},
  title     = {Brownian Motion and Stochastic Calculus},
  series    = {Graduate Texts in Mathematics},
  number    = {113},
  edition   = {2nd},
  publisher = {Springer-Verlag},
  year      = {1991}
}

@book{RevuzYor1999,
  author    = {Revuz, Daniel and Yor, Marc},
  title     = {Continuous Martingales and Brownian Motion},
  series    = {Grundlehren der mathematischen Wissenschaften},
  number    = {293},
  edition   = {3rd},
  publisher = {Springer-Verlag},
  year      = {1999}
}

@book{MortersPeres2010,
  author    = {M\"{o}rters, Peter and Peres, Yuval},
  title     = {Brownian Motion},
  series    = {Cambridge Series in Statistical and Probabilistic Mathematics},
  publisher = {Cambridge University Press},
  year      = {2010}
}

@article{Wiener1923,
  author    = {Wiener, Norbert},
  title     = {Differential space},
  journal   = {Journal of Mathematics and Physics},
  volume    = {2},
  pages     = {131--174},
  year      = {1923}
}

@book{Levy1937,
  author    = {L\'{e}vy, Paul},
  title     = {Th\'{e}orie de l'addition des variables al\'{e}atoires},
  publisher = {Gauthier-Villars},
  year      = {1937}
}