Problem Statement: A television manufacturer has decided to produce and sell two different types of TV sets, small and big. They assure that the small will give a profit of \$300 per unit and the big a profit of \$500 per unit. They have one production plant with four departments: molding, soldering, assembly and inspection. Each TV set is processed in sequence through these four departments. Each department has a limited capacity given by a maximum number of working hours per year. We assume that they can sell all the TV sets they are able to produce and the market is not a restriction.
Objective function:
Maximize $$Z \equiv 300 x_1+500 x_2 $$ subject to the following constraints:
$x_1+5x_2 \leq 4000\qquad$ [Molding capacity]
- $x_1+x_2 \leq 1200\qquad $ [Soldering capacity]
- $2x_1+x_2\leq 2000\qquad $ [Assembly capacity]
- $2x_1+5x_2 \leq 5000\qquad $ [Inspection capacity]
- $x_1,x_2 \geq 0 \qquad $ [Non-negativity]
The dual is given by:
- Minimize $$Z^\prime = 4000u_1+1200u_2+2000u_3+5000u_4$$ subject to
- $u_1+u_2+2u_3+2u_4 \geq 300\qquad$ [Small TV Sets]
- $5u_1+u_2+u_3+5u_4 \geq 500\qquad$ [Big TV Sets]
- $u_1,u_2,u_3,u_4 \geq 0$.
My question is: What is the physical interpretation of the dual variables ($u_i$)? Is it cost/hr or profit/hr for a specific operation? If I consider cost, then the objective function is OK. But in case of constraints, cost cannot be greater than profit. Again, if I consider profit, then the constraints are OK. But in the objective function profit cannot be minimized.
The original problem asks to maximize profits, given that you make a certain amount of profit for each of the different TV types you manufacture, and given that each TV type costs a certain amount to make, in terms of hours spent in each department, and that total costs (in hours) per department are limited.
There are several ways to interpret the dual problem, which is about determining the value of each hour in each department. One way of interpreting the value of each hour in each department is imagining how much you'd have to "sell" each hour for in order to make as much profit (\$300 for the hours spent on a small TV; \$500 for the hours spent on a large TV) as you currently do using those departmental hours yourself.
The dual problem is a minimization problem because the true value of the departmental hours is equal to the amount of money you make when you when you sell departmental hours for just the amount it takes to make exactly \$300 on the hours spent per small TV, etc.— no more.
Here's a story to go with the dual problem:
More generally, if the original problem asks you to maximize some objective function $Z$, where you get a certain amount of $Z$ for each of the things $x_1,\ldots, x_m$ you have, and each of the things requires a certain amount of limited $(\leq)$ ingredients/resources to make, ...
...the dual problem asks you to determine the value of each of your ingredients/resources. To do so, you can imagine selling off the ingredients/resources at certain rates. The fact that you can spend those resources to make the things $x_1,\ldots, x_m$ provides lower bounds $(\geq)$ on the value of those ingredients/resources. (To put it another way, you would only sell your resources at competitive rates, where it makes sense to sell them instead of spending them to make things.) You find the break-even value of those resources by finding values that minimize how much money you'd make if you sold off all of your resources instead of using them to make things, subject to the constraints that you sell them at rates that make sense given what else you could use them for.