CONTENTS

Riemann-Stieltjes Integral

Motivation: why this matters in quant finance

Many finance quantities are accumulated against something other than calendar time. Portfolio value accumulates against price changes. Bond cash flows accumulate against a distribution of payment dates. Stochastic calculus eventually defines integrals such as 0THtdSt\int_0^T H_t\,dS_t, where the integrator is a price process, not dtdt.

The Riemann-Stieltjes integral is the deterministic predecessor of this idea. It replaces the ordinary integral f(x)dx\int f(x)\,dx with f(x)dg(x)\int f(x)\,dg(x), where increments of gg decide how much weight each region receives. If gg jumps, the integral picks up point masses. If gg is smooth, it reduces to an ordinary weighted integral.

This note is not the full Itô integral. It is the bridge: it teaches the idea of integrating against an accumulated quantity before randomness and quadratic variation enter.

The informal idea

An ordinary Riemann integral sums height times width:

if(xi)Δxi.\sum_i f(x_i^*)\Delta x_i.

A Riemann-Stieltjes integral sums height times change in another function:

if(xi)Δgi=if(xi)(g(xi)g(xi1)).\sum_i f(x_i^*)\Delta g_i = \sum_i f(x_i^*)\left(g(x_i)-g(x_{i-1})\right).

If gg grows quickly on one interval, that interval receives more weight. If gg is flat, that interval contributes nothing. If gg jumps, the jump contributes a discrete amount.

Formal definition

Let f,g:[a,b]Rf,g:[a,b]\to\mathbb{R} and let PP be a partition a=x0<<xn=ba=x_0<\cdots<x_n=b. Choose sample points xi[xi1,xi]x_i^*\in[x_{i-1},x_i]. The Riemann-Stieltjes sum is

i=1nf(xi)(g(xi)g(xi1)).\sum_{i=1}^n f(x_i^*)\left(g(x_i)-g(x_{i-1})\right).
If these sums converge to the same limit as the mesh of the partition goes to zero, regardless of sample points, the limit is the Riemann-Stieltjes integral:
abf(x)dg(x).\int_a^b f(x)\,dg(x).

A common sufficient condition is: ff is continuous and gg has bounded variation on [a,b][a,b].

Key properties

Reduction to ordinary integration

If gg is continuously differentiable, then

abf(x)dg(x)=abf(x)g(x)dx.\int_a^b f(x)\,dg(x)=\int_a^b f(x)g'(x)\,dx.

So the Stieltjes integral generalises ordinary integration rather than replacing it.

Jumps create point masses

If gg jumps by Δg(c)\Delta g(c) at cc, then the integral includes f(c)Δg(c)f(c)\Delta g(c), depending on convention and continuity side. This is why Stieltjes notation is natural for distributions with atoms.

Integration by parts

When the relevant integrals exist,

abfdg+abgdf=f(b)g(b)f(a)g(a).\int_a^b f\,dg + \int_a^b g\,df = f(b)g(b)-f(a)g(a).

This is the deterministic ancestor of product rules in stochastic calculus. Itô's formula changes this identity by adding a quadratic-variation correction.

Distribution functions

If FF is a cumulative distribution function, then h(x)dF(x)\int h(x)\,dF(x) represents expectation with respect to that distribution. Discrete masses and continuous densities are handled in one notation.

Worked examples

Example 1: smooth integrator

Let g(x)=x2g(x)=x^2 on [0,1][0,1] and f(x)=xf(x)=x. Since g(x)=2xg'(x)=2x,

01xd(x2)=012x2dx=23.\int_0^1 x\,d(x^2)=\int_0^1 2x^2\,dx=\frac{2}{3}.

Example 2: jump integrator

Let g(x)=1xcg(x)=\mathbf{1}_{x\ge c} on [0,1][0,1]. Then gg is flat except for a unit jump at cc, and

01f(x)dg(x)=f(c).\int_0^1 f(x)\,dg(x)=f(c).

The integral has selected the value at the jump point. This is the deterministic analogue of integrating against a point mass.

Example 3: expectation notation

For a random variable XX with CDF FF, expectation can be written as

E[h(X)]=h(x)dF(x).\mathbb{E}[h(X)]=\int h(x)\,dF(x).

If FF has both a density and jumps, this single formula covers both the continuous and discrete pieces.

Common confusions and pitfalls

"dgdg always means g(x)dxg'(x)dx." Only when gg is smooth enough. The point of Stieltjes integration is that gg may have jumps or singular growth.
"This is already the Itô integral." No. The Itô integral handles random integrators of unbounded variation such as Brownian motion. The Riemann-Stieltjes integral usually requires bounded variation of the integrator.
"The sample-point convention never matters." With jumps, left- and right-continuity conventions can matter. Financial cash-flow timing is exactly where that detail becomes economic.
"Bounded variation is a technical afterthought." It is the condition that makes pathwise deterministic integration work. Brownian paths violate it, which is why stochastic integration needs new machinery.

Where this goes next

References

  • Stewart, J. (2008). Single Variable Calculus: Early Transcendentals (6th ed.). Thomson Brooks/Cole. Ch. 5 definite-integral construction supplies the Riemann-sum background; the Riemann-Stieltjes extension is beyond this single-variable source and is included for quant-finance integration against cumulative processes.

Exercises

Test your understanding with 3 exercises for this lesson.