Poisson Probability Distribution Family

From GM-RKB
Jump to navigation Jump to search

A Poisson Probability Distribution Family, [math]\displaystyle{ \mathrm{Pois}(\lambda) }[/math], is a discrete probability distribution family characterized by the Poisson probability function, [math]\displaystyle{ \mathrm{Pois}(\lambda, k) = \frac{\lambda^k e^{-\lambda}}{k!} }[/math], where [math]\displaystyle{ k }[/math] is the number of occurrences of a random event, and [math]\displaystyle{ \lambda }[/math] is a positive real number representing the expected number of occurrences during a given interval.



References

2015

  • (Wikipedia, 2015) ⇒ http://en.wikipedia.org/wiki/Poisson_distribution Retrieved:2015-6-14.
    • In probability theory and statistics, the Poisson distribution, named after French mathematician Siméon Denis Poisson, is a discrete probability distribution that expresses the probability of a given number of events occurring in a fixed interval of time and/or space if these events occur with a known average rate and independently of the time since the last event. The Poisson distribution can also be used for the number of events in other specified intervals such as distance, area or volume.

      For instance, an individual keeping track of the amount of mail they receive each day may notice that they receive an average number of 4 letters per day. If receiving any particular piece of mail doesn't affect the arrival times of future pieces of mail, i.e., if pieces of mail from a wide range of sources arrive independently of one another, then a reasonable assumption is that the number of pieces of mail received per day obeys a Poisson distribution. Other examples that may follow a Poisson: the number of phone calls received by a call center per hour, the number of decay events per second from a radioactive source, or the number of taxis passing a particular street corner per hour.

2011

  • (Wikipedia, 2011) ⇒ http://en.wikipedia.org/wiki/Poisson_distribution
    • … If the expected number of occurrences in this interval is λ, then the probability that there are exactly [math]\displaystyle{ k }[/math] occurrences (k being a non-negative integer, [math]\displaystyle{ k }[/math] = 0, 1, 2, ...) is equal to [math]\displaystyle{ f(k, \lambda)=\frac{\lambda^k e^{-\lambda}}{k!},\,\! }[/math], where
      • [math]\displaystyle{ e }[/math] is the base of the natural logarithm (e = 2.71828...)
      • [math]\displaystyle{ k }[/math] is the number of occurrences of an event — the probability of which is given by the function
      • k! is the factorial of k
      • λ is a positive real number, equal to the expected number of occurrences during the given interval.
    • For instance, if the events occur on average 4 times per minute, and one is interested in the probability of an event occurring k times in a 10 minute interval, one would use a Poisson distribution as the model with λ = 10×4 = 40.
    • As a function of [math]\displaystyle{ k }[/math], this is the probability mass function. The Poisson distribution can be derived as a limiting case of the binomial distribution.
    • The Poisson distribution can be applied to systems with a large number of possible events, each of which is rare. A classic example is the nuclear decay of atoms.


2009

  • (MathWorks, 2009) ⇒ http://www.mathworks.com/help/toolbox/stats/poisspdf.html
    • Syntax: Y = poisspdf(X,lambda)
    • Description: Y = poisspdf(X,lambda) computes the Poisson pdf at each of the values in X using mean parameters in lambda. X and lambda can be vectors, matrices, or multidimensional arrays that all have the same size. A scalar input is expanded to a constant array with the same dimensions as the other input. The parameters in lambda must all be positive.
    • The Poisson pdf is [math]\displaystyle{ f(x, \lambda)=\frac{\lambda^x}{x!}e^{-\lambda},\,\! I_{(0,1,...)}(x) }[/math] where x can be any nonnegative integer. The density function is zero unless x is an integer.

Examples

    • QUOTE: A computer hard disk manufacturer has observed that flaws occur randomly in the manufacturing process at the average rate of two flaws in a 4 GB hard disk and has found this rate to be acceptable. What is the probability that a disk will be manufactured with no defects? In this problem, λ = 2 and x = 0. p = poisspdf(0,2) p = 0.1353