The documentation clearly states that for the symmetrical normal distribution RarerProbability[distribution,x] gives the two-sided p-value for x.
Using direct integration on an example:
nd = NormalDistribution[0, 1]; RarerProbability[nd, 1] == 2 Integrate[PDF[nd][x], {x, 1, Infinity}] (*True*) What is the functionality of RarerProbability when applied to asymmetrical distributions like Weibull or SkewNormal distributions? And are there useful applications?
