Mathematics.

gaussian processes

Brownian Bridge

Stochastic Processes55 minDifficulty7 out of 10

Overview

The Brownian bridge is a Brownian motion conditioned to return to zero at time 1. More generally, a Brownian bridge from a to b on [0, T] is Brownian motion conditioned on X(0) = a and X(T) = b. It is a Gaussian process with explicit mean and covariance, widely used in statistics (Kolmogorov-Smirnov test), simulation (conditional path generation), and finance (pricing with fixed endpoints).

Intuition

Imagine a Brownian path that starts at 0 and is forced to return to 0 at time 1. It wanders freely in between but is 'pulled back' toward 0 as time approaches 1. The pulling force is proportional to how far the process is from its expected endpoint: the drift is -(X_t)/(1-t), which increases as t -> 1. This is the Brownian bridge.

Formal Definition

Definition

The standard Brownian bridge B^0 on [0,1] is defined as B^0_t = B_t - t*B_1, where B_t is a standard Brownian motion. Equivalently, it is the Gaussian process with mean 0 and covariance Cov(B^0_s, B^0_t) = s(1-t) for s <= t.

Bt0=BttB1,t[0,1]B^0_t = B_t - t B_1, \quad t \in [0,1]
Definition via Brownian motion
E[Bt0]=0,Cov(Bs0,Bt0)=s(1t) for st\mathbb{E}[B^0_t] = 0, \quad \text{Cov}(B^0_s, B^0_t) = s(1-t) \text{ for } s \le t
Mean and covariance
B00=0,B10=0 a.s.B^0_0 = 0, \quad B^0_1 = 0 \text{ a.s.}
Boundary conditions
dBt0=Bt01tdt+dBt,t[0,1)dB^0_t = -\frac{B^0_t}{1-t}\,dt + dB_t, \quad t \in [0,1)
SDE for Brownian bridge
Var(Bt0)=t(1t)\text{Var}(B^0_t) = t(1-t)
Variance

Notation

NotationMeaning
Bt0B^0_tStandard Brownian bridge on [0,1]: B_t - t*B_1
s(1t)s(1-t)Covariance of standard Brownian bridge for s <= t

Theorems

Theorem 1: Theorem 1 (Gaussian Process Characterization)
The standard Brownian bridge B0 is the unique (in distribution) continuous Gaussian process on [0,1] with mean zero, covariance Cov(Bs0,Bt0)=min(s,t)st=s(1t) for st, and B00=B10=0 a.s.\text{The standard Brownian bridge } B^0 \text{ is the unique (in distribution) continuous Gaussian process on } [0,1] \text{ with mean zero, covariance } \text{Cov}(B^0_s, B^0_t) = \min(s,t) - st = s(1-t) \text{ for } s \le t, \text{ and } B^0_0 = B^0_1 = 0 \text{ a.s.}
Theorem 2: Theorem 2 (Kolmogorov-Smirnov)
Let Fn be the empirical CDF of n i.i.d. Uniform[0,1] samples. Then n(Fn(t)t)dBt0 in C[0,1], underlying the Kolmogorov-Smirnov statistic.\text{Let } F_n \text{ be the empirical CDF of } n \text{ i.i.d. Uniform}[0,1] \text{ samples. Then } \sqrt{n}(F_n(t) - t) \xrightarrow{d} B^0_t \text{ in } C[0,1], \text{ underlying the Kolmogorov-Smirnov statistic.}

Worked Examples

  1. 1

    The variance of the Brownian bridge at time t is t(1-t).

    Var(Bt0)=t(1t)\text{Var}(B^0_t) = t(1-t)
  2. 2

    At t = 1/2: Var(B^0_{1/2}) = (1/2)(1 - 1/2) = (1/2)(1/2) = 1/4.

    Var(B1/20)=1212=14\text{Var}(B^0_{1/2}) = \frac{1}{2} \cdot \frac{1}{2} = \frac{1}{4}

✓ Answer

Var(B^0_{1/2}) = 1/4. The variance is maximized at t = 1/2 and equals 0 at both endpoints.

Practice Problems

Mediumfree response

A Brownian bridge goes from B^0_0 = 0 to B^0_1 = 0. What is the distribution of B^0_t for a fixed t in (0,1)?

Mediumfree response

Write down the SDE for the Brownian bridge B^0_t on [0,1) and interpret the drift term.

Common Mistakes

Common Mistake

Thinking the Brownian bridge has constant variance

The variance t(1-t) is NOT constant: it starts and ends at 0 (endpoints are fixed) and peaks at t = 1/2.

Common Mistake

Confusing the Brownian bridge with a Brownian motion conditioned to be at 0

B^0_t = B_t - t B_1 is NOT the same as B_t | B_1 = 0 as a process. However, the conditional distribution of the path given B_1 = 0 is exactly the Brownian bridge.

Quiz

The variance of the standard Brownian bridge B^0_t at time t is:
The standard Brownian bridge can be constructed as:
The Brownian bridge is used in the Kolmogorov-Smirnov test because:

Summary

  • The standard Brownian bridge B^0_t = B_t - t B_1 satisfies B^0_0 = B^0_1 = 0 a.s.
  • Mean 0, Covariance Cov(B^0_s, B^0_t) = s(1-t) for s <= t; Var(B^0_t) = t(1-t).
  • SDE: dB^0_t = -(B^0_t)/(1-t) dt + dB_t -- mean-reverting drift grows to infinity at t=1.
  • Application: KS statistic; sqrt(n)(F_n - F) converges in distribution to a Brownian bridge.

References

  1. BookRevuz, D. and Yor, M. -- Continuous Martingales and Brownian Motion, Chapter XI
  2. BookBillingsley, P. -- Convergence of Probability Measures