Sobol sequences (also called LPτ sequences or (t, s) sequences in base 2) are an example of quasi-random low-discrepancy sequences. They were first introduced by I.M.Sobol'[note 1] in 1967.[1]
These sequences use a base of two to form successively finer uniform partitions of the unit interval, and then reorder the coordinates in each dimension.
Contents |
Let Is = [0,1]s be the s-dimensional unit hypercube and f a real integrable function over Is. The original motivation of Sobol' was to construct a sequence xn in Is so that
and the convergence be as fast as possible.
It is more or less clear that for the sum to converge towards the integral, the points xn should fill Is minimizing the holes. Another good property would be that the projections of xn on a lower-dimensional face of Is leave very few holes as well. Hence the homogeneous filling of Is does not qualify ; because in lower-dimensions many points will be at the same place, therefore useless for the integral estimation.
These good distributions are called (t,m,s)-nets and (t,s)-sequences in base b. To introduce them, define first an elementary s-interval in base b a subset of Is of the form
Given 2 integers , a (t,m,s)-net in base b is a sequence xn of bm points of Is such that for all elementary interval P in base b of hypervolume λ(P) = bt-m.
Given a non-negative integer t, a (t,s)-sequence in base b is an infinite sequence of points xn such that for all integers , the sequence is a (t,m,s)-net in base b.
In his article, Sobol' spoke of Πτ-meshes and LPτ sequences, which are (t,m,s)-nets and (t,s)-sequences in base 2 respectively. The terms (t,m,s)-nets and (t,s)-sequences in base b (also called Niederreiter sequences) where coined in 1988 by H. Niederreiter.[2] The term Sobol sequences was introduced in late English-speaking papers in comparison with Halton, Faure and other low-discrepancy sequences.
The algorithm for generating Sobol sequences is clearly explained in Bratley and Fox, Algorithm 659[3]
To generate the j-th component of the points in a Sobol' sequence, we need to choose a primitive polynomial of some degree sj over the field GF(2)
where the coefficients a1,j, a2,j, ..., asj−1,j are either 0 or 1. The error bounds for Sobol' sequences given in [1] indicate that we should use primitive polynomials of as low a degree as possible.
A sequence of positive integers {m1,j, m2,j, ...} are defined by the recurrence relation
where is the bit-by-bit exclusive-or operator. The initial values m1,j, m2,j, ..., msj,j can be chosen freely provided that each mk,j, 1 ≤ k ≤ sj, is odd and less than 2k.
The so-called direction numbers {v1,j, v2,j, . . .}[note 2] are defined by
Then xi,j , the j-th component of the i-th point in a Sobol' sequence, is given by
where ik is the k-th binary digit of i = (. . . i3i2i1)2. Here the notation (·)2 denotes the binary representation of numbers.
A more efficient Gray code implementation was proposed by Antonov and Saleev [4]
As for the generation of Sobol' numbers, they are clearly aided by the use of Gray code instead of n for constructing the n-th point draw.
Suppose we have already generated all the Sobol' sequence draws up to n − 1, and kept in memory the values xn−1,j for all the required dimensions. Since the Gray code G(n) differs from that of the preceding one G(n − 1) by just a single, say the k-th, bit (which is a rightmost bit of n − 1), all that needs to be done is a single XOR operation for each dimension in order to propagate all of the xn−1 to xn, i.e.
Sobol’ introduced additional uniformity conditions known as property A and A’.[5]
Definition. A low-discrepancy sequence is said to satisfy Property A if for any binary segment (not an arbitrary subset) of the d-dimensional sequence of length 2d there is exactly one draw in each 2d hypercubes that result from subdividing the unit hypercube along each of its length extensions into half.
Definition. A low-discrepancy sequence is said to satisfy Property A’ if for any binary segment (not an arbitrary subset) of the d-dimensional sequence of length 4d there is exactly one draw in each 4d hypercubes that result from subdividing the unit hypercube along each of its length extensions into four equal parts.
There are mathematical conditions that guarantee properties A and A'.
Theorem. The d-dimensional Sobol sequence possesses Property A iff
where Vd is the d × d binary matrix defined by
with vk,j,m denoting the m-th digit after the binary point of the direction number vk,j = (0.vk,j,1vk,j,2 . . .)2.
Theorem. The d-dimensional Sobol sequence possesses Property A' iff
where Ud is the 2d × 2d binary matrix defined by
with vk,j,m denoting the m-th digit after the binary point of the direction number vk,j = (0.vk,j,1vk,j,2 . . .)2.
Tests for properties A and A’ are independent. Thus it is possible to construct the Sobol’ sequence which satisfies both properties A and A’ or only one of them.
To construct a Sobol' sequence a set of direction numbers vi,j needs to be selected. There is some freedom in the selection of initial direction numbers.[note 3] Therefore, it is possible to receive different realisations of the Sobol' sequence for selected dimensions. A bad selection of initial numbers can considerably reduce the efficiency of Sobol sequences when used for computation.
Arguably the easiest choice for the initialisation numbers is just to have the l-th leftmost bit set, and all other bits to be zero, i.e. mk,j = 1 for all k and j. This initialisation is usually called unit initialisation. However, such a sequence fails the test for Property A and A’ even for low dimensions and hence this initialisation is bad.
Good initialisation numbers for different numbers of dimensions are provided by several authors.
Sobol' provides initialisation numbers for dimensions up to 51.[6] The same set of initialisation numbers is used by Bratley and Fox.[3]
Peter Jäckel provides initialisation numbers up to dimension 32 in his famous book "Monte Carlo methods in finance".[7]
Other implementations are available as C, Fortran 77, or Fortran 90 routines in the popular Numerical Recipes collection of software (for example, see Press et al.[8]).
Initialisation numbers for high dimensions are available on Joe and Kuo.[9]
There are also some commercial Sobol' sequence generators available, for example see [10] or.[11]