We need to allocate 45 hours among the three production lines (A, B, and C) such that all conditions are satisfied
Constraints:
- Line A: Maximum 42 hours, Minimum 42/2 = 21 hours. Hence, Line A must get at least
22 hours- Line B: Maximum 20 hours, Minimum 20/2 =10 hours. Hence, Line B must get at least
11 hours- Line C: Maximum 12 hours, Minimum 12/2 =6 hours. Hence, Line C must get at least
7 hoursLet x,y and z be hours for Line A, B and C.
Therefore,\( x+y+z = 45 , x>=22 , y>=11, z >=7\) .......(1)
We test with the values,
\(x=22,y=11 and z=7\), we get 40 which is not enough.
Trying with \(x=22,y=16 and z=7,\) we get 45 which is a valid solution.
Therefore,
\(y=16 \) and \( z=7\)