00:01
Okay, so for part a, we want to find the single server system departure times.
00:08
Now, for a single server system, we calculate the departure times by adding the service times to either the arrival time or to the departure time of the previous customer.
00:19
Now, here i have the code in python to calculate the single server system departure times.
00:31
And here's the output.
00:32
Output, so we have a for customer1 departs at time 52, and customer2 departs at time 84, customer3 departs at time 139, and so forth.
00:51
Now as for part b, we want to find the two servers system departure times.
01:00
Times.
01:02
So with two servers, customers can be served by either server as soon as they are free.
01:11
Now we need to track the service status of both servers and assign customers to the next available server, which calculates the departure times accordingly.
01:22
So, here i have the part b and calling python to do the calculation.
01:31
And here we have the output...