Processing math: 100%

Friday, April 12, 2024

Instead of integers use binaries

In [1], a small (fragment of a) model is proposed:

High-Level Model
mini|aixi|maxi|xi|=1xi{1,0,1}

Can we formulate this as a straight MIP? 

The objective is not very complicated. We can handle this with standard formulations, similar to what is used in LAD (Least Absolute Deviation) regression [2]. The constraint is more problematic. It can be interpreted as "at least one of the xi should be nonzero". This type of counting typically needs binary variables. When we need binary variables anyway, it may be easier just to go all the way, and define: yi,k={1if xi=k0otherwise where k{1,0,1}. With this, a straightforward model is: 


 Binary Expansion
mini,k|ai||k|yi,kxi=kkyi,kkyi,k=1i(yi,1+yi,1)1xi{1,0,1}yi,k{0,1}

Notes:
  • If we want we can make xi a continuous variable. 
  • The first constraint is an accounting row.
  • We can also drop xi completely from the model and recover it during reporting of the solution. I.e. remove the accounting row from the model.
It is not unusual that a model with integer variables is difficult to formulate as a MIP, while a corresponding model with binary variables is straightforward.

References


4 comments:

  1. Unless I'm missing something, what you propose seems overkill. First, couldn't you just rewrite with K binary variables as follows:

    min sum_i abs(a_i) * x_i
    s.t. sum_i x_i >= 1
    x_i binary

    And if this model is standalone (as opposed to a part of a larger model), why not just find the minimum abs(a_i), which can be done in linear time?

    ReplyDelete
    Replies
    1. Indeed, because abs(a * b) = abs(a) * abs(b), both objective and constraints are only dependent on abs(x_i)

      Delete
  2. I think you inadvertently omitted sum_k y_{i,k} = 1 for all i.

    ReplyDelete