I’m trying to optimize a function with absolute constraints on its variable (a<=|x|<=b), but I don’t know how to replace function “abs” in JuMP constraint or variable.
At first I wrote this one, where x_min and x_max are two known 1*2 array:
But it turns out that abs cannot be used in variable. I also tried to add constraint with abs, but that also failed.
I know that I can write -b<=x<=b to replace |x|<=b, but how should I deal with a<=|x|?
That’s a non-convex constraint if a is positive and x can be negative or positive which I assume must be the case. You can use a mixed integer formulation to encode this.