Why the serving time (excluding waiting time) at bank counter can be modeled as exponential distribution?

577 Views Asked by At

Hi I read something saying the serving time has exponential dist.

I understand that, if the process is Poisson process, the count of events happens in a hour has Poisson dist., and the waiting time til the next event has Exponential dist..

For Poisson process, each event must be independent.

[case 1] I see the waiting time til the next customer comes into the bank is Exponential dist, meaning you don't know whatsoever when the next one's coming. This is because the event of customer arrival is a Poisson process, which is because the arrival time of N customers t1-tN are independent.

[case 2] Suppose there's a counter and a line, we start timing when the 1st customer line start his/her business, I don't see how the event that customers finishing business at the counter is Poisson process, . They are not independent - one starts his/her business only when the earlier one finishes. I also don't see how the serve time at the counter is exponential dist.

[case 3] a contrast example: the waiting time til the next customer leaving the counter is exponential dist.. This case is different from [case 2]. In [case 2], the serving time means we start timing when this customer starts his business. While in [case 4], we appear at the counter and see a customers there - we don't know if he/she just started or has been there for a while.

About the physical meaning of exponential dist., it's the cousin of uniform dist.. Uniform dist. is defined at x = a to b, and means you don't know whatsoever when it's gonna happen between a and b. When you extend the idea to x = 0 to Inf, it is exponential dist., also meaning we have no idea when the next event's gonna happen.

In [case 3] we don't know at all when the customs gonna finish the business. In [case 2], we know something: we start timing when he/she just started the business. Would you still think the chance he/she spending 1 sec at the counter > the chance of spending 30 sec > the chance of spending 1 min?

Does what I think make sense? Please help me. Thanks everyone.

2

There are 2 best solutions below

1
On

It looks like you have two models here. One for the waiting time until the next customer arrives in the queue, which would be exponential if their arrival is Poisson, and one for the time you have to wait in the queue till you get served. These distributions don't have to be the same. If the service time for each customer is an exponential distribution and there are $n$ customer before you, then your waiting time in the queue is no longer an exponential but the sum of exponentials. Under iid assumption your waiting time in the queue is then a gamma random variable depending on the nb of people before you.

4
On

The basic modeling assumption here is that for any $s,t \geq 0$:

$$P(T>t+s \mid T>s)=P(T>t).$$

This is called the memoryless property. It intuitively means that if you've waited for a time $s$ and the event hasn't happened yet, then you are not any closer to the event happening than when you started. One can prove that the only distributions with this property are exponentially distributed.

The idea of the proof is as follows. First rearrange the given information to show that for $F(t)=P(T>t)$, we have

$$F(t+s)=F(t)F(s).$$

Inductively applying this equation gives $F(m/n)=F(1)^{m/n}$ for positive integers $m,n$. You can then use the monotonicity of $F$ and the squeeze theorem to conclude the result for irrational $s,t$.