The company PROD produces two different products, \(\mathrm{P}_{1}\) and
\(\mathrm{P}_{2}\), based on three different raw materials, \(\mathrm{M}_{1},
\mathrm{M}_{2}\) og \(\mathrm{M}_{3}\). The following table shows how much of
each raw material \(\mathrm{M}_{i}\) that is required to produce a single unit
of each product \(\mathrm{P}_{j}\) :
For instance, to produce one unit of \(\mathrm{P}_{2}\) one needs 1 unit of
\(\mathrm{M}_{1}, 3\) units of \(\mathrm{M}_{2}\) and 4 units of \(\mathrm{M}_{3}\).
Furthermore, PROD has available 100 , 80 and 150 units of material
\(\mathrm{M}_{1}, \mathrm{M}_{2}\) and \(\mathrm{M}_{3}\) respectively (for the
time period considered). The revenue per produced unit of product
\(\mathrm{P}_{1}\) is \(150 \mathrm{NOK}\), and for one unit of \(\mathrm{P}_{2}\)
it is \(175 \mathrm{NOK}\). On the other hand the raw materials \(\mathrm{M}_{1},
\mathrm{M}_{2}\) and \(\mathrm{M}_{3}\) cost 10,17 and \(25 \mathrm{NOK}\) per
unit, respectively. The question is: How much should PROD produce of each
product? We here assume that PROD wants to maximize its net revenue (which is
revenue minus costs).
a) Let \(x\) and \(y\) be the number of units produced of product \(P_{1}\) and
\(\mathrm{P}_{2}\), respectively. Explain why the total revenue \(f(x, y)\) is
given by
\(f(x, y)=150 x-(10 \cdot 2+17 \cdot 5) x+175 y-(10 \cdot 1+17 \cdot 3+25 \cdot
4) y\)
and simplify this expression. The function \(f(x, y)\) is linear in \(x\) and \(y\)
(check that you know what linearity means).
b) Explain why PROD's problem may be stated mathematically as follows:
maximize \(f(x, y)\)
subject to
$$
\begin{array}{r}
2 x+y \leq 100 \\
5 x+3 y \leq 80 \\
4 y \leq 150 \\
x \geq 0, y \geq 0
\end{array}
$$
This is an example of a linear optimization problem.
c) The production \((x, y)\) may be considered as a point in the plane.
Illustrate geometrically the set \(T\) of all such points that satisfy the
constraints in model (7.8). Every point in this set is called a feasible
point. (Hint: For every inequality determine first the straight line obtained
by replacing the inequality by equality. Then, find the points satisfying the
inequality (a halfplane), and finally, intersect these halfplanes.)
d) Make a program optimization1.py for drawing the straight lines defined by
the inequalities. Each line can be written as \(a x+b y=c\). Let the program
read each line from the command line as a list of the \(a, b\), and \(c\) values.
In the present case the command-line arguments will be
$$
[2,1,100],[5,3,80],[0,4,150], \quad[1,0,0], \quad[0,1,0] \text {, }
$$
e) Let \(\alpha\) be a positive number and consider the level set of the
function \(f\), defined as the set
$$
L_{\alpha}=\\{(x, y) \in T: f(x, y)=\alpha\\}
$$
This set consists of all feasible points having the same net revenue \(\alpha\).
Extend the program with two new command-line arguments holding \(p\) and \(q\) for
a function \(f(x, y)=p x+q y\). Use this information to compute the level set
lines \(y=\alpha / q-p x / q\), and plot the level set lines for some different
values of \(\alpha\) (use the \(\alpha\) value in the legend for each line).
f) Use what you saw in e) to solve the problem (7.8) geometrically.