CONTENTS

Exponential Distribution

Motivation: why this matters in quant finance

The exponential distribution models waiting time under a constant event rate: time to default, time to the next trade, time to the next jump, or time to an operational loss. It is the waiting-time partner of the Poisson distribution, which counts how many events occur in a window.

Its signature property is memorylessness. Survival up to today does not change the distribution of the remaining wait. That is mathematically clean and financially strong; real hazard rates often move with time, credit quality, and market state.

Definition

A nonnegative random variable TT follows Exp(λ)\operatorname{Exp}(\lambda) if
f(t)=λeλt,t0,f(t)=\lambda e^{-\lambda t}, \qquad t\geq0,

where λ>0\lambda>0 is the rate. The CDF and survival function are

F(t)=1eλt,F(t)=eλt.F(t)=1-e^{-\lambda t}, \qquad \overline{F}(t)=e^{-\lambda t}.

Key Properties

The moments are

E[T]=1λ,Var(T)=1λ2.\mathbb{E}[T]=\frac{1}{\lambda}, \qquad \operatorname{Var}(T)=\frac{1}{\lambda^2}.

Memorylessness is the identity

P(T>s+tT>s)=P(T>t).\mathbb{P}(T>s+t\mid T>s)=\mathbb{P}(T>t).

The hazard rate is constant:

h(t)=f(t)F(t)=λ.h(t)=\frac{f(t)}{\overline{F}(t)}=\lambda.

The MGF is

MT(s)=λλs,s<λ.M_T(s)=\frac{\lambda}{\lambda-s}, \qquad s<\lambda.

In Quant Finance

In reduced-form credit modelling, a constant-intensity default time has

P(τ>T)=eλT.\mathbb{P}(\tau>T)=e^{-\lambda T}.

With recovery RR, a rough spread approximation is

sλ(1R).s\approx\lambda(1-R).

If events arrive as a Poisson process with rate λ\lambda, then inter-arrival times are independent exponentials. Order flow, jump times, and some operational-risk models start from this count/waiting-time link.

For independent credits with τiExp(λi)\tau_i\sim\operatorname{Exp}(\lambda_i),

miniτiExp(iλi).\min_i\tau_i\sim\operatorname{Exp}\left(\sum_i\lambda_i\right).

The first-to-default rate is the sum of the independent intensities.

Worked Example: First Default

For three independent credits with hazards 1%1\%, 2%2\%, and 5%5\%, the first default rate is 0.080.08. The probability of at least one default within five years is

1e0.0850.330.1-e^{-0.08\cdot5}\approx0.330.

The riskiest name matters, but the basket rate is not the maximum rate; it is the sum.

Common Confusions and Pitfalls

λ\lambda is a probability. No. It is a rate and can exceed 1.
Memorylessness is realistic by default. It is a modelling baseline, not an empirical guarantee.
The exponential models returns. It models nonnegative waiting times, not signed returns.

Where This Goes Next

References

  • Bertsekas and Tsitsiklis, Introduction to Probability, 2nd ed., Ch. 3 Sec. 3.1-3.2 and Ch. 4 Sec. 4.4.
  • Mosteller, Fifty Challenging Problems in Probability, Problems 27-30, for rare-event and Poisson-limit reasoning.
  • James, Witten, Hastie, and Tibshirani, An Introduction to Statistical Learning, 2nd ed., Ch. 4, for event probability modelling and generalized linear model context.
Exponential Distribution | q4quant.studio