Itô's integral
Intuitive idea
Consider a game that consists of tossing a coin, and you win if it comes up heads and lose if it comes up tails, in a succession of tosses. Let's call
is a stochastic process called a random walk.
Now suppose you have a simple betting strategy which consists of betting an amount
Now, if we rescale time (we have a coin toss every instant of time), the random walk converges to Brownian motion. The profit sums then become
with
This looks like Riemann–Stieltjes sums but with random increments. Taking the limit as the mesh goes to zero defines the Itô integral
Ideas for later:
- In Itô’s definition, we always take
(the left endpoint).
- In the Stratonovich integral, you instead take
(the midpoint). - In ordinary Riemann--Stieltjes integral you could in principle choose any point in
, and it wouldn’t matter if the integrator were smooth. But for Brownian motion it does matter, because the path is too irregular.
Two more examples in discrete setup:
Stock portfolio
: random "shocks" of the market. : number of shares you hold at time . : unpredictable change in the market in each interval.
Then
is the random gain/loss of your portfolio.
At the end of the day (
Boat on a choppy sea
: waves hitting the boat (random but with variance growing with time). : how much sail you expose at time . - The Itô integral is the random displacement of your boat due to all the wave kicks, scaled by your sail choice.
If
In general
Suppose time is chopped into little steps
independent for each step.
If you have a rule
Key takeaway
The Itô integral is:
- Not a number, but a random variable for each time
. - Over time, it builds a new stochastic process.
- Discretely, it’s like a weighted random walk: sum of (weight × random increment).
About the integrand
In the Itô integral setup we have three “players”:
– Brownian motion (the noise, external randomness). - This is a stochastic process with independent increments, variance proportional to time, etc.
– the integrand / strategy process. - This is also a stochastic process in general.
- Importantly:
must be adapted to the filtration of . Meaning: at time
, your value of can depend on all information from the past and present , but not on the future. - So
could be deterministic (e.g. ), or it could respond to past values of (e.g. “double the sail if the last wave was positive”), which makes it a stochastic process.
– the resulting Itô integral process. - This is the new stochastic process built from combining
and . - For each fixed
, is a random variable. - As
varies, is a stochastic process. - Its distribution depends on both the randomness of
and the way responds to it.
- This is the new stochastic process built from combining
In practice,
-
can be a fixed function of time only: . - Example: for the boat, “keep sail at half size all the time,” or for a stock, “always hold 10 shares.”
- No dependence on randomness — simplest case.
recovers plain Brownian motion: .
-
can use the past trajectory of : . -
Examples in our analogies:
- Boat: adjust sail according to previous wave heights or cumulative displacement.
- “If last wave was +1, increase sail; if -1, reduce sail.”
- Stock: number of shares held depends on past stock price or returns.
- “If yesterday the stock went up, sell; if down, buy.”
- Boat: adjust sail according to previous wave heights or cumulative displacement.
-
Key:
cannot depend on future increments ( ), only on what’s observable up to .
-
-
If there are other stochastic processes
that you can observe, can also depend on them, as long as they’re measurable at time . - Example:
* Weather: boat adjusts sail depending on past wind speed (another stochastic process).
* Finance: option hedging might depend on both past stock priceand interest rate .
- Example:
-
Often,
depends on a summary statistic of the past: - Cumulative sum:
(current wealth or displacement). - Running maximum or minimum: e.g., for stop-loss strategies.
- Moving averages: smooth history of past observations.
- These are all valid as long as they only use past information.
- Cumulative sum:
Next step: SDEs
Ito's integral
corresponds to the simplest case of stochastic ordinary differential equation:
So now we can consider that we introduce a deterministic component, known as the drift:
Think of the change in a system,
- A predictable, deterministic part (the "drift"): This is the
term. - An unpredictable, random part (the "diffusion"): This is the
term.
In integral form, this SDE is equivalent to:
Here, the first integral is a standard Riemann integral (the predictable path), and the second is the Itô integral above (the random path).
An Intuitive Example: A Drifting Boat
Let's revisit the boat on a choppy sea analogy. With the new SDE model:
* The drift term
* The diffusion term
So, the total movement of the boat is the sum of where its engine is taking it (predictable drift) and how the waves are knocking it about (random diffusion). See the simulation at https://ajpancollantes.github.io/cajondes/sdeboat.html.