Latin Hypercube Simulation

Let us note \cD_f = \{\ux \in \Rset^{n} \space | \space  g(\ux,\underline{d}) \leq 0\}. The goal is to estimate the following probability:

\begin{aligned}
    P_f  &=& \int_{\cD_f} f_{\uX}(\ux)d\ux\\
    &=& \int_{\Rset^{n}} \mathbf{1}_{\{g(\ux,\underline{d}) \leq 0 \}}f_{\uX}(\ux)d\ux\\
    &=& \Prob {\{\space g(\uX,\underline{d}) \leq 0 \}}
  \end{aligned}

LHS or Latin Hypercube Sampling is a sampling method enabling to better cover the domain of variations of the input variables, thanks to a stratified sampling strategy. This method is applicable in the case of independent input variables. The sampling procedure is based on dividing the range of each variable into several intervals of equal probability. The sampling is undertaken as follows:
  • Step 1  The range of each input variable is stratified into isoprobabilistic cells,

  • Step 2  A cell is uniformly chosen among all the available cells,

  • Step 3  The random number is obtained by inverting the Cumulative Density Function locally in the chosen cell,

  • Step 4  All the cells having a common strate with the previous cell are put apart from the list of available cells.

The estimator of the probability of failure with LHS is given by:

\hat{P}_{f,LHS}^N = \frac{1}{N}\sum_{i=1}^N \mathbf{1}_{\{g(\uX^i,\underline{d}) \leq 0 \}}

where the sample of \{ \uX^i,i=1 \hdots N \} is obtained as described previously.

One can show that:

\Var{\hat{P}_{f,LHS}^N} \leq \frac{N}{N-1} . \Var{    \hat{P}_{f,MC}^N}

where:

  • \Var {\hat{P}_{f,LHS}^N} is the variance of the estimator of the probability of exceeding a threshold computed by the LHS technique,

  • \Var {\hat{P}_{f,MC}^N} is the variance of the estimator of the probability of exceeding a threshold computed by a crude Monte Carlo method.

With the notations

\begin{aligned}
    \mu_N &=& \frac{1}{N}\sum_{i=1}^N \mathbf{1}_{\{g(\underline{x}_i),\underline{d}) \leq 0 \}}\\
    \sigma_N^2 &=& \frac{1}{N}\sum_{i=1}^N (\mathbf{1}_{\{g(\underline{x}^i),\underline{d}) \leq 0 \}} - \mu_N)^2
  \end{aligned}

the asymptotic confidence interval of order 1-\alpha associated to the estimator P_{f,LHS}^N is

[ \mu_N - \frac{q_{1-\alpha / 2} . \sigma_N}{\sqrt{N}} \space ; \space \mu_N + \frac{q_{1-\alpha / 2} . \sigma_N}{\sqrt{N}} ]

where q_{1-\alpha /2} is the 1-\alpha / 2 quantile from the reduced standard gaussian law \cN(0,1).

It gives an unbiased estimate for P_f (reminding that all input variables must be independent).

This method is derived from a more general method called ’Stratified Sampling’.