Categories

Using Solver to Determine the Optimal Product Mix

Overview

  • How can I determine the monthly product mix for our plant that maximizes corporate profitability?
  • Does a Solver model always have a solution?
  • What does it mean if a Solver model yields the result Set Values Do

Not Converge?

How can I determine the monthly product mix for our plant that maximizes corporate profitability?

Companies often need to determine the monthly (or weekly) production schedule that gives the quantity of each product that must be produced. In its simplest incarnation, the product mix problem involves how to determine the amount of each product that should be produced during a month to maximize profits. Product mix must often satisfy the following constraints:

  • Product mix can’t use more resources than are available.
  • There is a limited demand for each product. We can’t produce more of a product during a month than is demanded because the excess production is wasted (consider a perishable drug, for example).

Let’s now solve the following example of the product mix problem. You can find the solution to this problem in the file ProdMix.xls, shown in the following figure.

excel-for-ur-business-using-solver-to-determine-the-optimal-product-mix.JPG

Let’s say we work for a drug company that can produce six products at their plant. Production of each product requires labor and raw material. Row 4 in the following figure gives the hours of labor needed to produce a pound of each product, and row 5 gives the pounds of raw material needed to produce a pound of each product. For example, producing a pound of product 1 requires 6 hours of labor and 3.2 pounds of raw material. For each drug, the price per pound is given in row 6, the unit cost per pound is given in row 7, and the profit contribution per pound is given in row 9. For example, product 2 sells for $11.00 per pound, incurs a unit cost of $5.70 per pound, and contributes $5.30 profit per pound. This month’s demand for each drug is given in row 8. For example, demand for product 3 is 1041 pounds. This month, 4500 hours of labor and 1600 pounds of raw material are available. How can this company maximize its monthly profit?

If we knew nothing about the Excel Solver, we would attack this problem by constructing a spreadsheet in which we track for each product mix the profit and resource usage associated with the product mix. Then we would use trial and error to vary the product mix to optimize profit without using more labor or raw material than is available and without producing more of any drug than there is demand. We use Solver in this process only at the trial-and-error stage. Essentially, Solver is an optimization engine that flawlessly performs the trialand-error search.

A key to solving the product mix problem is efficiently computing the resource usage and profit associated with any given product mix. An important tool that we can use to make this computation is the SUMPRODUCT function. The SUMPRODUCT function multiplies corresponding values in cell ranges and returns the sum of those values. Each cell range used in a SUMPRODUCT evaluation must have the same dimensions, which implies that you can use SUMPRODUCT with two rows or two columns but not with a column and a row.

As an example of how we can use the SUMPRODUCT function in our product mix example, let’s try to compute our resource usage. Our labor usage is given by

(Labor used per pound of drug 1)*(Drug 1 pounds produced)+(Labor used per pound of drug 2)
*(Drug 2 pounds produced)+ …(Labor used per pound of drug 6)*(Drug 6 pounds produced)

We could compute labor usage in a tedious fashion as D2*D4 + E2*E4 + F2*F4 + G2*G4 + H2*H4 + I2*I4. Similarly, raw material usage could be computed as D2*D5 + E2*E5 + F2*F5 + G2*G5 + H2*H5 + I2*I5. Entering these formulas in a spreadsheet is time-consuming with six products. Imagine how long it would take if you were working with a company that produced, say, 50 products at their plant. A much easier way to compute labor and raw material usage is to copy from D14 to D15 the formula SUMPRODUCT($D$2:$I$2,D4:I4). This formula computes D2*D4 + E2*E4 + F2*F4 + G2*G4 + H2*H4 + I2*I4 (which is our labor usage) and is much easier to enter! Notice that I use the $ sign with the range D2:I2 so that when I copy the formula I still pull the product mix from row 2. The formula in cell D15 computes raw material usage.

In a similar fashion, our profit is given by

(Drug 1 profit per pound)*(Drug 1 pounds produced) + (Drug 2 profit per pound)*
(Drug 2 pounds produced)+ …(Drug 6 profit per pound)*(Drug 6 pounds produced).

Profit is easily computed in cell D12 with the formula SUMPRODUCT(D9:I9,$D$2:$I$2).

We now can identity the three parts of our product mix Solver model.

  • Target cell Our goal is to maximize profit (computed in cell D12).
  • Changing cells The number of pounds produced of each product (listed in the cell range D2:I2).
  • Constraints We have the following constraints:
    • Do not use more labor and raw material than are available. That is, the values in cells D14:D15 (resources used) must be less than or equal to the values in cells F14:F15 (the available resources).
    • Do not produce more of a drug than is in demand. That is, the values in the cells D2:I2 (pounds produced of each drug) must be less than or equal to the demand for each drug (listed in cells D8:I8).
    • We can’t produce a negative amount of any drug.

I’ll now show you how to input the target cell, changing cells, and constraints into Solver. Then, all you need to do is click the Solve button and Solver will find a profit-maximizing product mix!

To begin, select Tools, Solver. (See post An Introduction to Optimization with the Excel Solverfor instructions on how to install Solver.) The Solver Parameters dialog box will appear, as shown in the following figure.

excel-for-ur-business-using-solver-to-determine-the-optimal-product-mix-2.JPG

To input the target cell, click in the Set Target Cell box and then select our profit cell (cell D12). To input our changing cells, click in the By Changing Cells box and then point to the range D2:I2, which contains the pounds produced of each drug. The dialog box should now look the following figure.

excel-for-ur-business-using-solver-to-determine-the-optimal-product-mix-3.JPG

We’re now ready to add constraints to the model. Click the Add button. You’ll see the Add Constraint dialog box, shown in the following figure.

excel-for-ur-business-using-solver-to-determine-the-optimal-product-mix-4.JPG

To add the resource usage constraints, click in the box labeled Cell Referenceand then select the range D14:D15. Select <= from the drop-down list in the middle of the dialog box. Click in the box labeled Constraint, and then select the cell range F14:F15. The Add Constraint dialog box should now look like the following figure.

excel-for-ur-business-using-solver-to-determine-the-optimal-product-mix-5.JPG

We have now ensured that when Solver tries different values for the changing cells, Solver will consider only combinations that satisfy both D14<=F14 (labor used is less than or equal to labor available) and D15<=F15 (raw material used is less than or equal to raw material available). Now click Add in the Add Constraint dialog box to enter the demand constraints. Simply fill in the Add Constraint dialog box as shown in the following figure.

excel-for-ur-business-using-solver-to-determine-the-optimal-product-mix-6.JPG

Adding these constraints ensures that when Solver tries different combinationsfor the changing cell values, Solver will consider only combinations that satisfy the following:

  • D2<=D8 (the amount of drug 1 made is less than or equal to the demand for drug 1)
  • E2<=E8 (the amount of drug 2 made is less than or equal to the demand for drug 2)
  • F2<=F8 (the amount of drug 3 made is less than or equal to the demand for drug 3)
  • G2<=G8 (the amount of drug 4 made is less than or equal to the demand for drug 4)
  • H2<=H8 (the amount of drug 5 made is less than or equal to the demand for drug 5)
  • I2<=I8 (the amount of drug 6 made is less than or equal to the demand for drug 6)

Click OK in the Add Constraint dialog box. The Solver window should look like the following figure.

excel-for-ur-business-using-solver-to-determine-the-optimal-product-mix-7.JPG

We enter the constraint that all changing cells be nonnegative in the Solver Options dialog box. Click the Options button in the Solver Parameters dialog box. Select the options Assume Linear Model and Assume Non-Negative, as shown in the following figure. Click OK.

excel-for-ur-business-using-solver-to-determine-the-optimal-product-mix-8.JPG

Selecting the Assume Non-Negative option ensures that Solver considers only combinations of changing cells in which each changing cell assumes a nonnegative value. We selected Assume Linear Model because the product mix problem is a special type of Solver problem called a linear model. Essentially, a S olver model is linear under the following conditions:

  • The target cell is computed by adding together terms of the form (changing cell)*(constant).
  • Each constraint satisfies the ‘linear model requirement.’ This means that each constraint is evaluated by adding together terms of the form (changing cell)*(constant) and comparing such sums to a constant.

Why is this Solver problem linear? Our target cell (profit) is computed as

(Drug 1 profit per pound)*(Drug 1 pounds produced) + (Drug 2 profit per pound)*
(Drug 2 pounds produced)+ …(Drug 6 profit per pound)*(Drug 6 pounds produced)

This computation follows a pattern in which the target cell’s value is derived by adding together terms of the form (changing cell)*(constant).

Our labor constraint is evaluated by comparing the value derived from (Labor used per pound of drug 1)*(Drug 1 pounds produced) + (Labor used per pound of drug 2)*(Drug 2 pounds produced) + … (Labor used per pound of drug 6)*(Drug 6 pounds produced) to the labor available.

Therefore, the labor constraint is evaluated by adding together terms of the form (changing cell)*(constant) and comparing such sums to a constant. Both the labor constraint and the raw material constraint satisfy the linear model requirement.

Our demand constraints take the form

(Drug 1 produced)<=(Drug 1 Demand)(Drug 2 produced)<=(Drug 2 Demand):
(Drug 6 produced)<=(Drug 6 Demand)

Each demand constraint also satisfies the linear model requirement because each is evaluated by adding together terms of the form (changing cell)*(constant) and comparing such sums to a constant.

Having shown that our product mix model is a linear model, why should we care?

  • If a Solver model is linear and we select Assume Linear Model,

Solver is guaranteed to find the optimal solution to the Solver model. If a Solver model is not linear, Solver may or may not find the optimal solution.

  • If a Solver model is linear and we select Assume Linear Model, Solver uses a very efficient algorithm (the simplex method) to find the model’s optimal solution. If a Solver model is linear and we do not select Assume Linear Model, Solver uses a very inefficient algorithm (the GRG2 method) and might have difficulty finding the model’s optimal solution.

After clicking OK in the Solver Options dialog box, we’re returned to the main Solver dialog box, shown earlier in the following figure. When we click Solve, Solver calculates an optimal solution (if one exists) for our product mix model. As I stated in post An Introduction to Optimization with the Excel Solver, an optimal solution to the product mix model would be a set of changing cell values (pounds produced of each drug) that maximizes profit over the set of all feasible solutions. Again, a feasible solution is a set of changing cell values satisfying all constraints. The changing cell values shown in the following Figure are a feasible solution because all production levels are nonnegative, no production levels exceed demand, and resource usage does not exceed available resources.

excel-for-ur-business-using-solver-to-determine-the-optimal-product-mix-9.JPG

The changing cell values shown in the following figure represent an infeasible solution for the following reasons:

excel-for-ur-business-using-solver-to-determine-the-optimal-product-mix-10.JPG

  • We produce more of drug 5 than is demanded.
  • We use more labor than labor available.
  • We use more raw material than raw material available.

After clicking Solve, Solver quickly finds the optimal solution shown in the following figure. You need to select Keep Solver Solution to preserve the optimal solution values in the spreadsheet.

excel-for-ur-business-using-solver-to-determine-the-optimal-product-mix-11.JPG

Our drug company can maximize its monthly profit at a level of $6,625.20 by producing 596.67 pounds of drug 4, 1084 pounds of drug 5, and none of the other drugs! We can’t determine if we can achieve the maximum profit of $6,625.20 in other ways. All we can be sure of is that with our limited resources and demand, there is no way to make more than $6,625.20 this month.

Does a Solver model always have a solution?

Suppose that demand for each product must be met. (See the worksheet named No Feasible Solution in the file ProdMix.xls.) We then have to change our demand constraints from D2:I2<=D8:I8 to D2:I2>=D8:I8. To do this, open Solver, select the D2:I2<=D8:I8 constraint, and then click Change. The Change Constraint dialog box, shown in the following figure, appears.

excel-for-ur-business-using-solver-to-determine-the-optimal-product-mix-12.JPG

Select >=, and then click OK. We’ve now ensured that Solver will consider only changing cell values that meet all demands. When you click Solve, you’ll see the message ‘Solver could not find a feasible solution.’ This message means that with our limited resources, we can’t meet demand for all products. We have not made a mistake in our model! Solver is simply telling us that if we want to meet demand for each product, we need to add more labor, more raw material, or more of both.

What does is mean if a Solver model yields the result Set Values Do Not Converge?

Let’s see what happens if we allow unlimited demand for each product and we allow negative quantities to be produced of each drug. (You can see this Solver problem on the worksheet named Set Values Do Not Converge in the file Prod-Mix.xls.) To find the optimal solution for this situation, open Solver, click the Options button, and clear the option Assume Non-Negative. In the Solver Parameters dialog box, select the demand constraint D2:I2<=D8:I8 and then click Delete to remove the constraint. When you click Solve, Solver returns the message ‘The Set Cell values do not converge.’ This message means that if the target cell is to be maximized (as in our example), there are feasible solutions with arbitrarily large target cell values. (If the target cell is to be minimized, the message ‘Set values do not converge’ means there are feasible solutions with arbitrarily small target cell values.) In our situation, by allowing negative production of a drug, we in effect ‘create’ resources that can be used to produce arbitrarily large amounts of other drugs. Given our unlimited demand, this allows us to make unlimited profits. In a real situation, we can’t make an infinite amount of money. In short, if you see ‘Set values do not converge,’ your model does have an error.

 

 

 

 

 

 

 


 

 

Explore posts in the same categories: MS Excel Tune Up