1. What is the purpose of computer experiments and how do they relate to computer models?
Computer experiments permit the study of complex systems that are simulated using computer models. A computer model uses algorithms and sets of mathematical equations to provide the best representation possible of the link between the input factors and responses of the system. However, many of these models are computationally expensive since they involve solving complicated partial differential equations numerically. Therefore, one of the main goals of computer experiments is to build an efficient, computationally-cheap surrogate model that approximates the computer model well. To achieve this, they demand cost-effective experimental designs that gather high-quality data from the computer model, using a limited number of runs.
read more
2. What is the L q-distance in LHDs?
The L q-distance between any two distinct rows in an LHD X is the minimum L q-distance between any two distinct rows. It is calculated by taking the element-wise q-th root of the distance matrix A q, where 1 n is an n x 1 vector of ones. The L q-distance of an LHD X, denoted as d q (X), is the minimum L q-distance between any two distinct rows of the design. An LHD that maximizes d q (X) is called a maximin L q-distance LHD. This distance is used to compare and prefer LHDs based on the maximin distance criterion. The larger the L q-distance, the more distinct the rows are in the LHD. The L q-distance can be calculated for different values of q, with q = 1 being the L 1-distance. Fully correlated vectors induce the same absolute element-wise distance vectors, as shown in Lemma 1. This distance matrix and the L q-distance are key components in generating LHDs and comparing their distinctiveness.
read more
3. What is a good lattice point set?
A good lattice point set (GLP) is an N x n set of elements x i,j = ih j (mod N) for i = 1, . . ., N and j = 1, . . ., n. It consists of positive integers smaller than and coprime to N, arranged in a specific order. Each column of the GLP set is a permutation of the elements in Z N. GLP sets are also known as LHDs (Linearly Decreasing Hash Functions). They can be constructed for any n <= ph(N), where ph(N) is the number of positive integers smaller than and coprime to N. GLP sets have applications in various fields, including cryptography and data structures. Zhou and Xu (2015) demonstrated that linear permutations of the columns of a GLP set can produce better LHDs in terms of the L1-distance. Additionally, the Williams' transformation can further improve the performance of GLP sets.
read more
4. What is the relationship between columns in LHDs Z b when N is even?
When N is even, Lemma 2 states that the relationship between columns in LHDs Z b is given by z(j)b = (N-1)^N - z(n+1-j)b for b = 0, 1, ..., N/2 - 1. This relationship allows for the evaluation of only the first half of the linear permutations, as the other LHDs have similar distance matrices. This is a significant finding as it reduces the number of LHDs that need to be evaluated, making the process more efficient and cost-effective.
read more