วิธีการคำนวณ Exponential Dist
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 ฟรี
ลองด้วยตัวคุณเอง→