+ Reply to Thread
Results 1 to 4 of 4

NORMDIST function in excel giving values greater than 1

  1. #1
    Registered User
    Join Date
    08-11-2008
    Location
    us
    Posts
    1

    NORMDIST function in excel giving values greater than 1

    Hi,

    I'm using the normdist function with 'false' argument to generate a probability density function: NORMDIST(0.04,0,0.3,FALSE) is giving a value greater than 1 which can't be correct since this function is supposed to return a probability. Has anyone seen this before?

    thanks

  2. #2
    Registered User
    Join Date
    03-08-2007
    Posts
    93

    Normdist

    When using the "false" option, divide the result by 100.

  3. #3
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2003, 2010
    Posts
    40,678
    When using the "false" option, divide the result by 100.
    That's not even wrong.

    NORMDIST(x, mean, dev, FALSE) does not return a probability; it returns the density function, which is the slope of the cumulative distribution function. For a continuous variable, the probability of any particular value is zero, because there are an infinite number of values.

    If you want to know the probability that a continuous random variable with a normal distribution falls in the range of a to b, use

    = NORMDIST(b, mean, dev, TRUE) - NORMDIST(a, mean, dev, TRUE)

    The peak value of the density function occurs at the mean (i.e., =NORMDIST(mean, mean, dev, FALSE) ), and the value is

    =1 / (SQRT(2 * PI()) * dev)

    The peak value will exceed 1 when the deviation is less than 1 / sqrt(2pi) ~ 0.399.
    Last edited by shg; 08-13-2008 at 04:51 PM.

  4. #4
    Registered User
    Join Date
    09-06-2010
    Location
    Phoenix, Arizona
    MS-Off Ver
    Excel 2003
    Posts
    2

    Re: NORMDIST function in excel giving values greater than 1

    You tha bomb shg! Thanks!

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1