3.3StatisticsStretch
The Inverse Normal Distribution
The inverse normal function works backwards: given a probability, it finds the value of X that produces it. This answers questions like “what mark is the top 10% boundary?”.
What you'll be able to do
- Use the inverse normal function
- Find a value of X from a probability
- Handle “greater than” probabilities
- Apply to percentile questions
1
Working backwards
Given , the inverse normal function returns . Enter the probability (as area to the left), and .
From probability to value.
1InvNorm(0.9, 50, 4).
2.
Answer
Tip — For “top 10%”, the area to the LEFT is 0.9 — convert before using InvNorm.
Formula recap
Inverse normal (left area p).
Convert tails.
Common mistakes to avoid
Entering a right-tail probability directly.
InvNorm uses the area to the LEFT — convert first.
Forgetting to enter μ and σ.
The function needs the distribution’s parameters.
Key takeaways
- Inverse normal: given p, find a with P(X < a) = p.
- Convert right-tail probabilities to left areas first.
- Useful for percentile / boundary questions.
Test yourself
Ready to lock in The Inverse Normal Distribution? Pick a mode and earn XP & Dobloons.