PHD → Probability and Statistics ↓
Stochastic Processes
Stochastic processes are a powerful tool used in probability and statistics to model systems or phenomena that evolve over time under the influence of randomness. These processes are often found in various fields such as finance, biology, physics, and engineering. A thorough understanding of stochastic processes is important as it lays the foundation for various complex models and analyses.
Introduction to stochastic processes
Basically, a stochastic process is a collection of random variables indexed by time or space. Let us first understand this:
- Random variables: These are variables that take on different values, each of which has a particular probability. For example, the roll of a fair dice is a random variable that takes on integer values between 1 and 6.
- Index sets: these are often time-based, meaning that the random variable is described in terms of time (e.g. time step 1, 2, 3, ...). However, they can also be based on other dimensions, such as distance or area.
When talking about stochastic processes, two concepts often emerge:
- State Space: The set of all possible states in which the process can be.
- Sample path: The sample path is the realization of the stochastic process; it is like watching the random behavior evolve step by step over time.
Examples of stochastic processes
1. Random walk
Probably the simplest and most intuitive example of a stochastic process is a random walk. Imagine you are standing on a number line at position 0. Every second, you make one move: one step to the right or one step to the left, each with equal probability.
The above diagram shows a simplified number line, and the red dots indicate the positions where the pedestrian might take a step. If each step is taken based on a fair coin toss (heads for a step to the right), then after a certain number of steps, your series of positions forms a "random walk" on the number line.
2. Brownian motion
Brownian motion models the random motion of particles suspended in a fluid. The concept is similar to random walk, but it is continuous in time and space. It is often used in financial mathematics to model stock price movements.
B(t) = B(0) + ∑ Z_i Δt_i where Z_i ~ N(0,1)
Brownian motion can be thought of as the limit of random walk where the steps become extremely small or occur extremely quickly.
Basic properties
There are several key properties of stochastic processes:
1. Stability
A stochastic process is said to be stationary if its statistical properties do not change over time. In other words, for any change in time, the behaviour of the process in terms of mean and variance remains stationary.
2. Markov property
The Markov property describes "memorylessness". A process has this property when the future state depends only on the current state and not on how the process got there. A popular example of this is the Markov chain.
In the above graphical representation, the process moves from state A to state B, which is indicated by the arrow. The transition does not depend on how we reached state A - it is simply a transition from A to B.
Types of stochastic processes
1. Discrete-time processes
These are processes observed at discrete intervals. Random walks and Markov chains are classic examples. Think of observing the temperature every hour.
2. Continuous-time processes
Here, the observations occur continuously over time, such as in Brownian motion. Continuous-time processes are more complex to handle, but they accurately represent systems where changes can occur spontaneously at any time.
3. Discrete-space processes
In this case, the state space is countable. A random walk on a lattice, where every position lies on a discrete number line, is a typical example.
4. Continuous-space processes
In contrast, continuous space allows state variables to take any values within a range. Such processes are heavily used in physics and financial modeling.
Application
1. Finance
Stochastic processes accurately encode the unpredictable behavior of a financial asset. The random and continuous paths of an asset price are often captured by stochastic differential equations. The Black-Scholes model, a well-known model for pricing options, is based on stochastic processes.
2. Biology
Biological systems often involve variation and randomness. Modelling of population growth, the spread of diseases or even gene expression can be achieved using stochastic processes.
3. Engineering and physics
In engineering, stochastic models are often used to filter out noise in signal processing. Similarly, in physics, the modeling of heat diffusion and molecular motion often relies on stochastic processes.
Mathematical basis
Let us examine some mathematical aspects of stochastic processes:
1. Expectation and variation
For any stochastic process X(t)
, its expected value and variance at any time t
are given by:
E[X(t)] = ∫ xp(x,t) dx Var(X(t)) = E[(X(t) - E[X(t)])^2]
The function p(x,t)
is the probability density function of X
at time t
.
2. Correlation
Correlation functions measure how two variables are related. The autocorrelation function for a process at two different times s
and t
is defined as:
R_X(s,t) = E[(X(s) - E[X(s)])(X(t) - E[X(t)])]
3. Martingales
The martingale is a special type of stochastic process, particularly meaningful in financial contexts. Its defining feature is that the future expectation is equal to the current observation. Formally,
E[X(t+k) | X(t)] = X(t) for all k ≥ 0
Conclusion
Stochastic processes provide a rich framework for modeling complex, time-varying systems under uncertainty. While they can be mathematically sophisticated, breaking them down into fundamental principles helps us understand their nature and reveals their essential applications across various domains. As we appreciate their intricacies, leveraging stochastic processes helps make insightful predictions and informed decisions across a spectrum of challenging scenarios.