Processing math: 100%

Monday, July 5, 2010

Inclusive Or in Mathematical Programs

This is a FAQ in various optimization/mathematical programming forums, so it's worth putting the answer someplace to which I can point. How do you model a constraint of the form "either A or B must hold"?

The first thing to observe is that the conditions A and B must, like any other constraints, be expressed as equalities or weak inequalities; strong inequalities are to be avoided because they make the feasible region an open set. In what follows we'll assume that A and B are expressed respectively as ab and cd, where a,,d are expressions involving model variables. We'll also assume that what is intended is an inclusive or, meaning it is acceptable that both conditions are satisfied simultaneously.

To model the disjunction, we will need two positive constants M1 and M2 such that we are absolutely certain that ab+M1 and cd+M2 in the optimal solution (or in at least one optimal solution). Choosing M1 or M2 too small can make the optimal solution infeasible, which would be a serious error. Choosing M1 or M2 unnecessarily large can slow down the progress of the solver (by making bounds looser than is necessary); that can be annoying, but it's not fatal. So one typically errs on side of making M1 and M2 if anything too large, but it pays not to go overboard with them.


We will also need two new binary variables, z1 and z2. We add the following three constraints:ab+M1(1z1)(1)cd+M1(1z2)(2)z1+z21(3). Constraint (1) enforces z1=1a>b, and similarly constraint (2) enforces z2=1c>d. Finally, constraint (3) forces at least one of z1 and z2 to be 1, which in turn forces at least one of the original inequalities to hold.

Imposing an exclusive or (requiring exactly one of the inequalities to hold) is considerably trickier. The easy part is converting (3) to an equation: z1+z2=1. The hard part is converting (1) and (2) so that z1=1 if and only if ab, and similarly for z2. This requires that z1=0a>b; but enforcing a strict inequality is not possible. The one exception is that if a and b are integer valued, then a>b equates to a\geb+1, which can be handled. For continuous expressions, though, the best workaround may be to introduce a small positive constant ϵ>0 and enforce z1=0ab+ϵ, which has the unfortunate effect of cutting off any (possibly optimal) solution where b<a<b+ϵ.

No comments:

Post a Comment

Due to intermittent spamming, comments are being moderated. If this is your first time commenting on the blog, please read the Ground Rules for Comments. In particular, if you want to ask an operations research-related question not relevant to this post, consider asking it on Operations Research Stack Exchange.