Euler–Maruyama method

This article is about numerical methods in stochastic models (stochastic differential equations). For the same issue, but in deterministic realm, see Euler method and Ordinary differential equation.

In mathematics, more precisely in Itô calculus, the Euler–Maruyama method, also called simply the Euler method, is a method for the approximate numerical solution of a stochastic differential equation (SDE). It is a simple generalization of the Euler method for ordinary differential equations to stochastic differential equations. It is named after Leonhard Euler and Gisiro Maruyama. Unfortunately the same generalization cannot be done for the other methods from deterministic theory,[1] e.g. Runge–Kutta schemes.

Consider the stochastic differential equation (see Itō calculus)

with initial condition X0 = x0, where Wt stands for the Wiener process, and suppose that we wish to solve this SDE on some interval of time [0, T]. Then the Euler–Maruyama approximation to the true solution X is the Markov chain Y defined as follows:

where

The random variables ΔWn are independent and identically distributed normal random variables with expected value zero and variance .

Example

Numerical simulation

Gene expression modelled as stochastic process

An area that has benefited significantly from SDE is biology or more precisely mathematical biology. Here the number of publications on the use of stochastic model grew, as most of the models are nonlinear, demanding numerical schemes.

The graphic depicts a stochastic differential equation being solved using the Euler Scheme. The deterministic counterpart is shown as well.

Computer implementation

The following Python code implements Euler–Maruyama to solve the Ornstein–Uhlenbeck process

The random numbers for are generated using the numpy mathematics package.

import numpy as np
import matplotlib.pyplot as plt

num_sims = 5
N        = 1000

y_init = 0
t_init = 3
t_end  = 7

c_theta = 0.7
c_mu    = 1.5
c_sigma = 0.06

def mu(y, t): 
    return c_theta * (c_mu - y)
        
def sigma(y, t): 
    return c_sigma

dt   = float(t_end - t_init) / N
dW   = lambda dt: np.random.normal(loc = 0.0, scale = np.sqrt(dt))

t    = np.arange(t_init, t_end, dt)
y    = np.zeros(N)
y[0] = y_init

for i_sim in range(num_sims):
    for i in xrange(1, t.size):
        a = mu(y[i-1], (i-1) * dt)
        b = sigma(y[i-1], (i-1) * dt)
        y[i] = y[i-1] + a * dt + b * dW(dt)
    plt.plot(t, y)

plt.show()

See also

Notes

  1. Kloeden & Platen, 1992

References

This article is issued from Wikipedia - version of the 7/13/2016. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.