Computes the inverse CDF: Q(u | a, b) = F⁻¹(u).
Details
The quantile function has the closed form: $$Q_{w_1}(u | a, b) = 1 - \exp\left(b \left[1 - (1-u)^{-1/a}\right]\right)$$
The implementation computes (1-u)^(-1/a) in log space for stability when u is close to 1.
Numerical Note: For small values of a (a < 1) and u close to 1, the quantile approaches 1 very rapidly and may round to 1.0 in double precision.
References
Lee, J. (2026). Design-Conditional Prior Elicitation for Dirichlet Process Mixtures. arXiv preprint arXiv:2602.06301.
See also
Other weights_w1:
cdf_w1(),
density_w1(),
mean_w1(),
prob_w1_exceeds(),
summary_w1(),
var_w1()