Chapter 04. Special Distribution
4.2 Bernoulli Distribution (베리누이 분포)
RV
- Discrete RV를 사용한다.
- Binary data를 RV로 사용한다.
- X=0, 1 or success, failure
PMF
P(success or 1)P(failure or 0)=p=(1−p)
Expectation and Variance
E[X]σX2=p=p(1−p)
4.3 Binomial Distribution (이항 분포)
RV
- Discrete RV를 사용한다.
- Bernoulli distribution에서 n번 시도한 것중에서 성공한 횟수를 RV로 사용한다.
- x=0, 1, 2, ⋯, n
PMF
PX(x)=(nk)px(1−p)n−x
Expectation and Variance
E[X]σX2=np=np(1−p)
4.4 Geometric Distribution (기하 분포)
RV
- Discrete RV를 사용한다.
- 첫 번째 성공까지 Bernoulli trial을 실행한 횟수를 RV로 사용한다.
- x=1, 2, 3, ⋯
PMF
PX(x)=(1−p)x−1p
Expectation and Variance
E[X]σX2=p1=p21−p
Property
Forgetfulness (Memoryless)
- 앞에서 시행한 것들이 이후 실행에 영향을 주지 않는다.
- 앞에서 몇 번을 시행했던지, k라는 값은 n과 전혀 상관 없다.
- n번 실패했다는 가정 하에 k번 추가로 실행할 때 성공할 확률.
P(X=n+k∣X>n)=P(X>n)P(X=n+k∩X>n)=P(X>n)P(X=n+k)=p(1−p)k−1=p(X=k)
4.5 Pascal Distribution (파스칼 분포)
RV
- Discrete RV를 사용한다.
- k번 성공할 때까지 Bernoulli trial 횟수를 RV로 사용한다.
- n=k, k+1, k+2, ⋯
PMF
P(X=n)=(n−1k−1)pk−1(1−p)(n−1)−(k−1)p=(n−1k−1)pk(1−p)n−k
Expectation and Variance
E[X]σX2=pk=p2k(1−p)
- Geometric dist가 k개 있는 것과 같다.
4.7 Poisson Distribution (포아송 분포)
RV
- Discrete RV를 사용한다.
- 주어진 시간(time interval)동안 이벤트가 발생한 횟수를 RV로 사용한다.
- x=0, 1, 2, ⋯
PMF
PX(x)=x!λxe−λ
Expectation and Variance
E[X]σX2=λ=λ
4.8 Exponential Distribution (지수 분포)
RV
- Continuous RV를 사용한다.
- 시스템이 생존할 시간을 RV로 사용한다.
- x≥0
PDF and CDF
fX(x)FX(x)=λe−λx=1−e−λx
Expectation and Variance
E[X]σX2=λ1=λ21
Property
Forgetfulness (Memoryless)
- 앞에서 시행한 것들이 이후 실행에 영향을 주지 않는다.
- t시간 까지 시스템이 생존했을 때, t+s시간까지 생존할 확률에 영향을 주지 않는다.
- t+s까지 생존할 확률을 구하는데, t라는 시간은 전혀 상관 없다.
P(X≤t+s∣X>t)=P(X>t)P(X≤t+s ∩X>t)=1−P(X≤t)P(t<X≤t+s)=1−FX(t)FX(t+s)−FX(t)=1−e−λs=FX(s)
Relation between Exponential dist and Poisson dist
- Poisson dist에서 이벤트가 한 번 이상 발생할 확률은 Exponential dist에서 t시간 안에 시스템 failure 이벤트가 발생하는 확률과 같다.
- 따라서 Poisson dist를 갖는 이벤트들이 발생할 때, 발생한 events 간에 시간 간격(time interval)은 Exponential dist를 따른다.
4.9 Erlang-k Distribution (얼랑-k 분포)
RV
- Continuous RV를 사용한다.
- k+1번 이벤트가 발생하는 시간 주기(time interval)를 RV로 사용한다.
- Exponential dist의 일반적인 형태다.
- x≥0
PDF and CDF
fXK(x)FXk(x)=(k−1)!λkxk−1e−λx=∫0x(k−1)!λktk−1e−λt dt=1−j=0∑k−1j!(λx)je−λx
Expectation and Variance
E[Xk]σXk2=λk=λ2k
- Erlang dist의 expectation과 variance는 Exponential dist가 k개 있는 것과 같다.
RV
- Discrete RV와 Continuous RV 모두 사용한다.
- Discrete RV의 경우 항상 같은 확률을 가진다.
- Continuous RV의 경우 범위를 사용한다.
PDF
fX(x)=b−a1
Expectation and Variance
E[X]σX2=2a+b=12(b−a)2
4.11 Normal Distribution (Gaussian, 정규 분포)
RV
- Continuous RV를 사용한다.
- 일반적으로 Gaussian dist를 많이 사용한다.
PDF and CDF
fX(x)FX(x)=2πσX21e−2σX2(x−μX)2=P(X≤x)=PZ(Z≤σXx−μX)
Notataion
NX(μX,σX2)
Property
Standard Gaussian Distribution
- μ=0, σX2=1인 Normal dist를 Standard Noramal(Gaussian) dist (표준 정규 분포)라고 한다.