指数分布とポアソン分布の関係
📂確率分布論指数分布とポアソン分布の関係
説明
指数分布とポアソン分布の直感的な定義について考えてみよう。指数分布は、あるイベントが発生するまでにかかる時間に関心があり、ポアソン分布は単位時間内にあるイベントが何回発生するかに関心がある。イベントが発生する時間と、イベントが発生する回数について、二つの分布は一方を固定して他方に関心を持つ。例えば、exp(λ)とPoi(λ)のパラメータをλ=1とすることを考えよう。指数分布を見た場合、イベントが発生するまでの単位時間であり、ポアソン分布を見た場合、単位時間あたりにイベントが一回発生すると見ることができる。
ここで、ポアソン分布のλが大きくなれば、単位時間あたりのイベントの発生回数が大きくなり、その分イベントが一回発生する時間は短くなるはずだ。この意味で、指数分布の平均λ1とポアソン分布の平均λは、パラメータを表す記号λを共有するのが妥当だと考えられる。多くの教科書で、二つの分布のパラメータをλと表記するが、このように考えると受け入れやすくなるだろう。
数学的には、ガンマ分布と指数分布が関連しており、ガンマ分布がポアソン分布と関連しているので、指数分布とポアソン分布も何らかの関係があることを容易に推測できるだろう。
Proof
According to the relationship between the gamma distribution and the exponential distribution,
Xi∼exp(λ)⟺Xi∼Γ(1,λ1)
If you add all k random variables following the gamma distribution,
Yk=i=1∑kXi∼Γ(n,λ1)
Since the exponential distribution is memoryless, Yi and Yj are independent, and Yk simply represents the time at which the kth event occurs. Meanwhile, if the cumulative distribution function of Yk is called Fk,
Fk(1)=1−∫1∞Γ(k)λk11xk−1e−λxdx
To summarize,
Fk(1)=1−∫1∞Γ(k)λkxk−1e−λxdx
If we substitute λx=z with λdx=dz,
Fk(1)=1−∫λ∞Γ(k)zk−1e−zdz
According to the relationship between gamma distribution and Poisson distribution,
Fk(1)=1−∫λ∞Γ(k)zk−1e−zdz=1−y=0∑k−1y!λye−λ
Since Yk represents the time at which the kth event occurs, the probability that exactly n events occur within unit time 1 is the same as the probability that Yn is less than or equal to 1 and Yn+1 is greater than 1.
P(N=n)=========P(Yn≤1∧Yn+1>1)P(Yn≤1)P(Yn+1>1)P(Yn≤1)(1−P(Yn+1≤1))P(Yn≤1)−P(Yn≤1)P(Yn+1≤1)P(Yn≤1)−P(Yn≤1∧Yn+1≤1)P(Yn≤1)−P(Yn+1≤1)Fn(1)−Fn+1(1)(1−y=0∑n−1y!λye−λ)−(1−y=0∑ny!λye−λ)n!λne−λ
This refers to the probability mass function of the Poisson distribution with parameter λ, thus N∼Poi(λ)
■
See Also