Normal Distribution f(x) Manual Calculation

bs0d

Well-known Member
Joined
Dec 29, 2006
Messages
622
I'm trying to match the f(x) for a random variable based on what the function NORMDIST() is computing.

NORMDIST(x, mean, std dev, FALSE) for a Probability Density Function.


Assume mean = 229,352, & standard deviation = 204,444.

above function for variable: 2,836 returns: 0.0000011

When I try the manual calculation for the same number, i get: 0.0004776.

Heres the formula I'm using as provided in the help section for the NORMDIST function:

=(1/(SQRT(2*PI()*std_dev))*EXP(-((x-mean)^2/(2*std_dev^2))))

I must be interpreting the equation wrong?
 

Excel Facts

Who is Mr Spreadsheet?
Author John Walkenbach was Mr Spreadsheet until his retirement in June 2019.
=1 / (SQRT(2*PI()) * sd) * EXP(-( (x - mean)^2 / (2*sd^2)) )

or

=1 / SQRT(2*PI()) / sd / EXP( (x-mean)^2 / (2*sd^2) )
 
Upvote 0

Forum statistics

Threads
1,224,583
Messages
6,179,682
Members
452,937
Latest member
Bhg1984

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top