Difference between revisions of "Manuals/calci/NORMDIST"

From ZCubes Wiki
Jump to navigation Jump to search
Line 11: Line 11:
 
*In this formula, Suppose  <math>\mu</math> = 0 and <math>\sigma</math>= 1, then the distribution is called the standard normal distribution or the unit normal distribution.
 
*In this formula, Suppose  <math>\mu</math> = 0 and <math>\sigma</math>= 1, then the distribution is called the standard normal distribution or the unit normal distribution.
 
   This function will return the result as error when  any one of the argument is non-numeric and <math>sd<=0</math>.
 
   This function will return the result as error when  any one of the argument is non-numeric and <math>sd<=0</math>.
*when <math>cu</math> is TRUE , this formula is the integral from <math>-\infity</math> to <math>x</math> and <math>cu</math> is FALSE , we can use the same formula.
+
*when <math>cu</math> is TRUE , this formula is the integral from -<math>\infite</math> to <math>x</math> and <math>cu</math> is FALSE , we can use the same formula.
  
 
==Examples==
 
==Examples==

Revision as of 23:58, 6 January 2014

NORMDIST(x,m,sd,cu)


  • is the value, is the mean, is the standard deviation and is the logical value like TRUE or FALSE.

Description

  • This function gives the normal distribution for the particular mean and standard deviation.
  • Normal distribution is the function that represents the distribution of many random variables as a symmetrical bell-shaped graph.
  • This distribution is the continuous probability distribution.It is also called Gaussian distribution.
  • In is the value of the function, is the arithmetic mean of the distribution, is the standard deviation of the distribution and is the logical value that indicating the form of the function.
  • Suppose cu is TRUE, this function gives the cumulative distribution, and it is FALSE, this function gives the probability mass function.
  • The equation for the normal distribution is: where is the mean of the distribution, is the standard deviation of the distribution.
  • In this formula, Suppose = 0 and = 1, then the distribution is called the standard normal distribution or the unit normal distribution.
 This function will return the result as error when  any one of the argument is non-numeric and .
  • when is TRUE , this formula is the integral from -Failed to parse (unknown function "\infite"): {\displaystyle \infite} to and is FALSE , we can use the same formula.

Examples

  1. NORMDIST(37,29,2.1,FALSE)=0.000134075
  2. NORMDIST(37,29,2.1,TRUE)=0.99993041384
  3. NORMDIST(10.75,17.4,3.2,TRUE)=0.01884908749
  4. NORMDIST(10.75,17.4,3.2,FALSE)=0.014387563

See Also

References