I have an optimization problem in which one constraint is linear combination of the other two constraints like this:
$$ (1) A+B \le D \\ (2) E+F \le D \\ (3) A+B+E+F \le 2D $$
Is it valid to delete constraint ${(3)}$, since it is a linear combination of constraints $(1)$ and $(2)$?
It is valid to delete constraint (3) since it is redundant with the other two. In some computer modelling languages, though, it can sometimes be useful to keep redundant constraints in the model to help reduce the search space.