Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2
Default Problems with NORMDIST

Should I be concerned that NORMDIST(4.92, 4.94, 0.08, FALSE) returns
4.83? This should be the noncumulative (density, mass) function
associated with the normal distribution. Surely it cannot exceed 1
because the entire area under the curve cannot exceed 1, by definition
of probability distribution. The related NORMSDIST problem:
NORMSDIST(-0.25, 0, 1, FALSE) returns 0.3866, which seems reasonable.

Can someone please reconcile the answers, or explain why Excel allows
probability distributions to have values greater than one?

Thank you.

  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 27,285
Default Problems with NORMDIST

4.92 is 25 standard deviations to the left of the mean. Until xl2003, the
Normal distribution function was known to give bad results deep into the
tails. Anything greater than -3 standard deviations is very small. For 25
standard deviations, you probably would be safe in assuming a probability of
0. Also, note that the probability of any single value in a continuous
distribution is considered to be zero.

http://support.microsoft.com/kb/827371/en-us
Description of the NORMDIST function in Excel 2003

--
Regards,
Tom Ogilvy

"Kevin" wrote in message
oups.com...
Should I be concerned that NORMDIST(4.92, 4.94, 0.08, FALSE) returns
4.83? This should be the noncumulative (density, mass) function
associated with the normal distribution. Surely it cannot exceed 1
because the entire area under the curve cannot exceed 1, by definition
of probability distribution. The related NORMSDIST problem:
NORMSDIST(-0.25, 0, 1, FALSE) returns 0.3866, which seems reasonable.

Can someone please reconcile the answers, or explain why Excel allows
probability distributions to have values greater than one?

Thank you.



  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2
Default Problems with NORMDIST

This time it is not a problem with Excel :-) Kevin uses a mean of 4.94
and a standard deviation of 0.08, so 4.92 is about two standard
deviations from the mean.

You need to change the fourth parameter from FALSE to TRUE, then you
get

NORMDIST(4.92; 4.94; 0.08; TRUE)

= 0.401293674

which is the correct result. With FALSE, you get the value of the
density function, which can be well bigger than 1. With TRUE, you get
the desired probability (=(cumulative density) value.

HTH
Matthias Kläy
--
www.kcc.ch

"Tom Ogilvy" wrote:

4.92 is 25 standard deviations to the left of the mean. Until xl2003, the
Normal distribution function was known to give bad results deep into the
tails. Anything greater than -3 standard deviations is very small. For 25
standard deviations, you probably would be safe in assuming a probability of
0. Also, note that the probability of any single value in a continuous
distribution is considered to be zero.

http://support.microsoft.com/kb/827371/en-us
Description of the NORMDIST function in Excel 2003



"Kevin" wrote
Should I be concerned that NORMDIST(4.92, 4.94, 0.08, FALSE) returns
4.83? This should be the noncumulative (density, mass) function
associated with the normal distribution. Surely it cannot exceed 1
because the entire area under the curve cannot exceed 1, by definition
of probability distribution. The related NORMSDIST problem:
NORMSDIST(-0.25, 0, 1, FALSE) returns 0.3866, which seems reasonable.

Can someone please reconcile the answers, or explain why Excel allows
probability distributions to have values greater than one?


----== Posted via Newsfeeds.Com - Unlimited-Unrestricted-Secure Usenet News==----
http://www.newsfeeds.com The #1 Newsgroup Service in the World! 120,000+ Newsgroups
----= East and West-Coast Server Farms - Total Privacy via Encryption =----
  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 837
Default Problems with NORMDIST

Your assumption that the density cannot exceed 1 is incorrect. To see this
easily, note that almost all of the cumulative area is contained within
mean+/-3*SD, which in your case is a region that is only 0.48 wide; therefore
for that area to approach 1, the height must exceed 1 in at least part of
that region.

Alternately, you can calculate it directly for yourself from the definition
of the normal pdf
=exp(-(((4.92-4.94)/0.08)^2)/2)/sqrt(2*pi())/0.08
Note that the extra parentheses immediately following the minus sign in the
exp() function are required, because Excel follows a non-standard convention
where unary negation is higher in priority than exponentiation.

Jerry

"Kevin" wrote:

Should I be concerned that NORMDIST(4.92, 4.94, 0.08, FALSE) returns
4.83? This should be the noncumulative (density, mass) function
associated with the normal distribution. Surely it cannot exceed 1
because the entire area under the curve cannot exceed 1, by definition
of probability distribution. The related NORMSDIST problem:
NORMSDIST(-0.25, 0, 1, FALSE) returns 0.3866, which seems reasonable.

Can someone please reconcile the answers, or explain why Excel allows
probability distributions to have values greater than one?

Thank you.


  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2
Default Problems with NORMDIST

Sorry, I have to correct myself: The value of 4.92 is only 1/4th of a
standard deviation of 0.08 from the mean of 4.94, because

(4.92 - 4.94)/0.08 = -0.02/0.08 = 0.25

Then the result of 0.4 for the probability value is very plausible.

Greetings
Matthias Kläy
--
www.kcc.ch

Matthias Klaey wrote:

This time it is not a problem with Excel :-) Kevin uses a mean of 4.94
and a standard deviation of 0.08, so 4.92 is about two standard
deviations from the mean.


----== Posted via Newsfeeds.Com - Unlimited-Unrestricted-Secure Usenet News==----
http://www.newsfeeds.com The #1 Newsgroup Service in the World! 120,000+ Newsgroups
----= East and West-Coast Server Farms - Total Privacy via Encryption =----


  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 27,285
Default Problems with NORMDIST

Bad math on my part, read something other than what you actually posted (red
faced) - sorry about that.

--
Regards,
Tom Ogilvy

"Tom Ogilvy" wrote in message
...
4.92 is 25 standard deviations to the left of the mean. Until xl2003, the
Normal distribution function was known to give bad results deep into the
tails. Anything greater than -3 standard deviations is very small. For

25
standard deviations, you probably would be safe in assuming a probability

of
0. Also, note that the probability of any single value in a continuous
distribution is considered to be zero.

http://support.microsoft.com/kb/827371/en-us
Description of the NORMDIST function in Excel 2003

--
Regards,
Tom Ogilvy

"Kevin" wrote in message
oups.com...
Should I be concerned that NORMDIST(4.92, 4.94, 0.08, FALSE) returns
4.83? This should be the noncumulative (density, mass) function
associated with the normal distribution. Surely it cannot exceed 1
because the entire area under the curve cannot exceed 1, by definition
of probability distribution. The related NORMSDIST problem:
NORMSDIST(-0.25, 0, 1, FALSE) returns 0.3866, which seems reasonable.

Can someone please reconcile the answers, or explain why Excel allows
probability distributions to have values greater than one?

Thank you.





  #7   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2
Default Problems with NORMDIST

Jerry,

You are right, and that answers my question. I guess the density has
to exceed 1 in order for the area under the curve to sum to 1. Thanks
so much!

Kevin


Jerry W. Lewis wrote:
Your assumption that the density cannot exceed 1 is incorrect. To see this
easily, note that almost all of the cumulative area is contained within
mean+/-3*SD, which in your case is a region that is only 0.48 wide; therefore
for that area to approach 1, the height must exceed 1 in at least part of
that region.

Alternately, you can calculate it directly for yourself from the definition
of the normal pdf
=exp(-(((4.92-4.94)/0.08)^2)/2)/sqrt(2*pi())/0.08
Note that the extra parentheses immediately following the minus sign in the
exp() function are required, because Excel follows a non-standard convention
where unary negation is higher in priority than exponentiation.

Jerry

"Kevin" wrote:

Should I be concerned that NORMDIST(4.92, 4.94, 0.08, FALSE) returns
4.83? This should be the noncumulative (density, mass) function
associated with the normal distribution. Surely it cannot exceed 1
because the entire area under the curve cannot exceed 1, by definition
of probability distribution. The related NORMSDIST problem:
NORMSDIST(-0.25, 0, 1, FALSE) returns 0.3866, which seems reasonable.

Can someone please reconcile the answers, or explain why Excel allows
probability distributions to have values greater than one?

Thank you.



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Normdist Problem Rodby Excel Worksheet Functions 2 October 21st 09 10:13 PM
Gaussian Curve using Normdist? [email protected] Excel Worksheet Functions 3 May 7th 07 05:39 PM
NORMDIST Tschuß Excel Worksheet Functions 2 November 27th 06 01:14 PM
NORMDIST function [email protected] Excel Worksheet Functions 2 March 30th 06 02:07 AM
NORMDIST(x,mean, stdev,false) vs f(x) Betty Excel Worksheet Functions 3 September 22nd 05 01:07 PM


All times are GMT +1. The time now is 12:17 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"