Converting max to min
Converting Max to Min
Standard form in this course uses minimization.
A maximization problem can be converted into an equivalent minimization problem by multiplying the objective function by $-1$.
Core Rule
The problem:
\[\max f(x)\]is equivalent to:
\[\min -f(x)\]The feasible region is unchanged.
Only the objective sign changes.
Why This Works
If one feasible point has a larger value of $f(x)$, then it has a smaller value of $-f(x)$.
So maximizing $f$ is the same as minimizing $-f$.
If:
\[x^*\in \arg\max f(x)\]then:
\[x^*\in \arg\min -f(x)\]Optimal Values
If the original maximum value is:
\[z^*=f(x^*)\]then the converted minimum value is:
\[\tilde{z}^*=-z^*\]So after solving the minimization problem, convert back by:
\[z^*=-\tilde{z}^*\]Example
Original problem:
\[\max 5x_1+12x_2\]subject to some constraints.
Equivalent minimization problem:
\[\min -5x_1-12x_2\]subject to the same constraints.
If the minimization problem gives:
\[\tilde{z}^*=-66\]then the original maximum value is:
\[z^*=66\]Vector Form
Original maximization:
\[\max c^Tx\]Equivalent minimization:
\[\min (-c)^Tx\]The new cost vector is:
\[\tilde{c}=-c\]Constraints Do Not Change
Converting max to min does not alter:
- $A$
- $b$
- feasible region
- sign restrictions
- equality or inequality direction
Only the objective is negated.
Unboundedness Conversion
If a maximization problem is unbounded above:
\[z^*=+\infty\]then the converted minimization problem is unbounded below:
\[\tilde{z}^*=-\infty\]Common Mistake
Do not multiply the constraints by $-1$ when only converting max to min.
Wrong:
\[\max c^Tx\quad \to \quad \min -c^Tx\]and also changing constraints for no reason.
Correct:
Only the objective changes.
Checklist
You understand this conversion if you can:
- replace $\max f(x)$ by $\min -f(x)$
- keep the feasible region unchanged
- negate the objective coefficients
- convert the optimal value back by changing sign
- distinguish objective conversion from constraint conversion
See Also
Exam checkpoint
For standard-form questions, use the course convention $\min c^Tx$ subject to $Ax=b$, $x\ge0$. Convert max objectives, add slack to $\le$, subtract surplus from $\ge$, and split free variables.