learn.howToCalculate
learn.whatIsHeading
Analyzes exponential distribution (waiting time) with mean 1/λ, used for modeling queues and failures.
공식
Mean = 1/λ, Variance = 1/λ²
단계별 가이드
- 1PDF: f(x) = λe^(-λx)
- 2CDF: F(x) = 1 - e^(-λx)
- 3Mean = 1/λ, Variance = 1/λ²
- 4Memoryless property: P(X > s+t | X > s) = P(X > t)
풀어진 예시
입력
λ=0.5, x=2
결과
P=0.368
피해야 할 일반적인 실수
- ✕Using normal distribution for time data (exponential better)
- ✕Wrong λ parameter (rate, not 1/rate)
- ✕Not checking memoryless property applicability
자주 묻는 질문
What's practical use?
Customer arrivals (Poisson), equipment failures, radioactive decay, service times.
What's memoryless property?
Past waiting time doesn't affect future; no "aging" effect.
계산할 준비가 되셨나요? 무료 Exponential Dist 계산기를 사용해 보세요
직접 시도해 보세요 →