Enter any psychometric score to see its equivalents across all standard transformations.
All score types are first converted to a z-score (the universal intermediate), then from the z-score to every other type using standard linear transformations:
Converting a z-score to a percentile requires the cumulative distribution function (CDF) of the standard normal distribution—i.e., the probability that a normally distributed value falls at or below z.
We use the Abramowitz & Stegun polynomial approximation (formula 26.2.17), which achieves an absolute error less than 7.5 × 10−8. It computes:
k = 1 / (1 + 0.2316419 × |z|)
Φ(z) ≈ 1 − φ(z) × k(b₁ + k(b₂ + k(b₃ + k(b₄ + k·b₅))))
where φ(z) is the standard normal PDF and b₁…b₅ are fixed coefficients. For negative z, symmetry gives Φ(z) = 1 − Φ(|z|).
Reference: Abramowitz & Stegun, Handbook of Mathematical Functions, p. 932.
The reverse—converting a percentile to a z-score—requires the inverse (quantile function) of the normal CDF. We use a rational approximation with two regions:
Reference: Beasley & Springer, rational approximation for the inverse normal CDF (pp. 16).