Suppose we are to estimate a expectation problem $E(f(X))$, where $X$ is a random variable with known distribution, by simulation and Large Law of numbers estimator. Antithetic method is a way to reduce variance of estimator in such cases.
If $X$ is a 1D random variable with cdf $F$, antithetic method is applied as follows:
get a sample U of the uniform distribution over $[0,1]$, then $X_1=F^{-1}(U)$ has F as cdf, and $Y_1=F^{-1}(1-F(X_1)) $also has F as cdf and $X_1$ and $Y_1$ have negative correlation. Then E(f(X)) is estimated by $\frac{\sum_{i=1}^N f(X_i)+f(Y_i)}{2N}$.
Here are my questions:
if $X_1$ and $Y_1$ have negative correlation, then to reduce the variance of estimator, is it correct that $f(X_1)$ and $f(Y_1)$ must also have negative correlation? What is the condition on $f$ for this to be true?
If $X$ is a multivariate random variable, since its cdf $F$ has no quantile inverse F^{-1}, is it still possible to apply antithetic method in general cases? If consider the special case where the components of $X$ are independent, is it possible to apply antithetic method? How if yes?
I notice that antithetic also increases the samples without actually doing more sampling of any distribution. I remember increasing sample size will also reduce variance of LLN estimators. If the variance of the estimator can be reduced by antithetic method, how much is contributed by increase of sample size and how much by introducing negative correlation between samples? If use iid samples with the same size as those samples after doubled by antithetic, which one will have less variance?
Thanks and regards!