The Statement of the Problem:
Consider the minimization problem $f(x,y)=14x+20y$ under the constraints $x+2y \ge 4 $, $7x+6y \ge 20$, and $x,y \ge 0$. Don't use the simplex method!
(i) Draw the picture of the constraint set; solve the minimization problem graphically by showing the minimum exists and calculating $f$ at extreme points.
(ii) How does the optimizer location change if we replace the first constraint by $x+2y \ge 4+\epsilon $? How does it change if we replace the second constraint by $7x+6y \ge 20+\epsilon$? What are the shadow values for each of these constraints?
Where I Am:
I did part (i) which was quite simple. I found the following extrema:
$$(4,0);(0,\frac{10}{3});(2,1)$$
with the function attaining a minimum of $48$ at $(2,1)$.
However, I don't really understand part (ii) of the problem. Obviously, the constraints are "tightened" by adding $\epsilon$, because the feasible set gets smaller. That doesn't seem to be "all there is" to this problem. Furthermore, I'm not sure how I'm supposed to find the shadow values. Normally, I just read them off the bottom of the simplex tableau, but we're specifically told NOT to use the simplex method, so I'm not sure what to do. Any help here would be appreciated.
You can investigate the solution of the dual problem:
The dual problem is:
$\texttt{max} \ 4u+20v$
$u+7v\leq 14$
$2u+6v \leq 20$
$u,v \geq 0$
The optimal solution $(u^*, v^*)$ can be found graphically as well.
Interpretation:
If the first constraint would be replaced by $x+2y\geq 4+ \epsilon $, then the optimal soulition would be $z^*_{new}=z^*+u^*\cdot \epsilon=48+u^*\cdot \epsilon$.
If the second constraint would be replaced by $7x+6y\geq 20+ \epsilon $, then the optimal soulition would be $z^*_{new}=z^*+v^*\cdot \epsilon=48+v^*\cdot \epsilon$.