Difficulty: Easy
Correct Answer: redundant constraint
Explanation:
Introduction / Context:In linear programming models, constraints define the feasible region within which the objective is optimized. Sometimes a written constraint does not actually ‘‘bind’’ or change the region. Recognizing such constraints simplifies models and computation.
Given Data / Assumptions:
Concept / Approach:A redundant constraint is logically implied by other constraints and the variable bounds. Removing it leaves the feasible region unchanged. It does not create a binding boundary at the optimum and has no effect on the solution set.
Step-by-Step Solution:
Consider the intersection of all constraints; check whether removing one changes the feasible region.If the feasible region is identical with and without the constraint, it is redundant.Confirm that the optimal solution and objective value remain the same after removal.Verification / Alternative check:Run the LP with and without the candidate constraint; identical feasible sets or identical optimal bases indicate redundancy.
Why Other Options Are Wrong:
Common Pitfalls:Confusing redundant constraints with nonbinding constraints; a nonbinding constraint may still shape the feasible set even if it is not tight at the optimum.
Final Answer:redundant constraint
Discussion & Comments