কীভাবে Exponential Dist গণনা করবেন
Exponential Dist কি?
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 ক্যালকুলেটর চেষ্টা করুন
নিজে চেষ্টা করে দেখুন →