QTDN
QTDN
Blocking Probability
The blocking probability is the probability that a new call will be blocked be-
cause all servers are busy. The formula is:
AC
B(A, C) = PCC! Ak
k=0 k!
where:
Interpretation
• The numerator represents the probability that all C servers are busy.
• The denominator normalizes over all possible states (from 0 to C busy
servers).
Erlang C Model
The Erlang C model calculates the waiting (delay) probability in a system where
calls are queued if all servers are busy.
1
Delay Probability
The probability that a call will be delayed is given by:
AC C
C! ·C−A
C(A, C) = PC−1 Ak C
k=0 k! + AC! · C
C−A
where:
• A is the traffic intensity in Erlangs.
Interpretation
• Calls are not blocked but queued if all servers are busy.
• If A ≥ C, the system is unstable, leading to frequent delays.
2
Solution
The blocking probability in an M/M/k/k system is given by:
Ak
k!
Pm = Pk An
n=0 n!
where:
• A = 180 (offered load in Erlangs).
• k is the number of servers (circuits).
P196 = 0.016
P200 ≈ 0.01032
P201 ≈ 0.00916
Conclusion
• For k = 200, P200 = 0.01032, which exceeds the 1% requirement.
• For k = 201, P201 = 0.00916, which meets the requirement.
• Minimum number of circuits required: k = 201.