1function [W,rhohat]=qsys_gig1_lbnd(lambda,mu,ca,cs)
2% [W,RHOHAT]=QSYS_GIG1_LBND(LAMBDA,MU,CA,CS)
4% Computes fundamental theoretical lower bounds
for G/G/1 queues.
5% These are the minimum possible values that performance measures
6% cannot fall below
for any realization of the arrival and service
10% LAMBDA - Arrival rate
12% CA - Coefficient of variation of inter-arrival time
13% CS - Coefficient of variation of service time
16% W - Lower bound on average time in system (= 1/mu)
17% RHOHAT - Modified utilization (so that M/M/1 formulas still hold)
19% Copyright (c) 2012-2026, Imperial College London
22W = 1/mu; % At least the mean service time
23rhohat = W*lambda/(1+W*lambda);