NAG CL Interface
G05 (Rand)
Random Number Generators

 Contents

Settings help

CL Name Style:


1 Scope of the Chapter

This chapter is concerned with the generation of sequences of independent pseudorandom and quasi-random numbers from various distributions, and models.

2 Background to the Problems

2.1 Pseudorandom Numbers

A sequence of pseudorandom numbers is a sequence of numbers generated in some systematic way such that they are independent and statistically indistinguishable from a truly random sequence. A pseudorandom number generator (PRNG) is a mathematical algorithm that, given an initial state, produces a sequence of pseudorandom numbers. A PRNG has several advantages over a true random number generator in that the generated sequence is repeatable, has known mathematical properties and can be implemented without needing any specialist hardware. Many books on statistics and computer science have good introductions to PRNGs, for example Knuth (1981) or Banks (1998).
PRNGs can be split into base generators, and distributional generators. Within the context of this document a base generator is defined as a PRNG that produces a sequence (or stream) of variates (or values) uniformly distributed over the interval (0,1). Depending on the algorithm being considered, this interval may be open, closed or half-closed. A distribution generator is a function that takes variates generated from a base generator and transforms them into variates from a specified distribution, for example a uniform, Gaussian (Normal) or gamma distribution.
The period (or cycle length) of a base generator is defined as the maximum number of values that can be generated before the sequence starts to repeat. The initial state of the base generator is often called the seed.
There are six base generators currently available in the NAG Library, these are; a basic linear congruential generator (LCG) (referred to as the NAG basic generator) (see Knuth (1981)), two sets of Wichmann–Hill generators (see Maclaren (1989) and Wichmann and Hill (2006)), the Mersenne Twister (see Matsumoto and Nishimura (1998)), the ACORN generator (see Wikramaratna (1989)) and L'Ecuyer generator (see L'Ecuyer and Simard (2002)).

2.1.1 NAG Basic Generator

The NAG basic generator is a linear congruential generator (LCG) and, like all linear congruential generators, has the form:
xi = a1 xi-1  mod  m1 , ui = xi m1 ,  
where the ui, for i=1,2,, form the required sequence.
The NAG basic generator uses a1=1313 and m1=259, which gives a period of approximately 257.
This generator has been part of the NAG Library since Mark 1 and as such has been widely used. It suffers from no known problems, other than those due to the lattice structure inherent in all linear congruential generators, and, even though the period is relatively short compared to many of the newer generators, it is sufficiently large for many practical problems.
The performance of the NAG basic generator has been analysed by the Spectral Test, see Section 3.3.4 of Knuth (1981), yielding the following results in the notation of Knuth (1981).
n νn Upper bound for νn
2 3.44×108 4.08×108
3 4.29×105 5.88×105
4 1.72×104 2.32×104
5 1.92×103 3.33×103
6 593 939
7 198 380
8 108 197
9 67 120
The right-hand column gives an upper bound for the values of νn attainable by any multiplicative congruential generator working modulo 259.
An informal interpretation of the quantities νn is that consecutive n-tuples are statistically uncorrelated to an accuracy of 1/νn. This is a theoretical result; in practice the degree of randomness is usually much greater than the above figures might support. More details are given in Knuth (1981), and in the references cited therein.
Note that the achievable accuracy drops rapidly as the number of dimensions increases. This is a property of all multiplicative congruential generators and is the reason why very long periods are needed even for samples of only a few random numbers.

2.1.2 Wichmann–Hill I Generator

This series of Wichmann–Hill base generators (see Maclaren (1989)) use a combination of four linear congruential generators and has the form:
wi=a1wi-1  mod  m1 xi=a2xi-1  mod  m2 yi=a3yi-1  mod  m3 zi=a4zi-1  mod  m4 ui = ( wi m1 + xi m2 + yi m3 + zi m4 )  mod  1 , (1)
where the ui, for i=1,2,, form the required sequence. The NAG Library implementation includes 273 sets of parameters, aj,mj, for j=1,2,3,4, to choose from.
The constants ai are in the range 112 to 127 and the constants mj are prime numbers in the range 16718909 to 16776971, which are close to 224=16777216. These constants have been chosen so that each of the resulting 273 generators are essentially independent, all calculations can be carried out in 32-bit integer arithmetic and the generators give good results with the spectral test, see Knuth (1981) and Maclaren (1989). The period of each of these generators would be at least 292 if it were not for common factors between (m1-1), (m2-1), (m3-1) and (m4-1). However, each generator should still have a period of at least 280. Further discussion of the properties of these generators is given in Maclaren (1989).

2.1.3 Wichmann–Hill II Generator

This Wichmann–Hill base generator (see Wichmann and Hill (2006)) is of the same form as that described in Section 2.1.2, i.e., a combination of four linear congruential generators. In this case a1=11600, m1=2147483579, a2=47003, m2=2147483543, a3=23000, m3=2147483423, a4=33000, m4=2147483123.
Unlike in the original Wichmann–Hill generator, these values are too large to carry out the calculations detailed in (1) using 32-bit integer arithmetic, however, if
wi = 11600 wi-1  mod  2147483579  
then setting
Wi = 11600 (wi-1 mod 185127) - 10379 (wi-1/185127)  
gives
wi = { Wi ​ if ​ Wi0 2147483579+Wi ​ otherwise  
and Wi can be calculated in 32-bit integer arithmetic. Similar expressions exist for xi, yi and zi. The period of this generator is approximately 2121.
Further details of implementing this algorithm and its properties are given in Wichmann and Hill (2006). This paper also gives some useful guidelines on testing PRNGs.

2.1.4 Mersenne Twister Generator

The Mersenne Twister (see Matsumoto and Nishimura (1998)) is a twisted generalized feedback shift register generator. The algorithm underlying the Mersenne Twister is as follows:
  1. (i)Set some arbitrary initial values x1,x2,,xr, each consisting of w bits.
  2. (ii)Letting
    A= ( 0 Iw-1 aw aw-1a1 ) ,  
    where Iw-1 is the (w-1)×(w-1) identity matrix and each of the ai,i=1 to w take a value of either 0 or 1 (i.e., they can be represented as bits). Define
    x i+r = ( x i+s ( x i (ω:(l+1)) | x i+1 (l:1) )A) ,  
    where x i (ω:(l+1)) | x i+1 (l:1) indicates the concatenation of the most significant (upper) w-l bits of xi and the least significant (lower) l bits of xi+1.
  3. (iii)Perform the following operations sequentially:
    z = xi+r (xi+rt1) z = z ((zt2)​ AND ​m1) z = z ((zt3)​ AND ​m2) z = z (zt4) u i+r = z/ (2w-1) ,  
    where t1, t2, t3 and t4 are integers and m1 and m2 are bit-masks and ‘t’ and ‘t’ represent a t bit shift right and left respectively, is bit-wise exclusively or (xor) operation and ‘AND’ is a bit-wise and operation.
The ui+r, for i=1,2,, form the required sequence. The supplied implementation of the Mersenne Twister uses the following values for the algorithmic constants:
w = 32 a = 0x9908b0 df l = 31 r = 624 s = 397 t1 = 11 t2 = 7 t3 = 15 t4 = 18 m1 = 0x9d2c5680 m2 = 0xefc60000  
where the notation 0xDD indicates the bit pattern of the integer whose hexadecimal representation is DD .
This algorithm has a period length of approximately 219,937-1 and has been shown to be uniformly distributed in 623 dimensions (see Matsumoto and Nishimura (1998)).

2.1.5 ACORN Generator

The ACORN generator is a special case of a multiple recursive generator (see Wikramaratna (1989) and Wikramaratna (2007)). The algorithm underlying ACORN is as follows:
  1. (i)Choose an integer value k1.
  2. (ii)Choose an integer value M, and an integer seed Y0(0), such that 0<Y0(0)<M and Y0(0) and M are relatively prime.
  3. (iii)Choose an arbitrary set of k initial integer values, Y0(1),Y0(2),,Y0(k), such that 0 Y0(m)<M, for all m=1,2,,k.
  4. (iv)Perform the following sequentially:
    Y i (m) = ( Y i (m-1) + Y i-1 (m) )  mod  M  
    for m=1,2,,k.
  5. (v)Set ui=Yi(k)/M.
The ui, for i=1,2,, then form a pseudorandom sequence, with ui [0,1), for all i.
Although you can choose any value for k, M, Y0(0) and the Y0(m), within the constraints mentioned in (i) to (iii) above, it is recommended that k10, M is chosen to be a large power of two with M260 and Y0(0) is chosen to be odd.
The period of the ACORN generator, with the modulus M equal to a power of two, and an odd value for Y0(0) has been shown to be an integer multiple of M (see Wikramaratna (1992)). Therefore, increasing M will give a series with a longer period.

2.1.6 L'Ecuyer MRG32k3a Combined Recursive Generator

The base generator L'Ecuyer MRG32k3a (see L'Ecuyer and Simard (2002)) combines two multiple recursive generators:
xi = ( a11 xi-1 + a12 xi-2 + a13 xi-3 ) mod m1 yi = ( a21 yi-1 + a22 yi-2 + a23 yi-3 ) mod m2 zi = ( xi - yi ) mod m1 ui = (zi+1) / d  
where a11 = 0 , a12 = 1403580 , a13 = −810728 , m1 = 232-209 , a21 = 527612 , a22 = 0 , a23 = −1370589 , m2 = 232-22853 , and ui , i = 1 , 2 , form the required sequence. If d=m1 then ui(0,1] else if d=m1+1 then ui(0,1). Combining the two multiple recursive generators (MRG) results in sequences with better statistical properties in high dimensions and longer periods compared with those generated from a single MRG. The combined generator described above has a period length of approximately 2191.

2.2 Quasi-random Numbers

Low discrepancy (quasi-random) sequences are used in numerical integration, simulation and optimization. Like pseudorandom numbers they are uniformly distributed but they are not statistically independent, rather they are designed to give more even distribution in multidimensional space (uniformity). Therefore, they are often more efficient than pseudorandom numbers in multidimensional Monte Carlo methods.
The quasi-random number generators implemented in this chapter generate a set of points x1,x2,,xN with high uniformity in the S-dimensional unit cube IS=[0,1]S. One measure of the uniformity is the discrepancy which is defined as follows:
Three types of low-discrepancy sequences are supplied in this Library, these are due to Sobol, Faure and Niederreiter. Two sets of Sobol sequences are supplied, the first is based on work of Joe and Kuo (2008) and the second on the work of Bratley and Fox (1988). More information on quasi-random number generation and the Sobol, Faure and Niederreiter sequences in particular can be found in Bratley and Fox (1988) and Fox (1986).
The efficiency of a simulation exercise may often be increased by the use of variance reduction methods (see Morgan (1984)). It is also worth considering whether a simulation is the best approach to solving the problem. For example, low-dimensional integrals are usually more efficiently calculated by functions in Chapter D01 rather than by Monte Carlo integration.

2.3 Scrambled Quasi-random Numbers

Scrambled quasi-random sequences are an extension of standard quasi-random sequences that attempt to eliminate the bias inherent in a quasi-random sequence whilst retaining the low-discrepancy properties. The use of a scrambled sequence allows error estimation of Monte Carlo results by performing a number of iterates and computing the variance of the results.
This implementation of scrambled quasi-random sequences is based on TOMS algorithm 823 and details can be found in the accompanying paper, Hong and Hickernell (2003). Three methods of scrambling are supplied; the first a restricted form of Owen's scrambling (Owen (1995)), the second based on the method of Faure and Tezuka (2000) and the last method combines the first two.
Scrambled versions of both Sobol sequences and the Niederreiter sequence can be obtained.

2.4 Non-uniform Random Numbers

Random numbers from other distributions may be obtained from the uniform random numbers by the use of transformations and rejection techniques, and for discrete distributions, by table based methods.
  1. (a)Transformation Methods
    For a continuous random variable, if the cumulative distribution function (CDF) is F(x) then for a uniform (0,1) random variate u, y=F-1(u) will have CDF F(x). This method is only efficient in a few simple cases such as the exponential distribution with mean μ, in which case F-1(u)=-μlog(u). Other transformations are based on the joint distribution of several random variables. In the bivariate case, if v and w are random variates there may be a function g such that y=g(v,w) has the required distribution; for example, the Student's t-distribution with n degrees of freedom in which v has a Normal distribution, w has a gamma distribution and g(v,w)=vn/w.
  2. (b)Rejection Methods
    Rejection techniques are based on the ability to easily generate random numbers from a distribution (called the envelope) similar to the distribution required. The value from the envelope distribution is then accepted as a random number from the required distribution with a certain probability; otherwise, it is rejected and a new number is generated from the envelope distribution.
  3. (c)Table Search Methods
    For discrete distributions, if the cumulative probabilities, Pi=Prob(xi), are stored in a table then, given u from a uniform (0,1) distribution, the table is searched for i such that Pi-1<uPi. The returned value i will have the required distribution. The table searching can be made faster by means of an index, see Ripley (1987). The effort required to set up the table and its index may be considerable, but the methods are very efficient when many values are needed from the same distribution.

2.5 Copulas

A copula is a function that links the univariate marginal distributions with their multivariate distribution. Sklar's theorem (see Sklar (1973)) states that if f is an m-dimensional distribution function with continuous margins f1 , f2 ,, fm , then f has a unique copula representation, c, such that
f (x1,x2,,xm) = c (f1(x1),f2(x2),,fm(xm))  
The copula, c, is a multivariate uniform distribution whose dependence structure is defined by the dependence structure of the multivariate distribution f, with
c (u1,u2,,um) = f (f1-1(u1),f2-1(u2),,fm-1(um))  
where ui [0,1] . This relationship can be used to simulate variates from distributions defined by the dependence structure of one distribution and each of the marginal distributions given by another. For additional information see Nelsen (1998) or Boye (Unpublished manuscript) and the references therein.

2.6 Brownian Bridge

2.6.1 Brownian Bridge Process

Fix two times t0<T and let W = (Wt) 0tT-t0 be a standard d-dimensional Wiener process on the interval [0,T-t0]. Recall that the terms Wiener process and Brownian motion are often used interchangeably.
A standard d-dimensional Brownian bridge B = (Bt) t0tT on [t0,T] is defined (see Revuz and Yor (1999)) as
Bt = W t-t0 - t-t0 T-t0 WT-t0 .  
The process is continuous, starts at zero at time t0 and ends at zero at time T. It is Gaussian, has zero mean and has a covariance structure given by
𝔼 (BsBtT) = (s-t0) (T-t) T-t0 Id  
for any st in [t0,T] where Id is the d-dimensional identity matrix. The Brownian bridge is often called a non-free or ‘pinned’ Wiener process since it is forced to be 0 at time T, but is otherwise very similar to a standard Wiener process.
We can generalize this construction as follows. Fix points x,wd, let Σ be a d×d covariance matrix and choose any d×d matrix C such that CCT=Σ. The generalized d-dimensional Brownian bridge X = (Xt) t0tT is defined by setting
Xt = (t-t0) w+ (T-t) x T-t0 + CBt = (t-t0) w+ (T-t) x T-t0 + CWt - t0 - (t-t0) T-t0 C W T-t0  
for all t[t0,T]. The process X is continuous, starts at x at time t0 and ends at w at time T. It has mean ((t-t0)w+(T-t)x) / (T-t0) and covariance structure
𝔼 (Xs-𝔼Xs) (Xt-𝔼Xt) T = 𝔼 (CBsBtTCT) = (s-t0) (T-t) T-t0 Σ  
for all st in [t0,T]. This is a non-free Wiener process since it is forced to be equal to w at time T. However if we set w=x+CWT-t0, then X simplifies to
Xt = x+C W t-t0  
for all t[t0,T] which is nothing other than a d-dimensional Wiener process with covariance given by Σ.
Two sample paths for a two-dimensional free Wiener process
Figure 1: Two sample paths for a two-dimensional free Wiener process
Figure 1 shows two sample paths for a two-dimensional free Wiener process X = (Xt1,Xt2) 0t2 . The correlation coefficient between the one-dimensional processes X1 and X2 at any time is ρ=0.80. Note that the red and green paths in each figure are uncorrelated, however it is fairly evident that the two red paths are correlated, and that the two green paths are correlated (when one path increases so does the other, and vice versa).
Two sample paths for a two-dimensional non-free Wiener process. The process starts at 0,0 and ends at 1,-1
Figure 2: Two sample paths for a two-dimensional non-free Wiener process. The process starts at (0,0) and ends at (1,−1)
Figure 2 shows two sample paths for a two-dimensional non-free Wiener process. The process starts at (0,0) and ends at (1,−1) . The correlation coefficient between the one-dimensional processes is again ρ=0.80. The red and green paths in each figure are uncorrelated, while the two red paths tend to increase and decrease together, as do the two green paths. Both Figure 1 and Figure 2 were constructed using g05xbc.

2.6.2 Brownian Bridge Algorithm

The ideas above can also be used to construct sample paths of a free or non-free Wiener process (recall that a non-free Wiener process is the Brownian bridge process outlined above). Fix two times t0<T and let (ti) 1iN be any set of time points satisfying t0<t1<t2<⋯<tN<T. Let ( X ti ) 1iN denote a d-dimensional (free or non-free) Wiener sample path at these times. These values can be generated by the so-called Brownian bridge algorithm (see Glasserman (2004)) which works as follows. From any two known points X ti at time ti and X tk at time tk with ti<tk, a new point X tj can be interpolated at any time tj (ti,tk) by setting
Xtj = Xti (tk-tj) + Xtk (tj-ti) tk-ti + C Z (tk-tj) (tj-ti) (tk-ti) (2)
where Z is a d-dimensional standard Normal random variable and C is any d×d matrix such that CCT is the desired covariance structure for the (free or non-free) Wiener process X. Clearly this algorithm is iterative in nature. All that is needed to complete the specification is to fix the start point Xt0 and end point XT, and to specify how successive interpolation times tj are chosen. For X to behave like a usual (free) Wiener process we should set Xt0 equal to some value xd and then set XT=x+CT-t0Z where Z is any d-dimensional standard Normal random variable. However when it comes to deciding how the successive interpolation times tj should be chosen, there is virtually no restriction. Any method of choosing which tj (ti,tk) to interpolate next is equally valid, provided ti is the nearest known point to the left of tj and tk is the nearest known point to the right of tj. In other words, the interpolation interval (ti,tk) must not contain any other known points, otherwise the covariance structure of the process will be incorrect.
The order in which the successive interpolation times tj are chosen is called the bridge construction order. Since all construction orders will produce a correct process, the question arises whether one construction order should be preferred over another. When the Z values are drawn from a pseudorandom generator, the answer is typically no. However the bridge algorithm is frequently used with quasi-random numbers, and in this case the bridge construction order can be important.

2.6.3 Bridge Construction Order and Quasi-random Sequences

Consider the one-dimensional case of a free Wiener process where d=C=1. The Brownian bridge is frequently combined with low-discrepancy (quasi-random) sequences to perform quasi-Monte Carlo integration. Quasi-random points Z1, Z2, Z3, are generated from the standard Normal distribution, where each quasi-random point Zi = (Z1i,Z2i,,ZDi) consists of D one-dimensional values. The process X starts at Xt0=x which is known. There remain N+1 time points at which the bridge is to be computed, namely ( X ti ) 1iN and XT (recall we are considering a free Wiener process). In this case D is set equal to N+1, so that N+1 dimensional quasi-random points are generated. A single quasi-random point is used to construct one Wiener sample path.
The question is how to use the dimension values of each N+1 dimensional quasi-random point. Often the ‘lower’ dimension values (Z1i,Z2i, etc.) display better uniformity properties than the ‘higher’ dimension values (ZN+1i,ZNi, etc.) so that the ‘lower’ dimension values should be used to construct the most important sections of the sample path. For example, consider a model which is particularly sensitive to the behaviour of the underlying process at time 3. When constructing the sample paths, one would, therefore, ensure that time 3 was one of the interpolation points of the bridge, and that a ‘lower’ dimension value was used in (2) to construct the corresponding bridge point X3. Indeed, one would most likely also ensure that time X3 was one of the first bridge points that was constructed: ‘lower’ dimension values would be used to construct both the left and right bridge points used in (2) to interpolate X3, so that the distribution of X3 benefits as much as possible from the uniformity properties of the quasi-random sequence. For further discussions in this regard we refer to Glasserman (2004). These remarks extend readily to the case of a non-free Wiener process.

2.6.4 Brownian Bridge and Stochastic Differential Equations

The Brownian bridge algorithm, especially when combined with quasi-random variates, is frequently used to obtain numerical solutions to stochastic differential equations (SDEs) driven by (free or non-free) Wiener processes. The quasi-random variates produce a family of Wiener sample paths which cover the space of all Wiener sample paths fairly evenly. This is analogous to the way in which a two-dimensional quasi-random sequence covers the unit square [0,1]2 evenly. When solving SDEs one is typically interested in the increments of the driving Wiener process between two time points, rather than the value of the process at a particular time point. Section 3.3 contains details on which functions can be used to obtain such Wiener increments.

2.7 Random Fields

A random field is a stochastic process, taking values in a Euclidean space, and defined over a parameter space of dimensionality at least one. They are often used to simulate some physical space-dependent parameter, such as the permeability of rock, which cannot be measured at every point in the space. The simulated values can then be used to model other dependent quantities, for example, underground flow of water, often through the use of partial differential equations (PDEs).
A d-dimensional random field Z(x) is a function which is random at every point (xD) for some domain Dd, so Z(x) is a random variable for each x. The random field has a mean function μ(x)=𝔼[Z(x)] and a symmetric positive semidefinite covariance function C(x,y)=𝔼[(Z(x)-μ(x))(Z(y)-μ(y))].
A random field, Z(x), is a Gaussian random field if, for any choice of n and x1,,xnd, the random vector [Z(x1),,Z(xn)]T follows a multivariate Gaussian distribution.
A Gaussian random field Z(x) is stationary if μ(x) is constant for all x and C(x,y)=C(x+a,y+a) for all x,y,ad and hence we can express the covariance function C(x,y) as a function γ of one variable: C(x,y)=γ(x-y). γ is known as a variogram (or more correctly, a semivariogram) and includes the multiplicative factor σ2 representing the variance such that γ(0)=σ2. There are a number of commonly used variograms, including:
Symmetric stable variogram
γ(x) = σ2 exp(- (x) ν) .  
Cauchy variogram
γ(x) = σ2 (1+ (x) 2 ) -ν .  
Differential variogram with compact support
γ(x) = { σ2(1+8x+25(x)2+32(x)3)(1-x)8, x<1, 0, x1.  
Exponential variogram
γ(x)=σ2exp(-x).  
Gaussian variogram
γ(x)=σ2exp(-(x)2).  
Nugget variogram
γ(x)={ σ2, x=0, 0, x0.  
Spherical variogram
γ(x)={ σ2(1-1.5x+0.5(x)3), x<1, 0, x1.  
Bessel variogram
γ(x)=σ22νΓ(ν+1)Jν(x)(x)ν,  
Hole effect variogram
γ(x)=σ2sin(x)x.  
Whittle–Matérn variogram
γ(x)=σ221-ν(x)νKν(x)Γ(ν).  
Continuously parameterised variogram with compact support
γ(x)={ σ221-ν(x)νKν(x)Γ(ν)(1+8x+25(x)2+32(x)3)(1-x)8, x<1, 0, x1.  
Generalized hyperbolic distribution variogram
γ(x)=σ2(δ2+(x)2)λ2δλKλ(κδ)Kλ(κ(δ2+(x)2)12).  
Cosine variogram
γ(x)=σ2cos(x).  
Where x is a scaled norm of x.

2.8 Sampling

The term sampling can have a number of different meanings. Here we are using it to mean randomly selecting one or more observations or records from a particular dataset. Sampling can be performed in one of two ways:
With replacement: where each observation in the original dataset can appear multiple times in the sample. The sample can, therefore, be larger than the original dataset.
Without replacement: where each observation in the original dataset can appear at most once in the sample. The sample is, therefore, no larger than the original dataset.
Each of these sampling methods can be further divided into two categories:
With equal weights: where each observation in the original dataset has the same probability of appearing in the sample as every other observation.
With unequal weights: where the probability of an observation from the original dataset appearing in the sample is proportional to the weight assigned to that observation.
The need to sample from a dataset appears in many areas. For example, it forms the basis for: bootstrapping (sampling with replacement, usually using equal weights); cross-validation (sampling without replacement, using equal weights); importance sampling (sampling with replacement, using unequal weights); randomization of experimental units in designed experiments or reducing the size of large databases (sampling with replacement with either equal or unequal weights).
Rather than drawing a sample from the whole dataset it is sometimes desirable to take samples from different strata or subpopulations within that dataset, referred to as stratified sampling. Within each stratum one or more of the above sampling methods may be adopted.

2.9 Sampling Based Validation

Let (Yo,Xo) denote a dataset of observed values from a known population, where Yo is a matrix of one or more dependent or response variables and Xo a matrix of one more more independent variables or covariates. Let M denote a model described in terms β a vector of one or more unknown parameters. The purpose of model M is to describe the behaviour of the dependent variables in terms of the independent variables. In order to do this the parameter estimates must first be estimated and then how well the models fits, that is, how well it describes the dependent variables, assessed.
An example of such a model would be a simple linear regression as described in Section 2.3 in the G02 Chapter Introduction. The simple linear regression has two parameters, an intercept, β0 and slope, β1 and the observed dataset consists of the dependent variable y and the single independent variable x. The parameter estimates are usually obtained via least squares.
Given a set of parameter estimates and a matrix of independent variables one way of assessing how well a model fits is to use the model to predict the values of the dependent variable and compare these predictions to the observed values. Ideally two datasets will be involved, a training dataset, (Yt,Xt), used to estimate the model parameters and a validation dataset, (Yv,Xv), used for the prediction and comparison. These two datasets should be drawn independently from the same population. However, in practice, this is often not possible either because a second dataset can not be drawn from the same population or because the value of the dependent variables are unknowable (for example the dataset in question is a time series and the event of interest has not yet happened). Rather than use the same dataset as both the training and validation dataset, which leads to overfitting and hence an over estimation of how well the model fits, a sampling based validation method can be used.
In K-fold cross-validation the original dataset is randomly divided into K equally sized folds (or groups). The model fitting and assessment process is performed using a validation dataset consisting of those observations in the kth group and a training dataset consisting of all observations not in the kth group. This is repeated K times, with k=1,2,,K, and the results combined. Repeated random sub-sampling validation is similar, but rather than systematically dividing the original dataset into a training and validation dataset, whether an observation resides in a given dataset is chosen randomly each time the model fitting and assessment process is repeated.

2.10 Other Random Structures

In addition to random numbers from various distributions, random compound structures can be generated. These include random time series and random matrices.

2.11 Multiple Streams of Pseudorandom Numbers

It is often advantageous to be able to generate variates from multiple, independent, streams (or sequences) of random variates. For example when running a simulation in parallel on several processors. There are four ways of generating multiple streams using the functions available in this chapter:
  1. (i)using different initial values (seeds);
  2. (ii)using different generators;
  3. (iii)skip ahead (also called block-splitting);
  4. (iv)leap-frogging.

2.11.1 Multiple Streams via Different Initial Values (Seeds)

A different sequence of variates can be generated from the same base generator by initializing the generator using a different set of seeds. The statistical properties of the base generators are only guaranteed within, not between sequences. For example, two sequences generated from two different starting points may overlap if these initial values are not far enough apart. The potential for overlapping sequences is reduced if the period of the generator being used is large. In general, of the four methods for creating multiple streams described here, this is the least satisfactory.
The one exception to this is the Wichmann–Hill II generator. The Wichmann and Hill (2006) paper describes a method of generating blocks of variates, with lengths up to 290, by fixing the first three seed values of the generator (w0, x0 and y0), and setting z0 to a different value for each stream required. This is similar to the skip-ahead method described in Section 2.11.3, in that the full sequence of the Wichmann–Hill II generator is split into a number of different blocks, in this case with a fixed length of 290. But without the computationally intensive initialization usually required for the skip-ahead method.

2.11.2 Multiple Streams via Different Generators

Independent sequences of variates can be generated using a different base generator for each sequence. For example, sequence 1 can be generated using the NAG basic generator, sequence 2 using Mersenne Twister, sequence 3 the ACORN generator and sequence 4 using L'Ecuyer generator. The Wichmann–Hill I generator implemented in this chapter is, in fact, a series of 273 independent generators. The particular sub-generator to use is selected using the subid variable. Therefore, in total, 278 independent streams can be generated with each using a different generator (273 Wichmann–Hill I generators, and 5 additional base generators).

2.11.3 Multiple Streams via Skip-ahead

Independent sequences of variates can be generated from a single base generator through the use of block-splitting, or skipping-ahead. This method consists of splitting the sequence into k non-overlapping blocks, each of length n, where n is no smaller than the maximum number of variates required from any of the sequences. For example,
x1 , x2 , , xn block 1 , xn+1 , xn+2 , , x2n block 2 , x2n+1 , x2n+2 , , x3n block 3 , etc.  
where x1,x2, is the sequence produced by the generator of interest. Each of the k blocks provide an independent sequence.
The skip-ahead algorithm, therefore, requires the sequence to be advanced a large number of places, as to generate values from say, block b, you must skip over the (b-1)n values in the first b-1 blocks. Owing to their form this can be done efficiently for linear congruential generators and multiple congruential generators. A skip-ahead algorithm is also provided for the Mersenne Twister generator.
Although skip-ahead requires some additional computation at the initialization stage (to ‘fast forward’ the sequence) no additional computation is required at the generation stage.
This method of producing multiple streams can also be used for the Sobol and Niederreiter quasi-random number generator via the argument iskip in g05ylc.

2.11.4 Multiple Streams via Leap-frog

Independent sequences of variates can also be generated from a single base generator through the use of leap-frogging. This method involves splitting the sequence from a single generator into k disjoint subsequences. For example:
Subsequence 1: x1 , xk+1 , x 2k+1 , Subsequence 2: x2 , xk+2 , x 2k+2 , Subsequence ​k: xk , x2k , x3k , ,  
where x1,x2, is the sequence produced by the generator of interest. Each of the k subsequences then provides an independent stream of variates.
The leap-frog algorithm, therefore, requires the generation of every kth variate from the base generator. Owing to their form this can be done efficiently for linear congruential generators and multiple congruential generators. A leap-frog algorithm is provided for the NAG Basic generator, both the Wichmann–Hill I and Wichmann–Hill II generators and L'Ecuyer generator.
It is known that, dependent on the number of streams required, leap-frogging can lead to sequences with poor statistical properties, especially when applied to linear congruential generators. In addition, leap-frogging can increase the time required to generate each variate. Therefore, leap-frogging should be avoided unless absolutely necessary.

2.11.5 Skip-ahead and Leap-frog for a Linear Congruential Generator (LCG): An Example

As an illustrative example, a brief description of the algebra behind the implementation of the leap-frog and skip-ahead algorithms for a linear congruential generator is given. A linear congruential generator has the form xi+1=a1 xi  mod  m1. The recursive nature of a linear congruential generator means that
xi+v = a1 x i+v-1  mod  m1 = a1 (a1 x i+v-2  mod m1)  mod  m1 = a 1 2 x i+v-2  mod  m1 = a1v xi  mod  m1 .  
The sequence can, therefore, be quickly advanced v places by multiplying the current state (xi) by a1v  mod  m1, hence skipping the sequence ahead. Leap-frogging can be implemented by using a1k, where k is the number of streams required, in place of a1 in the standard linear congruential generator recursive formula, in order to advance k places, rather than one, at each iteration.
In a linear congruential generator the multiplier a1 is constructed so that the generator has good statistical properties in, for example, the spectral test. When using leap-frogging to construct multiple streams this multiplier is replaced with a1k, and there is no guarantee that this new multiplier will have suitable properties especially as the value of k depends on the number of streams required and so is likely to change depending on the application. This problem can be emphasized by the lattice structure of linear congruential generators. Similiarly, the value of a1 is often chosen such that the computation a1 xi  mod  m1 can be performed efficiently. When a1 is replaced by a1k, this is often no longer the case.
Note that, due to rounding, when using a distributional generator, a sequence generated using leap-frogging and a sequence constructed by taking every k value from a set of variates generated without leap-frogging may differ slightly. These differences should only affect the least significant digit.

2.11.6 Skip-ahead and Leap-frog for the Mersenne Twister: An Example

Skipping ahead with the Mersenne Twister generator is based on the definition of a k×k (where k=19937) transition matrix, A, over the finite field 𝔽2 (with elements 0 and 1). Multiplying A by the current state xn, represented as a vector of bits, produces the next state vector xn+1:
x n + 1 = A x n .  
Thus, skipping ahead v places in a sequence is equivalent to multiplying by Av:
x n + v = A v x n .  
Since calculating Av by a standard square and multiply algorithm is O(k3log(v)) and requires over 47MB of memory (see Haramoto et al. (2008)), an indirect calculation is performed which relies on a property of the characteristic polynomial p(z) of A, namely that p(A)=0. We then define
g(z) = z v  mod  p(z) = a k - 1 z k - 1 + + a 1 z + a 0 ,  
and observe that
g(z) = z v + q(z) p (z)  
for a polynomial q(z). Since p(A)=0, we have that g (A) = A v and
A v x n = ( a k - 1 A k - 1 ++ a 1 A+ a 0 I) x n .  
This polynomial evaluation can be performed using Horner's method:
A v x n = A (A(A(A a k - 1 x n + a k - 2 x n )+ a k - 3 x n )++ a 1 x n ) + a 0 x n ,  
which reduces the problem to advancing the generator k-1 places from state xn and adding (where addition is as defined over 𝔽2) the intermediate states for which ai is nonzero.
There are, therefore, two stages to skipping the Mersenne Twister ahead v places:
  1. (i)Calculate the coefficients of the polynomial g (z) = z v  mod  p (z) ;
  2. (ii)advance the sequence k-1 places from the starting state and add the intermediate states that correspond to nonzero coefficients in the polynomial calculated in the first step.
The resulting state is that for position v in the sequence.
The cost of calculating the polynomial is O( k 2 log(v)) and the cost of applying it to state is constant. Skip ahead functionality is typically used in order to generate n independent pseudorandom number streams (e.g., for separate threads of computation). There are two options for generating the n states:
  1. (i)On the master thread calculate the polynomial for a skip ahead distance of v and apply this polynomial to state n times, after each iteration j saving the current state for later usage by thread j.
  2. (ii)Have each thread j independently and in parallel with other threads calculate the polynomial for a distance of (j+1)v and apply to the original state.
Since lim v log(v) = log n v , then for large v the cost of generating the polynomial for a skip ahead distance of nv (i.e., the calculation performed by thread n-1 in option (ii) above) is approximately the same as generating that for a distance of v (i.e., the calculation performed by thread 0). However, only one application to state need be made per thread, and if n is sufficiently large the cost of applying the polynomial to state becomes the dominant cost in option (i), in which case it is desirable to use option (ii). Tests have shown that as a guideline it becomes worthwhile to switch from option (i) to option (ii) for approximately n>30.
Leap frog calculations with the Mersenne Twister are performed by computing the sequence fully up to the required size and discarding the redundant numbers for a given stream.

3 Recommendations on Choice and Use of Available Functions

3.1 Pseudorandom Numbers

Before generating any pseudorandom variates the base generator being used must be initialized. Once initialized, a distributional generator can be called to obtain the variates required. No interfaces have been supplied for direct access to the base generators. If a sequence of random variates from a uniform distribution on the open interval (0,1), is required, then the uniform distribution function (g05sac) should be called.

3.1.1 Initialization

Before generating any variates the base generator must be initialized. Two utility functions are provided for this, g05kfc and g05kgc, both of which allow any of the base generators to be chosen.
g05kfc selects and initializes a base generator to a repeatable (when executed serially) state: two calls of g05kfc with the same argument-values will result in the same subsequent sequences of random numbers (when both generated serially).
g05kgc selects and initializes a base generator to a non-repeatable state in such a way that different calls of g05kgc, either in the same run or different runs of the program, will almost certainly result in different subsequent sequences of random numbers.
No utilities for saving, retrieving or copying the current state of a generator have been provided. All of the information on the current state of a generator (or stream, if multiple streams are being used) is stored in the integer array state and as such this array can be treated as any other integer array, allowing for easy copying, restoring, etc.

3.1.2 Repeated initialization

As mentioned in Section 2.11.1, it is important to note that the statistical properties of pseudorandom numbers are only guaranteed within sequences and not between sequences produced by the same generator. Repeated initialization will thus render the numbers obtained less rather than more independent. In a simple case there should be only one call to g05kfc or g05kgc and this call should be before any call to an actual generation function.

3.1.3 Choice of Base Generator

If a single sequence is required then it is recommended that the Mersenne Twister is used as the base generator (genid=Nag_MersenneTwister). This generator is fast, has an extremely long period and has been shown to perform well on various test suites, see Matsumoto and Nishimura (1998), L'Ecuyer and Simard (2002) and Wichmann and Hill (2006) for example.
When choosing a base generator, the period of the chosen generator should be borne in mind. A good rule of thumb is never to use more numbers than the square root of the period in any one experiment as the statistical properties are impaired. For closely related reasons, breaking numbers down into their bit patterns and using individual bits may also cause trouble.

3.1.4 Choice of Method for Generating Multiple Streams

If the Wichmann–Hill II base generator is being used, and a period of 290 is sufficient, then the method described in Section 2.11.1 can be used. If a different generator is used, or a longer period length is required then generating multiple streams by altering the initial values should be avoided.
Using a different generator works well if less than 277 streams are required.
Of the remaining two methods, both skip-ahead and leap-frogging use the sequence from a single generator, both guarantee that the different sequences will not overlap and both can be scaled to an arbitrary number of streams. Leap-frogging requires no a-priori knowledge about the number of variates being generated, whereas skip-ahead requires you to know (approximately) the maximum number of variates required from each stream. Skip-ahead requires no a-priori information on the number of streams required. In contrast leap-frogging requires you to know the maximum number of streams required, prior to generating the first value. Of these two, if possible, skip-ahead should be used in preference to leap-frogging. Both methods required additional computation compared with generating a single sequence, but for skip-ahead this computation occurs only at initialization. For leap-frogging additional computation is required both at initialization and during the generation of the variates. In addition, as mentioned in Section 2.11.4, using leap-frogging can, in some instances, change the statistical properties of the sequences being generated.
Leap-frogging is performed by calling g05khc after the initialization function (g05kfc or g05kgc). For skip-ahead, either g05kjc or g05kkc can be called. Of these, g05kkc restricts the amount being skipped to a power of 2, but allows for a large ‘skip’ to be performed.

3.1.5 Copulas

After calling one of the copula functions the inverse cumulative distribution function (CDF) can be applied to convert the uniform marginal distribution into the required form. Scalar and vector functions for evaluating the CDF, for a range of distributions, are supplied in Chapter G01. It should be noted that these functions are often described as computing the ‘deviates’ of the distribution.
When using the inverse CDF functions from Chapter G01 it should be noted that some are limited in the number of significant figures they return. This may affect the statistical properties of the resulting sequence of variates. Section 7 of the individual function documentation will give a discussion of the accuracy of the particular algorithm being used and any available alternatives.

3.2 Quasi-random Numbers

Prior to generating any quasi-random variates the generator being used must be initialized via g05ylc or g05ync. Of these, g05ylc can be used to initialize a standard Sobol, Faure or Niederreiter sequence and g05ync can be used to initialize a scrambled Sobol or Niederreiter sequence.
Owing to the random nature of the scrambling, before calling the initialization function g05ync one of the pseudorandom initialization functions, g05kfc or g05kgc, must be called.
Once a quasi-random generator has been initialized, using either g05ylc or g05ync, one of three generation functions can be called to generate uniformly distributed sequences (g05ymc), Normally distributed sequences (g05yjc) or sequences with a log-normal distribution (g05ykc). For example, for a repeatable sequence of scrambled quasi-random variates from the Normal distribution, g05kfc must be called first (to initialize a pseudorandom generator), followed by g05ync (to initialize a scrambled quasi-random generator) and then g05yjc can be called to generate the sequence from the required distribution.
A further three generation functions can be called to generate sequences for a subset of dimensions: (g05ypc) for uniformly distributed sequences, (g05yqc) for Normally distributed sequences, or (g05yrc) for sequences with a log-normal distribution.
See the last paragraph of Section 3.1.5 on how sequences from other distributions can be obtained using the inverse CDF.

3.3 Brownian Bridge

g05xbc may be used to generate sample paths from a (free or non-free) Wiener process using the Brownian bridge algorithm. Prior to calling g05xbc, the generator must be initialized by a call to g05xac. g05xac requires you to specify a bridge construction order. The function g05xec can be used to convert a set of input times into one of several common bridge construction orders, which can then be used in the initialization call to g05xac.
g05xdc may be used to generate the scaled increments of the sample paths of a (free or non-free) Wiener process. Prior to calling g05xdc, the generator must be initialized by a call to g05xcc. Note that g05xdc generates these scaled increments directly; it is not necessary to call g05xbc before calling g05xdc. As before, g05xec can be used to convert a set of input times into a bridge construction order which can be passed to g05xcc.

3.4 Random Fields

Functions for simulating from either a one-dimensional or a two-dimensional stationary Gaussian random field are provided. These functions use the circulant embedding method of Dietrich and Newsam (1997) to efficiently generate from the required field. In both cases a setup function is called, which defines the domain and variogram to use, followed by the generation function. A number of preset variograms are supplied or a user-defined function can be used.
In addition to generating a random field, it is possible to use the circulant embedding method to generate realizations of fractional Brownian motion, this functionality is provided in g05ztc.
Before calling g05zpc, g05zrc or g05ztc one of the initialization functions, g05kfc or g05kgc must be called.
The four sampling methods described in Section 2.8 can be performed using the following functions:
In addition to these functions for directly sampling from a dataset two utility functions that perform an in-place permutation to give datasets suitable for use in validation are provided. g05pvc generates training and validation datasets suitable for K-fold cross-validation and g05pwc generates training and validation datasets suitable for random sub-sampling validation. To perform stratified sampling the dataset should first be ordered by stratum using a sorting function from Chapter M01 and then one of the above sampling functions can be applied to each stratum.

4 Functionality Index

Brownian bridge,  
circulant embedding generator,  
generate fractional Brownian motion   g05ztc
 increments generator,  
generate Wiener increments   g05xdc
initialize generator   g05xcc
path generator,  
create bridge construction order   g05xec
generate a free or non-free (pinned) Wiener process for a given set of time steps   g05xbc
initialize generator   g05xac
Generating samples, matrices and tables,  
permutation of real matrix, vector, vector triplet  
K-fold cross-validation   g05pvc
random sub-sampling validation   g05pwc
random correlation matrix   g05pyc
random orthogonal matrix   g05pxc
random permutation of an integer vector   g05ncc
random sample from an integer vector,  
unequal weights, without replacement   g05nec
unweighted, without replacement   g05ndc
random table   g05pzc
resample from an integer vector,  
unequal weights   g05nfc
Generation of time series,  
asymmetric GARCH Type II   g05pec
asymmetric GJR GARCH   g05pfc
EGARCH   g05pgc
exponential smoothing   g05pmc
type I AGARCH   g05pdc
univariate ARMA   g05phc
vector ARMA   g05pjc
Pseudorandom numbers,  
array of variates from multivariate distributions,  
Dirichlet distribution   g05sec
multinomial distribution   g05tgc
Normal distribution   g05rzc
Student's t distribution   g05ryc
copulas,  
Clayton/Cook–Johnson copula (bivariate)   g05rec
Clayton/Cook–Johnson copula (multivariate)   g05rhc
Frank copula (bivariate)   g05rfc
Frank copula (multivariate)   g05rjc
Gaussian copula   g05rdc
Gumbel–Hougaard copula   g05rkc
Plackett copula   g05rgc
Student's t copula   g05rcc
initialize generator,  
multiple streams,  
leap-frog   g05khc
skip-ahead   g05kjc
skip-ahead (power of 2)   g05kkc
nonrepeatable sequence   g05kgc
repeatable sequence   g05kfc
vector of variates from discrete univariate distributions,  
binomial distribution   g05tac
geometric distribution   g05tcc
hypergeometric distribution   g05tec
logarithmic distribution   g05tfc
logical value Nag_TRUE or Nag_FALSE   g05tbc
negative binomial distribution   g05thc
Poisson distribution   g05tjc
uniform distribution   g05tlc
user-supplied distribution   g05tdc
variate array from discrete distributions with array of parameters,  
Poisson distribution with varying mean   g05tkc
vectors of variates from continuous univariate distributions,  
beta distribution   g05sbc
Cauchy distribution   g05scc
exponential mix distribution   g05sgc
F-distribution   g05shc
gamma distribution   g05sjc
logistic distribution   g05slc
log-normal distribution   g05smc
negative exponential distribution   g05sfc
Normal distribution   g05skc
real number from the continuous uniform distribution   g05sac
Student's t-distribution   g05snc
triangular distribution   g05spc
uniform distribution   g05sqc
von Mises distribution   g05src
Weibull distribution   g05ssc
χ2 square distribution   g05sdc
Quasi-random numbers,  
array of variates from univariate distributions,  
log-normal distribution   g05ykc
Normal distribution   g05yjc
uniform distribution   g05ymc
generate,  
subset of dimensions,  
log-normal distribution   g05yrc
Normal distribution   g05yqc
uniform distribution   g05ypc
initialize generator,  
scrambled Sobol or Niederreiter   g05ync
Sobol, Niederreiter or Faure   g05ylc
Random fields,  
one-dimensional,  
generation   g05zpc
initialize generator,  
preset variogram   g05znc
user-defined variogram   g05zmc
two-dimensional,  
generation   g05zsc
initialize generator,  
preset variogram   g05zrc
user-defined variogram   g05zqc

5 Auxiliary Functions Associated with Library Function Arguments

None.

6 Withdrawn or Deprecated Functions

The following lists all those functions that have been withdrawn since Mark 24 of the Library or are in the Library, but deprecated.
Function Status Replacement Function(s)
g05cac Withdrawn at Mark 24 g05sac
g05cbc Withdrawn at Mark 24 g05kfc
g05ccc Withdrawn at Mark 24 g05kgc
g05cfc Withdrawn at Mark 24 No longer required.
g05cgc Withdrawn at Mark 24 No longer required.
g05dac Withdrawn at Mark 24 g05sqc
g05dbc Withdrawn at Mark 24 g05sfc
g05ddc Withdrawn at Mark 24 g05skc
g05dyc Withdrawn at Mark 24 g05tlc
g05eac Withdrawn at Mark 24 g05rzc
g05ecc Withdrawn at Mark 24 g05tjc
g05edc Withdrawn at Mark 24 g05tac
g05ehc Withdrawn at Mark 24 g05ncc
g05ejc Withdrawn at Mark 24 g05ndc
g05exc Withdrawn at Mark 24 g05tdc
g05eyc Withdrawn at Mark 24 g05tdc
g05ezc Withdrawn at Mark 24 g05rzc
g05fec Withdrawn at Mark 24 g05sbc
g05ffc Withdrawn at Mark 24 g05sjc
g05hac Withdrawn at Mark 24 g05phc
g05hkc Withdrawn at Mark 24 g05pdc
g05hlc Withdrawn at Mark 24 g05pec
g05hmc Withdrawn at Mark 24 g05pfc
g05kac Withdrawn at Mark 24 g05sac
g05kbc Withdrawn at Mark 24 g05kfc
g05kcc Withdrawn at Mark 24 g05kgc
g05kec Withdrawn at Mark 24 g05tbc
g05lac Withdrawn at Mark 24 g05skc
g05lbc Withdrawn at Mark 24 g05snc
g05lcc Withdrawn at Mark 24 g05sdc
g05ldc Withdrawn at Mark 24 g05shc
g05lec Withdrawn at Mark 24 g05sbc
g05lfc Withdrawn at Mark 24 g05sjc
g05lgc Withdrawn at Mark 24 g05sqc
g05lhc Withdrawn at Mark 24 g05spc
g05ljc Withdrawn at Mark 24 g05sfc
g05lkc Withdrawn at Mark 24 g05smc
g05llc Withdrawn at Mark 24 g05scc
g05lmc Withdrawn at Mark 24 g05ssc
g05lnc Withdrawn at Mark 24 g05slc
g05lpc Withdrawn at Mark 24 g05src
g05lqc Withdrawn at Mark 24 g05sgc
g05lxc Withdrawn at Mark 24 g05ryc
g05lyc Withdrawn at Mark 24 g05rzc
g05lzc Withdrawn at Mark 24 g05rzc
g05mac Withdrawn at Mark 24 g05tlc
g05mbc Withdrawn at Mark 24 g05tcc
g05mcc Withdrawn at Mark 24 g05thc
g05mdc Withdrawn at Mark 24 g05tfc
g05mec Withdrawn at Mark 24 g05tkc
g05mjc Withdrawn at Mark 24 g05tac
g05mkc Withdrawn at Mark 24 g05tjc
g05mlc Withdrawn at Mark 24 g05tec
g05mrc Withdrawn at Mark 24 g05tgc
g05mzc Withdrawn at Mark 24 g05tdc
g05nac Withdrawn at Mark 24 g05ncc
g05nbc Withdrawn at Mark 24 g05ndc
g05pac Withdrawn at Mark 24 g05phc
g05pcc Withdrawn at Mark 24 g05pjc
g05qac Withdrawn at Mark 24 g05pxc
g05qbc Withdrawn at Mark 24 g05pyc
g05qdc Withdrawn at Mark 24 g05pzc
g05rac Withdrawn at Mark 24 g05rdc
g05rbc Withdrawn at Mark 24 g05rcc
g05yac Withdrawn at Mark 24 g05ylc and g05ymc
g05ybc Withdrawn at Mark 24 g05ylc and g05yjc

7 References

Banks J (1998) Handbook on Simulation Wiley
Boye E (Unpublished manuscript) Copulas for finance: a reading guide and some applications Financial Econometrics Research Centre, City University Business School, London
Bratley P and Fox B L (1988) Algorithm 659: implementing Sobol's quasirandom sequence generator ACM Trans. Math. Software 14(1) 88–100
Dietrich C R and Newsam G N (1997) Fast and exact simulation of stationary Gaussian processes through circulant embedding of the covariance matrix SIAM J. Sci. Comput. 18 1088–1107
Faure H and Tezuka S (2000) Another random scrambling of digital (t,s)-sequences Monte Carlo and Quasi-Monte Carlo Methods Springer-Verlag, Berlin, Germany (eds K T Fang, F J Hickernell and H Niederreiter)
Fox B L (1986) Algorithm 647: implementation and relative efficiency of quasirandom sequence generators ACM Trans. Math. Software 12(4) 362–376
Glasserman P (2004) Monte Carlo Methods in Financial Engineering Springer
Haramoto H, Matsumoto M, Nishimura T, Panneton F and L'Ecuyer P (2008) Efficient jump ahead for F2-linear random number generators INFORMS J. on Computing 20(3) 385–390
Hong H S and Hickernell F J (2003) Algorithm 823: implementing scrambled digital sequences ACM Trans. Math. Software 29:2 95–109
Joe S and Kuo F Y (2008) Constructing Sobol sequences with better two-dimensional projections SIAM J. Sci. Comput. 30 2635–2654
Knuth D E (1981) The Art of Computer Programming (Volume 2) (2nd Edition) Addison–Wesley
L'Ecuyer P and Simard R (2002) TestU01: a software library in ANSI C for empirical testing of random number generators Departement d'Informatique et de Recherche Operationnelle, Universite de Montreal https://www.iro.umontreal.ca/~lecuyer
Maclaren N M (1989) The generation of multiple independent sequences of pseudorandom numbers Appl. Statist. 38 351–359
Matsumoto M and Nishimura T (1998) Mersenne twister: a 623-dimensionally equidistributed uniform pseudorandom number generator ACM Transactions on Modelling and Computer Simulations
Morgan B J T (1984) Elements of Simulation Chapman and Hall
Nelsen R B (1998) An Introduction to Copulas. Lecture Notes in Statistics 139 Springer
Owen A B (1995) Randomly permuted (t,m,s)-nets and (t,s)-sequences Monte Carlo and Quasi-Monte Carlo Methods in Scientific Computing, Lecture Notes in Statistics 106 Springer-Verlag, New York, NY 299–317 (eds H Niederreiter and P J-S Shiue)
Revuz D and Yor M (1999) Continuous Martingales and Brownian Motion Springer
Ripley B D (1987) Stochastic Simulation Wiley
Sklar A (1973) Random variables: joint distribution functions and copulas Kybernetika 9 499–460
Wichmann B A and Hill I D (2006) Generating good pseudo-random numbers Computational Statistics and Data Analysis 51 1614–1622
Wikramaratna R S (1989) ACORN - a new method for generating sequences of uniformly distributed pseudo-random numbers Journal of Computational Physics 83 16–31
Wikramaratna R S (1992) Theoretical background for the ACORN random number generator Report AEA-APS-0244 AEA Technology, Winfrith, Dorest, UK
Wikramaratna R S (2007) The additive congruential random number generator a special case of a multiple recursive generator Journal of Computational and Applied Mathematics