Subcritical Single-Server Workloads Couple in Finite Time
Provedsubcritical_single_server_queue_eventually_couplescouplingprobabilityqueueing-theorystability
Finite-time coupling under subcritical load
Consider the unit-rate single-server queue defined by the cumulative work input . Let be the workload initialized with finite , and let be the workload constructed from the infinite past.
If the long-run offered load satisfies , then almost surely there is a finite random time such that
This is the sample-path contraction proposition in the source notes.
Formal statement
import Definitions.Def_single_server_queueing_stability
open Filter MeasureTheory
open scoped Topology
open SingleServerQueueing
/-- In a unit-rate single-server queue with long-run offered load below one, every workload
started from finite nonnegative work couples after an almost surely finite time to the workload
constructed from the infinite past. -/
theorem subcritical_single_server_queue_eventually_couples
{Ω : Type*} {m₀ : MeasurableSpace Ω} {μ : Measure Ω}
(q : Input Ω μ) (α : ℝ) (hα : 0 ≤ α) (hρ : q.load < 1) :
∀ᵐ ω ∂μ, ∃ T : ℝ, ∀ t, T ≤ t →
q.transientWorkload α t ω = q.stationaryWorkload t ω := by
sorry
Source
User-supplied notes, subsection 'Stability Analysis via the Sample Path Approach', penultimate proposition: if rho < 1 then the coupling time T^alpha is finite almost surely.
Human review
Confirmed by the mission captain (proposal self-audit).