NAG Library Routine Document
g05xaf
(bb_init)
1
Purpose
g05xaf initializes the Brownian bridge generator
g05xbf. It must be called before any calls to
g05xbf.
2
Specification
Fortran Interface
Integer, Intent (In) | :: |
ntimes | Integer, Intent (Inout) | :: |
ifail | Real (Kind=nag_wp), Intent (In) | :: |
t0,
tend,
times(ntimes) | Real (Kind=nag_wp), Intent (Out) | :: |
rcomm(12*(ntimes+1)) |
|
3
Description
3.1
Brownian Bridge Algorithm
Details on the Brownian bridge algorithm and the Brownian bridge process (sometimes also called a non-free Wiener process) can be found in
Section 2.6 in the G05 Chapter Introduction. We briefly recall some notation and definitions.
Fix two times
and let
be any set of time points satisfying
. Let
denote a
-dimensional Wiener sample path at these time points, and let
be any
by
matrix such that
is the desired covariance structure for the Wiener process. Each point
of the sample path is constructed according to the Brownian bridge interpolation algorithm (see
Glasserman (2004) or
Section 2.6 in the G05 Chapter Introduction). We always start at some fixed point
. If we set
where
is any
-dimensional standard Normal random variable, then
will behave like a normal (free) Wiener process. However if we fix the terminal value
, then
will behave like a non-free Wiener process.
3.2
Implementation
Given the start and end points of the process, the order in which successive interpolation times
are chosen is called the
bridge construction order. The construction order is given by the array
times. Further information on construction orders is given in
Section 2.6.2 in the G05 Chapter Introduction. For clarity we consider here the common scenario where the Brownian bridge algorithm is used with quasi-random points. If pseudorandom numbers are used instead, these details can be ignored.
Suppose we require
Wiener sample paths each of dimension
. The main input to the Brownian bridge algorithm is then an array of quasi-random points
where each point
has dimension
or
respectively, depending on whether a free or non-free Wiener process is required. When
g05xbf is called, the
th sample path for
is constructed as follows: if a non-free Wiener process is required set
equal to the terminal value
, otherwise construct
as
where
is the matrix described in
Section 3.1. The array
times holds the remaining time points
in the order in which the bridge is to be constructed. For each
set
, find
and
and construct the point
as
where
or
respectively depending on whether a free or non-free Wiener process is required. Note that in our discussion
is indexed from
, and so
is interpolated between the nearest (in time) Wiener points which have already been constructed. The routine
g05xef can be used to initialize the
times array for several predefined bridge construction orders.
4
References
Glasserman P (2004) Monte Carlo Methods in Financial Engineering Springer
5
Arguments
- 1: – Real (Kind=nag_wp)Input
-
On entry: the starting value of the time interval.
- 2: – Real (Kind=nag_wp)Input
-
On entry: the end value of the time interval.
Constraint:
.
- 3: – Real (Kind=nag_wp) arrayInput
-
On entry: the points in the time interval
at which the Wiener process is to be constructed. The order in which points are listed in
times determines the bridge construction order. The routine
g05xef can be used to create predefined bridge construction orders from a set of input times.
Constraints:
- , for ;
- , for and .
- 4: – IntegerInput
-
On entry: the length of
times, denoted by
in
Section 3.1.
Constraint:
.
- 5: – Real (Kind=nag_wp) arrayCommunication Array
-
On exit: communication array, used to store information between calls to
g05xbf. This array
must not be directly modified.
- 6: – IntegerInput/Output
-
On entry:
ifail must be set to
,
. If you are unfamiliar with this argument you should refer to
Section 3.4 in How to Use the NAG Library and its Documentation for details.
For environments where it might be inappropriate to halt program execution when an error is detected, the value
is recommended. If the output of error messages is undesirable, then the value
is recommended. Otherwise, if you are not familiar with this argument, the recommended value is
.
When the value is used it is essential to test the value of ifail on exit.
On exit:
unless the routine detects an error or a warning has been flagged (see
Section 6).
6
Error Indicators and Warnings
If on entry
or
, explanatory error messages are output on the current error message unit (as defined by
x04aaf).
Errors or warnings detected by the routine:
-
On entry, and .
Constraint: .
-
On entry, .
Constraint: .
-
On entry, , and .
Constraint: for all .
-
On entry,
and
both equal
.
Constraint: all elements of
times must be unique.
An unexpected error has been triggered by this routine. Please
contact
NAG.
See
Section 3.9 in How to Use the NAG Library and its Documentation for further information.
Your licence key may have expired or may not have been installed correctly.
See
Section 3.8 in How to Use the NAG Library and its Documentation for further information.
Dynamic memory allocation failed.
See
Section 3.7 in How to Use the NAG Library and its Documentation for further information.
7
Accuracy
Not applicable.
8
Parallelism and Performance
g05xaf is not threaded in any implementation.
The efficient implementation of a Brownian bridge algorithm requires the use of a workspace array called the
working stack. Since previously computed points will be used to interpolate new points, they should be kept close to the hardware processing units so that the data can be accessed quickly. Ideally the whole stack should be held in hardware cache. Different bridge construction orders may require different amounts of working stack. Indeed, a naive bridge algorithm may require a stack of size
or even
, which could be very inefficient when
is large.
g05xaf performs a detailed analysis of the bridge construction order specified by
times. Heuristics are used to find an execution strategy which requires a small working stack, while still constructing the bridge in the order required.
10
Example
This example calls
g05xaf,
g05xbf and
g05xef to generate two sample paths of a three-dimensional free Wiener process. Pseudorandom variates are used to construct the sample paths.
See Section 10 in
g05xbf and
g05xef for additional examples.
10.1
Program Text
Program Text (g05xafe.f90)
10.2
Program Data
None.
10.3
Program Results
Program Results (g05xafe.r)