Norm s inv
NORM.S.INV Function¶
The NORM.S.INV function in Excel is used to return the inverse of the standard normal cumulative distribution.
It finds the z-score corresponding to a given probability value under the standard normal distribution (mean of 0 and
standard deviation of 1).
Key Features of NORM.S.INV:¶
- Returns the z-score (number of standard deviations from the mean) for a given probability.
- Useful in statistics, hypothesis testing, and probability analysis.
Syntax:¶
- probability: Required. A probability associated with the standard normal distribution. This value must be between
0and1(exclusive).
How It Works:¶
The NORM.S.INV function is essentially the inverse of the cumulative probability function for the standard normal
distribution.
For example:
- A probability of
0.5corresponds to a z-score of0(since the distribution is symmetric about the mean). - A smaller probability (e.g.,
0.025) will correspond to a negative z-score (e.g.,-1.96), indicating a value below the mean. - A larger probability (e.g.,
0.975) will correspond to a positive z-score (e.g.,1.96), indicating a value above the mean.
Examples:¶
-
Find the Z-Score for 95% Probability: To calculate the z-score for a probability of
Result:0.95:1.644854(approximately). -
Central Probability: For a probability of
Result:0.5(the center of the standard normal distribution):0(mean of the standard normal distribution). -
Lower Tail: Calculate the z-score for the
Result:2.5%lower tail probability:-1.959964(approximately). -
Large Tail Probability: For a cumulative probability of
Result:0.999:3.090232(approximately).
Notes:¶
-
Input Validation:
- If
probabilityis not between0and1(inclusive of boundaries), the function returns#NUM!. - If
probabilityis non-numeric, the function returns#VALUE!.
- If
-
Symmetry Property:
- The function reflects the symmetry of the standard normal distribution. For example:
Applications:¶
-
Confidence Interval Calculations: Use
NORM.S.INVto find critical z-values for constructing confidence intervals in hypothesis testing. -
Risk Assessment: Determine thresholds or cut-offs in predictive models based on probabilities.
-
Excel Charts with Normal Distribution: Use the z-scores returned by
NORM.S.INVto mark specific points or percentiles on a visual representation of the standard normal distribution.
Tip: Combine
NORM.S.INVwith other distribution functions (e.g.,NORM.DISTorNORM.INV) to work with non-standard normal distributions. Note: This is the same as NORMSINV