G05XDF (PDF version)
G05 Chapter Contents
G05 Chapter Introduction
NAG Library Manual

NAG Library Routine Document

G05XDF

Note:  before using this routine, please read the Users' Note for your implementation to check the interpretation of bold italicised terms and other implementation-dependent details.

+ Contents

    1  Purpose
    7  Accuracy

1  Purpose

G05XDF computes scaled increments of sample paths of a free or non-free Wiener process, where the sample paths are constructed by a Brownian bridge algorithm. The initialization routine G05XCF must be called prior to the first call to G05XDF.

2  Specification

SUBROUTINE G05XDF ( NPATHS, RCORD, D, A, DIFF, Z, LDZ, C, LDC, B, LDB, RCOMM, IFAIL)
INTEGER  NPATHS, RCORD, D, A, LDZ, LDC, LDB, IFAIL
REAL (KIND=nag_wp)  DIFF(D), Z(LDZ,*), C(LDC,*), B(LDB,*), RCOMM(*)

3  Description

For details on the Brownian bridge algorithm and the bridge construction order see Section 2.6 in the G05 Chapter Introduction and Section 3 in G05XCF. Recall that the terms Wiener process (or free Wiener process) and Brownian motion are often used interchangeably, while a non-free Wiener process (also known as a Brownian bridge process) refers to a process which is forced to terminate at a given point.
Fix two times t0<T, let ti 1iN  be any set of time points satisfying t0<t1<t2<<tN<T, and let Xt0, Xti 1iN , XT denote a d-dimensional Wiener sample path at these time points.
The Brownian bridge increments generator uses the Brownian bridge algorithm to construct sample paths for the (free or non-free) Wiener process X, and then uses this to compute the scaled Wiener increments
Xt1 - Xt0 t1 - t0 , Xt2 - Xt1 t2 - t1 ,, XtN - XtN-1 tN - tN-1 , XT - XtN T - tN
The example program in Section 9 shows how these increments can be used to compute a numerical solution to a stochastic differential equation (SDE) driven by a (free or non-free) Wiener process.

4  References

Glasserman P (2004) Monte Carlo Methods in Financial Engineering Springer

5  Parameters

Note: the following variable is used in the parameter descriptions: N=NTIMES, the length of the array TIMES passed to the initialization routine G05XCF.
1:     NPATHS – INTEGERInput
On entry: the number of Wiener sample paths.
Constraint: NPATHS1.
2:     RCORD – INTEGERInput
On entry: the order in which Normal random numbers are stored in Z and in which the generated values are returned in B.
Constraint: RCORD=1 or 2.
3:     D – INTEGERInput
On entry: the dimension of each Wiener sample path.
Constraint: D1.
4:     A – INTEGERInput
On entry: if A=0, a free Wiener process is created and DIFF is ignored.
If A=1, a non-free Wiener process is created where DIFF is the difference between the terminal value and the starting value of the process.
Constraint: A=0 or 1.
5:     DIFF(D) – REAL (KIND=nag_wp) arrayInput
On entry: the difference between the terminal value and starting value of the Wiener process. If A=0, DIFF is ignored.
6:     Z(LDZ,*) – REAL (KIND=nag_wp) arrayInput/Output
Note: the second dimension of the array Z must be at least NPATHS if RCORD=1 and at least D×N+1-A if RCORD=2.
On entry: the Normal random numbers used to construct the sample paths.
If RCORD=1 and quasi-random numbers are used, the D×N+1-A, where N=nintRCOMM2-dimensional quasi-random points should be stored in successive columns of Z.
If RCORD=2 and quasi-random numbers are used, the D×N+1-A, where N=nintRCOMM2-dimensional quasi-random points should be stored in successive rows of Z.
On exit: the Normal random numbers premultiplied by C.
7:     LDZ – INTEGERInput
On entry: the first dimension of the array Z as declared in the (sub)program from which G05XDF is called.
Constraints:
  • if RCORD=1, LDZD×N+1-A;
  • if RCORD=2, LDZNPATHS.
8:     C(LDC,*) – REAL (KIND=nag_wp) arrayInput
Note: the second dimension of the array C must be at least D.
On entry: the lower triangular Cholesky factorization C such that CCT gives the covariance matrix of the Wiener process. Elements of C above the diagonal are not referenced.
9:     LDC – INTEGERInput
On entry: the first dimension of the array C as declared in the (sub)program from which G05XDF is called.
Constraint: LDCD.
10:   B(LDB,*) – REAL (KIND=nag_wp) arrayOutput
Note: the second dimension of the array B must be at least NPATHS if RCORD=1 and at least D×N+1 if RCORD=2.
On exit: the scaled Wiener increments.
Let Xp,ik denote the kth dimension of the ith point of the pth sample path where 1kD, 1iN+1 and 1pNPATHS.
If RCORD=1, the increment Xp,ik-Xp,i-1kti-ti-1 will be stored at Bk+i-1×D,p.
If RCORD=2, the increment Xp,ik-Xp,i-1kti-ti-1 will be stored at Bp,k+i-1×D.
11:   LDB – INTEGERInput
On entry: the first dimension of the array B as declared in the (sub)program from which G05XDF is called.
Constraints:
  • if RCORD=1, LDBD×N+1;
  • if RCORD=2, LDBNPATHS.
12:   RCOMM(*) – REAL (KIND=nag_wp) arrayCommunication Array
On entry: communication array as returned by the last call to G05XCF or G05XDF. This array must not be directly modified.
13:   IFAIL – INTEGERInput/Output
On entry: IFAIL must be set to 0, -1​ or ​1. If you are unfamiliar with this parameter you should refer to Section 3.3 in the Essential Introduction for details.
For environments where it might be inappropriate to halt program execution when an error is detected, the value -1​ or ​1 is recommended. If the output of error messages is undesirable, then the value 1 is recommended. Otherwise, if you are not familiar with this parameter, the recommended value is 0. When the value -1​ or ​1 is used it is essential to test the value of IFAIL on exit.
On exit: IFAIL=0 unless the routine detects an error or a warning has been flagged (see Section 6).

6  Error Indicators and Warnings

If on entry IFAIL=0 or -1, explanatory error messages are output on the current error message unit (as defined by X04AAF).
Errors or warnings detected by the routine:
IFAIL=1
On entry, RCOMM was not initialized or has been corrupted. On entry, RCOMM was not initialized or has been corrupted. On entry, RCOMM was not initialized or has been corrupted.
IFAIL=2
On entry, NPATHS=value.
Constraint: NPATHS1.
IFAIL=3
On entry, the value of RCORD is invalid.
IFAIL=4
On entry, D=value.
Constraint: D1.
IFAIL=5
On entry, A=value.
Constraint: A=0​ or ​1.
IFAIL=6
On entry, LDZ=value and D×NTIMES+1-A=value.
Constraint: LDZD×NTIMES+1-A.
On entry, LDZ=value and NPATHS=value.
Constraint: LDZNPATHS.
IFAIL=7
On entry, LDC=value.
Constraint: LDCvalue.
IFAIL=8
On entry, LDB=value and D×NTIMES+1=value.
Constraint: LDBD×NTIMES+1.
On entry, LDB=value and NPATHS=value.
Constraint: LDBNPATHS.
IFAIL=-999
Dynamic memory allocation failed.

7  Accuracy

Not applicable.

8  Further Comments

None.

9  Example

The scaled Wiener increments produced by this routine can be used to compute numerical solutions to stochastic differential equations (SDEs) driven by (free or non-free) Wiener processes. Consider an SDE of the form
d Yt = ft,Yt dt + σt,Yt dXt
on the interval t0,T  where Xt t0 tT  is a (free or non-free) Wiener process and f and σ are suitable functions. A numerical solution to this SDE can be obtained by the Euler–Maruyama method. For any discretization t0 < t1 < t2 << tN+1=T  of t0,T , set
Y ti+1 = Y ti + f ti,Yti ti+1 - ti + σ ti,Yti Xti+1 - Xti
for i=1,,N so that YtN+1  is an approximation to YT. The scaled Wiener increments produced by G05XDF can be used in the Euler–Maruyama scheme outlined above by writing
Yti+1 = Yti + ti+1 - ti f ti,Yti + σ ti,Yti Xti+1 - Xti ti+1 - ti .
The following example program uses this method to solve the SDE for geometric Brownian motion
d St = rSt dt + σSt dXt
where X is a Wiener process, and compares the results against the analytic solution
ST = S0 exp r-σ2/2 T + σXT .
Quasi-random variates are used to construct the Wiener increments.

9.1  Program Text

Program Text (g05xdfe.f90)

9.2  Program Data

None.

9.3  Program Results

Program Results (g05xdfe.r)


G05XDF (PDF version)
G05 Chapter Contents
G05 Chapter Introduction
NAG Library Manual

© The Numerical Algorithms Group Ltd, Oxford, UK. 2012