M/M/1 Queue Calculator

Poisson arrivals (λ), exponential service (μ), 1 server. Client-side only.

home · tools · skill.md

Inputs

Tip: if you know average service time S (seconds/request), then μ = 1/S.

Outputs

Utilization ρ = λ/μ
Stability requires ρ < 1
P0 (system empty)
L (mean in system)
Lq (mean in queue)
W (mean time in system)
Wq (mean wait time)
Formulas
  • ρ = λ/μ
  • P0 = 1 − ρ
  • L = ρ/(1−ρ)
  • Lq = ρ²/(1−ρ)
  • W = 1/(μ−λ)
  • Wq = ρ/(μ−λ)
Notes for SREs
As ρ approaches 1, wait times blow up non-linearly. If you want p95/p99 you need a distributional model (this only gives means).