In: Accounting
Question 1:
Remember the Post Office example: A post office requires different numbers of full-time employees on different days of the week. The number of full-time employees required on each day is given in the following Table. Union rules state that each full-time employee must work five consecutive days and then receive two days off. For example, an employee who works Monday to Friday must be off on Saturday and Sunday. The post office wants to meet its daily requirements using only full-time employees.
DAY |
Number of Full-time Employees Required |
1 = Monday |
17 |
2 = Tuesday |
13 |
3 = Wednesday |
15 |
4 = Thursday |
19 |
5 = Friday |
14 |
6 = Saturday |
16 |
7= Sunday |
11 |
Suppose that the post office can force employees to work one day of overtime each week. For example, an employee whose regular shift is Monday to Friday can also be required to work on Saturday. Each employee is paid $50 a day for each of the first five days worked during a week and $62 for the overtime day (if any). Formulate an LP whose solution will enable the post office to minimize the cost of meeting its weekly work requirements.
Answer
Question asked to minimize post office labour cost. So, the objective function should formulate in way that it reduces labour cost.
It is given that normal wage is $50 and over time is $62.
Suppose xi be the number of employees beginning work on day(i)
That is x1 means number of employees beginning work on day (1) and so on
And yi be the number of employees forced to work overtime on day(i)
That is y1 means the number of employees forced to work overtime on day (1) and so on
Employees start normal work on day (1) will continuously work till day (5) and their overtime will the following day after five normal days and it is their first day of over time.
Number of full- time employees required given as Monday (17), Tuesday (13), Wednesday (15), Thursday (19), Friday (14), Saturday (16), Sunday (11).
So, we can formulate the constraints as follows:
Monday x1+x4+x5+x6+x7+y3 ≥ 17
Tuesday x1+x2+x5+x6+x7+y4 ≥ 13
Wednesday x1+x2+x3+x6+x7+y5 ≥ 15
Thursday x1+x2+x3+x4+x7+y6 ≥ 19
Friday x1+x2+x3+x4+x5+y7 ≥ 14
Saturday x2+x3+x4+x5+x6+y1 ≥ 16
Sunday x3+x4+x5+x6+x7+y2 ≥ 11
Xi, Yi ≥0.
Now we have to formulate objective function to minimize the labour cost
Min Z = 50*(x1+x2+x3+x4+x5+x6+x7 )+62*(y1+y2+y3+y4+y5+y6+y7 )