Difference between revisions of "Poisson distribution"
m (adding doc status category stub page) |
|||
Line 1: | Line 1: | ||
[[category:Distribution Functions]] | [[category:Distribution Functions]] | ||
[[Category:Doc Status D]] <!-- For Lumina use, do not change --> | [[Category:Doc Status D]] <!-- For Lumina use, do not change --> | ||
+ | |||
+ | = Poisson(mean) = | ||
+ | |||
+ | The ''Poisson'' distribution represents the number of independent discrete random events that occur in a fixed period of time. The parameter ''mean'' specifies the expected number of events in one time unit. | ||
+ | |||
+ | You might use the ''Poisson'' distribution to model the number of sales per month of a low-volume product, or the number of airplane crashes per year. Poisson is occassionally applied to non-time intervals, such as the number of cancerous cells in a given (small) volume of tissue. | ||
+ | |||
+ | The ''poisson'' distribution assumes that each event occurs randomly and independently of all other events. When the number of events follows a '''Poisson(mean:m)''' distribution, then the time between individual events follows an ''[[Exponential]](rate:1/m)'' distribution. | ||
+ | |||
+ | = Library = | ||
+ | |||
+ | Distributions | ||
+ | |||
+ | = Details = | ||
+ | |||
+ | The [[Variance|variance]] of a '''Poisson(mean:m)''' distribution is ''m'', the standard deviation is ''sqrt(m)'', the [[Skewness|skewness]] is ''1/sqrt(m)'' and the [[Kurtosis|kurtosis]] is ''1/m''. The probability density is given by | ||
+ | |||
+ | P(k|m) = [[Exp]](-m) * mean^k / [[Factorial]](k) | ||
+ | |||
+ | The cumulative probability for integer k>0 is: | ||
+ | |||
+ | F(k|m) = [[GammaFn]]( k+1,mean ) / [[Factorial]](k) | ||
+ | |||
+ | = See Also = | ||
+ | |||
+ | * [[Exponential]] |
Revision as of 20:53, 13 February 2008
Poisson(mean)
The Poisson distribution represents the number of independent discrete random events that occur in a fixed period of time. The parameter mean specifies the expected number of events in one time unit.
You might use the Poisson distribution to model the number of sales per month of a low-volume product, or the number of airplane crashes per year. Poisson is occassionally applied to non-time intervals, such as the number of cancerous cells in a given (small) volume of tissue.
The poisson distribution assumes that each event occurs randomly and independently of all other events. When the number of events follows a Poisson(mean:m) distribution, then the time between individual events follows an Exponential(rate:1/m) distribution.
Library
Distributions
Details
The variance of a Poisson(mean:m) distribution is m, the standard deviation is sqrt(m), the skewness is 1/sqrt(m) and the kurtosis is 1/m. The probability density is given by
P(k|m) = Exp(-m) * mean^k / Factorial(k)
The cumulative probability for integer k>0 is:
F(k|m) = GammaFn( k+1,mean ) / Factorial(k)
Enable comment auto-refresher