I am learning optimization and I came across this exercise to solve the following problem:
$$\min 2x_1+3x_2$$
$$x_1+x_2\geq 5$$
$$x_1\geq 1$$
$$x_2\geq 2$$
This exercise has been introduced just after the definition of the standard LP and the corresponding dual problem. The question is to prove that $x^*=(3,2)$ is the optimal solution by showing that the objective value of any feasible solution is at least 12.
I have tried to convert the problem to the dual form.
First I convert my LP problem to a standard LP problem by introducing the surplus variables $x_3,x_4,x_5:$
$$\min 2x_1+3x_2$$
$$x_1+x_2-x_3 = 5$$
$$x_1-x_4 = 1$$
$$x_2 - x_5 = 2$$
with all $x_i \geq 0$.
Then I convert the problem to the corresponding standard dual:
$$\max 5y_1+y_2+2y_3$$
$$y_1+y_2\leq 2$$
$$y_3\leq 3$$
$$y_i \geq 0, i \in \{1,2,3\}$$
But then I am stuck...
Let's use a graphical solution. Taking $x_1$ on x axis and latter on y axis. We get $$x+y≥5$$ $$x≥1$$ $$y≥2$$ And we need to find the minimum value of c In $$2x+3y= c$$image of graphical rendering by desmos By slowly increasing c we can easily see that it first intersects the red area (possible values of X and y) first at (2,3) and is the unique solution to c= 12 I have used a graphing calculator for this but it can be easily drawn on paper.