Exercise 1.15

A company produces two kinds of products. A product of the first type requires 1 4 hours of assembly labor, 1 8 hours of testing, and $1.2 worth of raw materials. A product of the second type requires 1 3 hours of assembly, 1 3 hours of testing, and 0.9 worth of raw materials. Given the current personnel of the company, there can be at most 90 hours of assembly labor and 80 hours of testing, each day. Products of the first and second type have a market value of $9 and $8, respectively.

(a)
Formulate a linear programming problem that can be used to maximize the daily profit of the company.
(b)
Consider the following two modifications to the original problem:
(i)
Suppose that up to 50 hours of overtime assembly labor can be scheduled, at a cost of $7 per hour.
(ii)
Suppose that the raw material supplier provides a 10% discount if the daily bill is above $300.

Which of the above two elements can be easily incorporated into the linear programming formulation and how? If one or both are not easy to incorporate, indicate how you might nevertheless solve the problem.

Answers

(a)
We model the quantity of the first product by x1 and the second by x2, both nonnegative. Then the hours required to produce both products can be modelled by 1 4x1 + 1 3x2 for assembly and 1 8x1 + 1 3x2 for testing. The profit per unit of product one is its price reduced by the costs of its production: $9 $1.2 = $7.8; similarly, the profit per unit of the second product is $8 $0.9 = $7.1. This results in the following linear optimization problem:

maximize 7.8x1 + 7.1x2 subject to1 4x1 + 1 3x2 90 1 8x1 + 1 3x2 80 x1,x2 0.
(1)
(b)
Consider the following two modifications to the original problem:
(i)
To accommodate for an additional type of constraint (paid assembly hours), we introduce a new variable y to the original problem (1):

maximize 7.8x1 + 7.1x2 7y subject to1 4x1 + 1 3x2 y 90 1 8x1 + 1 3x2 80 y 50 x1,x2 0.
(2)
(ii)
It is not possible to incorporate this condition without significant restructuring. There is, however, a workaround: we can formulate two separate linear optimization problems to accommodate for two cases when this discount is taken advantage of and when not. The final answer is then the best result among these two cases.

To do so, modify the linear program (1) to include the restriction 1.2x + 0.9y 300. Under the assumption that the discount is not employed, an optimal solution to this modified LP yields the highest return.

For the second case, introduce the constraint 1.2x + 0.9y 300 to (1) to obtain the alternative optimization problem. This condition guarantees that the discount is taken advantage of. One also must modify the objective function to reflect the discount:

(9 0.9 1.2)x + (8 0.9 0.9)y.

Now solve both linear optimization problems and maximize both optimal profits.

User profile picture
2022-02-12 10:55
Comments