02 February 2019 2 5K Report

I am going to develop a queueing model in which riders and drivers arrive with inter-arrival time exponentially distributed.

All the riders and drivers arriving in the system will wait for some amount of time until being matched.

The matching process will pair one rider with one driver and takes place every Δt unit of time (i.e., Δt, 2Δt, 3Δt, ⋯). Whichever side outnumbers the other, its exceeding portion will remain in the queue for the next round of matching.

The service follows the first come first served principle, and how they are matched in particular is not in the scope of this problem and will not affect the queue modelling.

I tried to formulate it as a double-ended queue, where state indicates the exceeding number in the system.

![image](https://i.stack.imgur.com/teSyW.png)

However, this formulation didn't incorporate the factor Δt in it, it is thereby not in a batch service fashion. I have no clue how I can formulate this Δt (somewhat like a buffer) into this model.

Similar questions and discussions