We are trying to find the dual of the following linear program.
$$ \max_x \ ax_1 \ + x_2 $$
such that:
$$ v_1x_1 - v_2x_2 \geq b_1 \\ v_1x_1 - v_2x_2 \geq b_2 \\ x_1 \geq 0 \\ x_2 \geq 0$$
How would one do this?
I am not sure but I get the following as the dual :
$$ \min_\gamma \ b_1\gamma_1 + b_2\gamma_2 $$
such that:
$$ v_1\gamma_1 - v_2\gamma_2 \geq a $$
$$ v_1\gamma_1 - v_2\gamma_2 \geq 1 \\ \gamma_1 \geq 0 \\ \gamma_2 \geq 0$$
Is this correct?
What can one say about the primal and dual feasibility and the optimal values of this problem?
I employ the method described by Sebastien Lahaie at
http://www.cs.columbia.edu/coms6998-3/lpprimer.pdf
Question: find the dual of the following linear program:
$$ \max_x \ ax_1 \ + x_2 $$
such that:
$$ v_1x_1 - v_2x_2 \geq b_1 \\ v_1x_1 - v_2x_2 \geq b_2 \\ x_1 \geq 0 \\ x_2 \geq 0$$
Solution:
Steps 1 and 2.
$$ \min_x -ax_1 - x_2$$
such that
$$ v_2x_2 - v_1x_1 +b_1 \le 0 \\ v_2x_2 - v_1x_1 + b_2 \le 0 \\ x_1 \geq 0 \\ x_2 \geq 0$$
Step 3
$$ \max_ \gamma \min_x -ax_1 - x_2$$
$$+ \gamma_1(v_2x_2 - v_1x_1 +b_1) \\ + \gamma_2(v_2x_2 - v_1x_1 + b_2)$$
$$x_1 \geq 0 \\ x_2 \geq 0 \\ \gamma_1 \geq 0 \\ \gamma_2 \geq 0$$
Step 4
$$ \max_ \gamma \min_x \gamma_1 b_1 + \gamma_2 b_2$$
$$ + x_1(-v_1 \gamma_1 -v_1 \gamma_2 -a)$$
$$ + x_2(v_2 \gamma_1 +v_2 \gamma_2 -1)$$
$$x_1 \geq 0 \\ x_2 \geq 0 \\ \gamma_1 \geq 0 \\ \gamma_2 \geq 0$$
Steps 5 and 6
$$ \max_ \gamma \gamma_1 b_1 + \gamma_2 b_2$$
$$-v_1 \gamma_1 -v_1 \gamma_2 -a \ge 0$$
$$v_2 \gamma_1 +v_2 \gamma_2 -1 \ge 0$$
$$ \gamma_1 \geq 0 \\ \gamma_2 \geq 0$$
Step 7
$$ \min_ \gamma - \gamma_1 b_1 - \gamma_2 b_2$$
$$-v_1 \gamma_1 -v_1 \gamma_2 \ge a$$
$$v_2 \gamma_1 +v_2 \gamma_2 \ge 1$$
$$ \gamma_1 \geq 0 \\ \gamma_2 \geq 0$$