Compute a bootstrapped 95% confidence interval for the mean of 1-D array X:
seed the global random state with 0, draw N = 1000 resamples (with replacement,
each of size X.size), take the mean of each, and return the 2.5th and 97.5th
percentiles as a length-2 array.
solve(...)