Gauss
GAUSS Function¶
The GAUSS function in Excel is used to compute the probability that a random variable from a standard normal
distribution (mean = 0, standard deviation = 1) will fall between 0 and a specified value. It is commonly employed in
probability theory and statistical applications.
Key Features of GAUSS:¶
- Calculates the probability under the normal distribution curve from 0 up to the specified value.
- Assumes a standard normal distribution with:
- Mean (
μ) = 0. - Standard Deviation (
σ) = 1.
- Mean (
- Useful in statistical and probability-related computations involving normalized scores or Z-scores.
- Provides a cumulative probability computation directly.
Syntax:¶
- z: The specified value for which you want the cumulative distribution probability from 0.
How It Works:¶
The GAUSS function computes the cumulative probability under the standard normal distribution curve between 0 and the
input z value. It is mathematically expressed as:
Here, N(z) represents the cumulative distribution function (CDF) for a standard normal distribution. Subtracting 0.5
adjusts the result to exclude the lower half of the distribution (below 0), as the standard normal distribution is
symmetric about 0.
For negative z values, the result represents the negative cumulative probability from 0 to z.
Examples:¶
- Basic Calculation:
Compute the probability for a z value of 1.5:
0.4332 (meaning 43.32% of the data lies between 0 and 1.5 under a standard normal distribution).
- Negative Z-Score:
Compute the probability for a z value of -2:
-0.4772 (negative indicates cumulative probability is below 0).
- Large Z-Score:
Compute the probability for a z value of 3:
0.4986 (almost all the data from 0 to z is included).
Notes:¶
-
Parameter Constraints:
- Input
zcan be any real number. - Large positive or negative values for
zapproach cumulative probabilities of0.5or-0.5, respectively, due to the distribution's nature.
- Input
-
The
GAUSSfunction complements other statistical functions, such asNORM.DISTorNORM.S.DIST, but simplifies probability calculations for the symmetric standard normal distribution.
Applications:¶
- Risk Analysis: Helps estimate probabilities within specific ranges based on Z-scores.
- Statistical Inference: Provides quick cumulative probabilities for hypothesis testing or confidence intervals.
- Data Analysis: Facilitates evaluation of standard normal data or results from Z-transformations.
Tip: Use
GAUSSfor simple standard normal probability computations and combine it with other distribution functions for more complex scenarios.