25
Numerical Simulation of Stochastic Differential Equations: Lecture 2, Part 1 Des Higham Department of Mathematics University of Strathclyde Montreal, Feb. 2006 – p.1/25

Numerical Simulation of Stochastic Differential Equations: …pft3/days/djh_montreal3.pdf · 2006. 2. 23. · Numerical methods for stochastic differential equations Joshua Wilkie

  • Upload
    others

  • View
    1

  • Download
    0

Embed Size (px)

Citation preview

Page 1: Numerical Simulation of Stochastic Differential Equations: …pft3/days/djh_montreal3.pdf · 2006. 2. 23. · Numerical methods for stochastic differential equations Joshua Wilkie

Numerical Simulation of StochasticDifferential Equations: Lecture 2, Part 1

Des HighamDepartment of Mathematics

University of Strathclyde

Montreal, Feb. 2006 – p.1/25

Page 2: Numerical Simulation of Stochastic Differential Equations: …pft3/days/djh_montreal3.pdf · 2006. 2. 23. · Numerical methods for stochastic differential equations Joshua Wilkie

Lecture 2, Part 1: Euler–Maruyama

Definition of Euler–Maruyama Method

Weak Convergence

Strong Convergence

Linear Stability

Montreal, Feb. 2006 – p.2/25

Page 3: Numerical Simulation of Stochastic Differential Equations: …pft3/days/djh_montreal3.pdf · 2006. 2. 23. · Numerical methods for stochastic differential equations Joshua Wilkie

Recap: SDE

Given functions f and g, the stochastic process X(t) is asoluton of the SDE

dX(t) = f(X(t))dt + g(X(t))dW(t)

if X(t) solves the integral equation

X(t) −X(0) =

∫ t

0f(X(s)) ds +

∫ t

0g(X(s)) dW(s)

Discretize the interval [0, T ]: let ∆t = T/N and tn = n∆tCompute Xn ≈ X(tn)Initial value X0 is given

Montreal, Feb. 2006 – p.3/25

Page 4: Numerical Simulation of Stochastic Differential Equations: …pft3/days/djh_montreal3.pdf · 2006. 2. 23. · Numerical methods for stochastic differential equations Joshua Wilkie

Euler–MaruyamaExact solution:

X(tn+1) = X(tn) +

∫ tn+1

tn

f(X(s)) ds +

∫ tn+1

tn

g(X(s)) dW(s)

Euler–Maruyama:

Xn+1 = Xn + ∆tf(Xn) + ∆Wn g(Xn)

where ∆Wn = W(tn+1) − W(tn)

(Left endpoint Riemann sums)

In MATLAB, ∆Wn becomes sqrt(Dt)*randn

Montreal, Feb. 2006 – p.4/25

Page 5: Numerical Simulation of Stochastic Differential Equations: …pft3/days/djh_montreal3.pdf · 2006. 2. 23. · Numerical methods for stochastic differential equations Joshua Wilkie

f (x) = µx and g(x) = σx, µ = 2, σ = 0.1, X(0) = 1

Solution: X(t) = X(0)e(µ− 1

2σ2)t+σW(t)

Disc. Brownian path with δt = 2−8, E-M with ∆t = 4δt:

0 0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 10

1

2

3

4

5

6

t

X

|XN − X(T )| = 0.69Reducing to ∆t = 2δt gives |XN −X(T )| = 0.16Reducing to ∆t = δt gives |XN −X(T )| = 0.08

Montreal, Feb. 2006 – p.5/25

Page 6: Numerical Simulation of Stochastic Differential Equations: …pft3/days/djh_montreal3.pdf · 2006. 2. 23. · Numerical methods for stochastic differential equations Joshua Wilkie

Convergence?

Xn and X(tn) are random variables at each tn

In what sense does |Xn − X(tn)| → 0 as ∆t → 0?

There are many, non-equivalent, definitions of convergencefor sequences of random variables

The two most common and useful concepts in numericalSDEs are

Weak convergence: error of the mean

Strong convergence: mean of the error

Montreal, Feb. 2006 – p.6/25

Page 7: Numerical Simulation of Stochastic Differential Equations: …pft3/days/djh_montreal3.pdf · 2006. 2. 23. · Numerical methods for stochastic differential equations Joshua Wilkie

Weak ConvergenceWeak convergence: capture the average behaviour

Given a function Φ, the weak error is

eweak∆t := sup

0≤tn≤T

|E [Φ(Xn)] − E [Φ(X(tn))]|

Φ from e.g. set of polynomials of degree at most k

Converges weakly if eweak∆t → 0, as ∆t → 0

Weak order p if eweak∆t ≤ K∆tp, for all 0 < ∆t ≤ ∆t?

In practice we estimate E[Φ(Xn)] by Monte Carlo simulationover many paths ⇒ “1/

√M” sampling error

Montreal, Feb. 2006 – p.7/25

Page 8: Numerical Simulation of Stochastic Differential Equations: …pft3/days/djh_montreal3.pdf · 2006. 2. 23. · Numerical methods for stochastic differential equations Joshua Wilkie

f (x) = µx and g(x) = σx, µ = 2, σ = 0.1, X(0) = 1Solution has E[X(t)] = eµt

Measure weak endpoint error |aM − eµT | over M = 105

discretized Brownian paths. Try ∆t = 2−5, 2−6, 2−7, 2−8, 2−9

10−3

10−2

10−1

10−2

10−1

100

∆ t

| E[X

(T)]

− S

ampl

e av

erag

e of

XN

|

Least squares fit: power is 1.011(Confidence intervals smaller than graphics symbols)Suggests weak order p = 1

Montreal, Feb. 2006 – p.8/25

Page 9: Numerical Simulation of Stochastic Differential Equations: …pft3/days/djh_montreal3.pdf · 2006. 2. 23. · Numerical methods for stochastic differential equations Joshua Wilkie

Weak Euler–MaruyamaXn+1 = Xn + ∆tf(Xn) + ∆̂Wn g(Xn)

where P

(∆̂Wn =

√∆t)

= 1

2= P

(∆̂Wn = −

√∆t)

E.g. use sqrt(Dt)*sign(randn)

or sqrt(Dt)*sign(rand-0.5)

10−3

10−2

10−1

10−2

10−1

100

∆ t

| E[X

(T)]

− S

ampl

e av

erag

e of

XN

|

Least squares fit: power is 1.03Montreal, Feb. 2006 – p.9/25

Page 10: Numerical Simulation of Stochastic Differential Equations: …pft3/days/djh_montreal3.pdf · 2006. 2. 23. · Numerical methods for stochastic differential equations Joshua Wilkie

Weak Euler–Maruyama

Generally, EM and weak EM have weak order p = 1 onappropriate SDEs for Φ(·) with polynomial growth

Can prove via Feynman-Kac formula that relates SDEs toPDEs

Montreal, Feb. 2006 – p.10/25

Page 11: Numerical Simulation of Stochastic Differential Equations: …pft3/days/djh_montreal3.pdf · 2006. 2. 23. · Numerical methods for stochastic differential equations Joshua Wilkie

Strong ConvergenceStrong convergence: follow paths accurately

Strong error is

estrong∆t := sup

0≤tn≤TE [|Xn − X(tn)|]

Converges strongly if estrong∆t → 0, as ∆t → 0

Strong order p if estrong∆t ≤ K∆tp, for all 0 < ∆t ≤ ∆t?

Montreal, Feb. 2006 – p.11/25

Page 12: Numerical Simulation of Stochastic Differential Equations: …pft3/days/djh_montreal3.pdf · 2006. 2. 23. · Numerical methods for stochastic differential equations Joshua Wilkie

f (x) = µx and g(x) = σx, µ = 2, σ = 1, X(0) = 1Solution: X(t) = X(0)e(µ− 1

2σ2)t+σW(t)

M = 5, 000 disc. Brownian paths over [0, 1] with δt = 2−11

For each path apply EM with ∆t = δt, 2δt, 4δt, 16δt, 32δt, 64δtRecord E [|XN − X(1)|] for each δt

10−4

10−3

10−2

10−110

−2

10−1

100

∆ t

Sam

ple

ave

rag

e o

f | X

N −

X(T

) |

Least squares fit: power is 0.51

Montreal, Feb. 2006 – p.12/25

Page 13: Numerical Simulation of Stochastic Differential Equations: …pft3/days/djh_montreal3.pdf · 2006. 2. 23. · Numerical methods for stochastic differential equations Joshua Wilkie

Strong Convergence

Generally EM has strong order p = 1

2on appropriate SDEs

Can prove using Ito’s Lemma, Ito isometry and Gronwall

Note: strong convergence ⇒ weak convergence,but this doesn’t recover the optimal weak order

Montreal, Feb. 2006 – p.13/25

Page 14: Numerical Simulation of Stochastic Differential Equations: …pft3/days/djh_montreal3.pdf · 2006. 2. 23. · Numerical methods for stochastic differential equations Joshua Wilkie

Strong Convergence

Euler–Maruyama has

E [|Xn −X(tn)|] ≤ K∆t1

2

Markov inequality says

P (|X| > a) ≤ E[|X|]a

, for any a > 0

Taking a = ∆t1

4 gives P

(|Xn −X(tn)| ≥ ∆t

1

4

)≤ K∆t

1

4 , i.e.

P

(|Xn −X(tn)| < ∆t

1

4

)≥ 1 − K∆t

1

4

Along any path error is small with high prob.

Montreal, Feb. 2006 – p.14/25

Page 15: Numerical Simulation of Stochastic Differential Equations: …pft3/days/djh_montreal3.pdf · 2006. 2. 23. · Numerical methods for stochastic differential equations Joshua Wilkie

Higher Strong Order

If g(x) is constant, then EM has strong order p = 1

More generally, strong order p = 1 is achieved by theMilstein method

Xn+1 = Xn + ∆tf(Xn) + ∆Wn g(Xn)

+ 1

2g(Xn)g′(Xn)

(∆W

2n − ∆t

)

(More complicated for SDE systems.)

Montreal, Feb. 2006 – p.15/25

Page 16: Numerical Simulation of Stochastic Differential Equations: …pft3/days/djh_montreal3.pdf · 2006. 2. 23. · Numerical methods for stochastic differential equations Joshua Wilkie

Even Higher Strong Order: Warning!

Numerical methods for stochastic differentialequations

Joshua WilkiePhysical Review E, 2004

Claims to derive arbitrarily high (strong?) order methods,with a Runge–Kutta approach.But using only Brownian increments, ∆Wn, rather thanmore general integrals like

∫ tn+1

tn

∫ tn+1

tn

dW1(s)dW2(t)

there is an order barrier of p = 1 (Rümelin, 1982).

Montreal, Feb. 2006 – p.16/25

Page 17: Numerical Simulation of Stochastic Differential Equations: …pft3/days/djh_montreal3.pdf · 2006. 2. 23. · Numerical methods for stochastic differential equations Joshua Wilkie

Beyond Convergence . . .

Numerical methods approximate the continuous by thediscrete:Xn ≈ X(tn), with tn+1 − tn =: ∆t

Convergence:How small is Xn − X(tn) at some finite tn?

Stability (Dynamics):Does limn→∞ Xn look like limt→∞ X(t)?

Study stability by applying the method to a class of testproblems, where information about X(t) is known.Hope to show good behavior either for all ∆t > 0, or at leastfor sufficiently small ∆t.

Montreal, Feb. 2006 – p.17/25

Page 18: Numerical Simulation of Stochastic Differential Equations: …pft3/days/djh_montreal3.pdf · 2006. 2. 23. · Numerical methods for stochastic differential equations Joshua Wilkie

Stochastic Theta Method

Xn+1 = Xn + (1 − θ)∆tf(Xn) + θ∆tf(Xn+1) + g(Xn)∆Wn

where we recall that ∆Wn = W(tn+1) − W(tn),so ∆Wn =

√∆tVn, with Vn ∼ Normal(0, 1) i.i.d.

Xn ≈ X(tn) in the SDE (Itô)

dX(t) = f(X(t))dt + g(X(t))dW(t), X(0) = X0

Montreal, Feb. 2006 – p.18/25

Page 19: Numerical Simulation of Stochastic Differential Equations: …pft3/days/djh_montreal3.pdf · 2006. 2. 23. · Numerical methods for stochastic differential equations Joshua Wilkie

Stochastic Test Equation

dX(t) = µX(t)dt + σX(t)dW(t)

(Asset model in math-finance)

Mean-square stability

limt→∞

E(X(t)2) = 0 ⇔ 2µ + σ2 < 0

STM gives Xn+1 = (a + bVn)Xn, with

a :=1 + (1 − θ)µ∆t

1 − θµ∆t, b :=

σ√

∆t

1 − θµ∆t

Montreal, Feb. 2006 – p.19/25

Page 20: Numerical Simulation of Stochastic Differential Equations: …pft3/days/djh_montreal3.pdf · 2006. 2. 23. · Numerical methods for stochastic differential equations Joshua Wilkie

Mean-square stability

Saito & Mitsui, SIAM J Num Anal 1996

0 ≤ θ < 12 : SDE stable ⇒ method stable iff

∆t <|2µ + σ2|µ2(1 − 2θ)

θ = 12 : SDE stable ⇔ method stable ∀∆t > 0

12 < θ ≤ 1: SDE stable ⇒ method stable ∀∆t > 0

Montreal, Feb. 2006 – p.20/25

Page 21: Numerical Simulation of Stochastic Differential Equations: …pft3/days/djh_montreal3.pdf · 2006. 2. 23. · Numerical methods for stochastic differential equations Joshua Wilkie

Stability Regions

Let x := ∆tµ and y := ∆tσ2

SDE stable ⇔ y < −2xMethod stable ⇔ y < (2θ − 1)x2 − 2x

−5 0 50

2

4

6

8

10theta = 0

x

y

−5 0 50

2

4

6

8

10theta = 0.25

x

y

−5 0 50

2

4

6

8

10theta = 0.75

x

y

−5 0 50

2

4

6

8

10theta = 1

x

y

Montreal, Feb. 2006 – p.21/25

Page 22: Numerical Simulation of Stochastic Differential Equations: …pft3/days/djh_montreal3.pdf · 2006. 2. 23. · Numerical methods for stochastic differential equations Joshua Wilkie

Stochastic Test Equation

dX(t) = µX(t)dt + σX(t)dW(t)

Asymptotic stability

limt→∞

|X(t)| = 0, with prob. 1 ⇔ 2µ − σ2 < 0

Recall that STM gives Xn+1 = (a + bVn)Xn, with

a :=1 + (1 − θ)µ∆t

1 − θµ∆t, b :=

σ√

∆t

1 − θµ∆t

Montreal, Feb. 2006 – p.22/25

Page 23: Numerical Simulation of Stochastic Differential Equations: …pft3/days/djh_montreal3.pdf · 2006. 2. 23. · Numerical methods for stochastic differential equations Joshua Wilkie

Asymptotic Stability: limn→∞ |X

n| = 0, w.p. 1

|Xn| =

(n−1∏

i=0

|a + bVi|)|X0|

SLLN: limn→∞ |Xn| = 0 ⇔ E(log |a + bVi|) < 0

Can be expressed in terms of Meijer’s G-function

Difficult to deal with analytically

No simple expression for stability region boundary

Montreal, Feb. 2006 – p.23/25

Page 24: Numerical Simulation of Stochastic Differential Equations: …pft3/days/djh_montreal3.pdf · 2006. 2. 23. · Numerical methods for stochastic differential equations Joshua Wilkie

Asymptotic Stability for Backward Euler (θ = 1)

−1.5 −1 −0.5 0 0.5 1 1.5 2 2.5 3 3.50

5

10

15

20

25theta = 1

x

y

Montreal, Feb. 2006 – p.24/25

Page 25: Numerical Simulation of Stochastic Differential Equations: …pft3/days/djh_montreal3.pdf · 2006. 2. 23. · Numerical methods for stochastic differential equations Joshua Wilkie

Many open equestions regarding asymptotic stability

E.g. is there an A-stable method?

Generalizations to nonlinear SDEs are also possible

Montreal, Feb. 2006 – p.25/25