Implementation of a Hybrid Randomized quasi-Monte Carlo Sequence using Stratified Sampling
Farrell J. Aultman
fja0568@gmail.com
A method for generating Hybrid Randomized quasi-Monte Carlo sequences using Stratified Sampling is introduced. An implementation of the method in the Python programming language is applied to three types of problems: one-dimensional integration, multi-dimensional integration, and the pricing of European call options. Sequences generated using this implementation have been named BFS sequences in this paper. Results from problems using BFS sequences are compared with pseudorandom sequences and random-shift Halton sequences. Favorable numerical results using BFS sequences are obtained, especially for the one-dimensional case.
Monte Carlo (MC) and Quasi-Monte Carlo (QMC) methods make use of pseudorandom and low discrepancy sequences, respectively. In some use cases, such as integration, Monte Carlo methods may not perform well because the pseudorandom data that is utilized isn’t sufficiently uniform and exhibits clustering and holes. In such cases, QMC methods perform better because low discrepancy sequences are more uniform. When more than one QMC simulation is performed, a new independent low discrepancy sequence can be generated by permuting the original sequence. This step is necessary because QMC sequences are not random. This technique is called Randomized quasi-Monte Carlo (RQMC). Hybrid sequences are created by combining methods from MC and QMC sequence generation.
In this paper, we will discuss a method to generate hybrid RQMC sequences using Stratified Sampling. Stratified sampling means dividing the sample space into subsets (or strata) and constraining the number of samples drawn from each subset. Glasserman [1] provides a method of stratifying the unit interval (0, 1) and extends this method to the unit hypercube. We will use his method to construct hyperrectangles within the unit hypercube and extend it slightly. We will also address the primary issues associated with stratified sampling, namely
Implementation of a Hybrid Randomized quasi-Monte Carlo Sequence using Stratified Sampling