Norm s inv
NORMSINV Function¶
The NORMSINV function in Excel is used to calculate the inverse of the standard normal cumulative distribution for
a given probability. It determines the z-score (standardized value) such that the cumulative standard normal
distribution equals the given probability.
Key Features of NORMSINV:¶
- Inverse of the standard normal distribution: It calculates the value in a standard normal distribution that corresponds to a given cumulative probability.
- Assumes a standard normal distribution with a mean of
0and a standard deviation of1. - Frequently used in statistics for z-score calculations, hypothesis testing, and confidence interval estimation.
Syntax:¶
- probability: Required. The cumulative probability for which you want to find the corresponding z-score. This value
must be between
0and1(exclusive).
How It Works:¶
The NORMSINV function works with the standard normal distribution, which is a normal distribution with the
following properties:
- Mean:
0 - Standard Deviation:
1
The function determines the z-score (value along the standard normal curve) such that the cumulative probability up to
that z-score equals the specified probability.
In mathematical terms, it finds the value z satisfying:
Where Z is a random variable following a standard normal distribution.
Examples:¶
-
Basic Example: To calculate the z-score where 90% of the values lie below it in a standard normal distribution:
Result:1.281552. -
Find the z-score for a 5% left-tail probability: If you need a z-score corresponding to the lowest 5% in the standard normal curve:
Result:-1.644854. -
Application in Testing: When conducting a hypothesis test and you need the z-score for a significance level of 0.025 (two-tailed test):
Result:1.959964. -
Confidence Interval: For a 99% confidence interval, find z-scores for cumulative probabilities 0.005 and 0.995:
Results:-2.575829and2.575829.
Notes:¶
-
Input Validation:
- The
probabilitymust be strictly between0and1. If it's0,1, or outside this range, the function returns#NUM!. - Non-numeric inputs result in
#VALUE!.
- The
-
Relationship to NORMINV:
- Unlike the
NORMINVfunction, theNORMSINVfunction assumes a standard normal distribution (mean0, standard deviation1) and does not require additional parameters.
- Unlike the
-
Output Behavior:
- Small probabilities (close to
0) map to large negative z-scores. - Probabilities near
1map to large positive z-scores.
- Small probabilities (close to
Applications:¶
- Statistical Analysis: Convert probabilities into z-scores for standard normal distributions.
- Hypothesis Testing: Determine critical z-scores for given significance levels.
- Confidence Intervals: Calculate z-scores for confidence levels in sampling or estimation methods.
- Finance: Derive standardized returns or percentiles for risk analysis.
Tip: Use
NORMSINVwhen dealing with probabilities in the standard normal distribution. For normal distributions with a different mean or standard deviation, useNORMINVorNORM.INVin Excel. Note: This is the same as NORM.S.INV