Lexicographic optimization

From HandWiki

Lexicographic optimization is a kind of Multi-objective optimization. In general, multi-objective optimization deals with optimization problems with two or more objective functions to be optimized simultaneously. Often, the different objectives can be ranked in order of importance to the decision-maker, so that objective [math]\displaystyle{ f_1 }[/math] is the most important, objective [math]\displaystyle{ f_2 }[/math] is the next most important, and so on. Lexicographic optimization presumes that the decision-maker prefers even a very small increase in [math]\displaystyle{ f_1 }[/math], to even a very large increase in [math]\displaystyle{ f_2, f_3, f_4, }[/math] etc. Similarly, the decision-maker prefers even a very small increase in [math]\displaystyle{ f_2 }[/math], to even a very large increase in [math]\displaystyle{ f_3, f_4, }[/math] etc. In other words, the decision-maker has lexicographic preferences, ranking the possible solutions according to a lexicographic order of their objective function values. Lexicographic optimization is sometimes called preemptive optimization,[1] since a small increase in one objective value preempts a much larger increase in less important objective values. As an example, consider a firm which puts safety above all. It wants to maximize the safety of its workers and customers. Subject to attaining the maximum possible safety, it wants to maximize profits. This firm performs lexicographic optimization, where [math]\displaystyle{ f_1 }[/math] denotes safety and [math]\displaystyle{ f_2 }[/math] denotes profits.

As another example,[2] in project management, when analyzing PERT networks, one often wants to minimize the mean completion time, and subject to this, minimize the variance of the completion time.

Notation

A lexicographic maximization problem is often written as:[math]\displaystyle{ \begin{align} \operatorname{lex} \max && f_1(x), f_2(x), \ldots, f_n(x) \\ \text{subject to} && x\in X \end{align} }[/math]where [math]\displaystyle{ f_1,\ldots, f_n }[/math] are the functions to maximize, ordered from the most to the least important; [math]\displaystyle{ x }[/math] is the vector of decision variables; and [math]\displaystyle{ X }[/math] is the feasible set - the set of possible values of [math]\displaystyle{ x }[/math]. A lexicographic minimization problem can be defined analogously.

Algorithms

There are several algorithms for solving lexicographic optimization problems.[3]

Sequential algorithm for general objectives

A leximin optimization problem with n objectives can be solved using a sequence of n single-objective optimization problems, as follows:[1][3]:{{{1}}}

  • For t = 1,...,n do
    • Solve the following single-objective problem:[math]\displaystyle{ \begin{align} \max ~~~ f_t(x) \\ \text{subject to} ~~~ &x\in X, \\ &f_k(x) \geq z_k \text{ for all } k \text{ in } 1, \ldots, t-1. \end{align} }[/math]
    • If the problem is infeasible or unbounded, stop and declare that there is no solution.
    • Otherwise, put the value of the optimal solution in [math]\displaystyle{ z_t }[/math] and continue.
  • End for

So, in the first iteration, we find the maximum feasible value of the most important objective [math]\displaystyle{ f_1(x) }[/math], and put this maximum value in [math]\displaystyle{ z_1 }[/math]. In the second iteration, we find the maximum feasible value of the second-most important objective [math]\displaystyle{ f_2(x) }[/math], with the additional constraint that the most imporant objective must keep its maximum value of [math]\displaystyle{ z_1 }[/math]; and so on.

The sequential algorithm is general - it can be applied whenever we have a solver for the single-objective functions.

Lexicographic simplex algorithm for linear objectives

Linear lexicographic optimization[2] is a special case of lexicographic optimization in which the objectives are linear, and the feasible set is described by linear inequalities. It can be written as:[math]\displaystyle{ \begin{align} \operatorname{lex} \max && c_1\cdot x, c_2\cdot x, \ldots, c_n \cdot x \\ \text{subject to} && A\cdot x \leq b, x\geq 0 \end{align} }[/math]where [math]\displaystyle{ c_1,\ldots, c_n }[/math] are vectors representing the linear objectives to maximize, ordered from the most to the least important; [math]\displaystyle{ x }[/math] is the vector of decision variables; and the feasible set is determined by the matrix [math]\displaystyle{ A }[/math] and the vector [math]\displaystyle{ b }[/math].

Isermann[2] extended the theory of linear programming duality to lexicographic linear programs, and developed a lexicographic simplex algorithm. In contrast to the sequential algorithm, this simplex algorithm considers all objective functions simultaneously.

Weighted average for linear objectives

Sherali and Soyster[1] prove that, for any linear lexicographic optimization problem, there exist a set of weights [math]\displaystyle{ w_1 \gt w_2 \gt \cdots \gt w_n }[/math] such that the set of lexicographically-optimal solutions is identical to the set of solutions to the following single-objective problem:[math]\displaystyle{ \begin{align} \max && w_1 f_1(x) + \cdots + w_n f_n(x) \\ \text{subject to} && x\in X \end{align} }[/math]One way to compute the weights is given by Yager.[4] He assumes that all objective values are real numbers between 0 and 1, and the smallest difference between any two possible values is some constant d < 1 (so that values with difference smaller than d are considered equal). Then, the weight [math]\displaystyle{ w_t }[/math] of [math]\displaystyle{ f_t(x) }[/math] is set to approximately [math]\displaystyle{ d^t }[/math]. This guarantees that maximizing the weighted sum [math]\displaystyle{ \sum_t w_t f_t(x) }[/math] is equivalent to lexicographic maximization.

Cococcioni, Pappalardo and Sergeyev[5] show that, given a computer that can make numeric computations with infinitesimals, it is possible to choose weights that are infinitesimals (specifically: [math]\displaystyle{ w_1=1 }[/math]; [math]\displaystyle{ w_2 }[/math] is infinitesimal; [math]\displaystyle{ w_3 }[/math] is infinitesimal-squared; etc.), and thus reduce linear lexicographic optimization to single-objective linear programming with infinitesimals. They present an adaptation of the simplex algorithm to infinitesimals, and present some running examples.

Properties

(1) Uniqueness. In general, a lexicographic optimization problem may have more than one optimal solution. However, If [math]\displaystyle{ x^1 }[/math] and [math]\displaystyle{ x^2 }[/math] are two optimal solutions, then their value must be the same, that is, [math]\displaystyle{ f_i(x^1) = f_i(x^2) }[/math] for all [math]\displaystyle{ i\in[n] }[/math].[3]:{{{1}}} Moreover, if the feasible domain is a convex set, and the objective functions are strictly concave, then the problem has at most one optimal solution, since if there were two different optimal solutions, their mean would be another feasible solution in which the objective functions attain a higher value - contradicting the optimality of the original solutions.

(2) Partial sums. Given a vector [math]\displaystyle{ f_1,\ldots, f_n }[/math] of functions to optimize, for all t in 1,...,n, define [math]\displaystyle{ f_{1..t} := \sum_{i=1}^t f_i }[/math] = the sum of all functions from the most important to the t-th most important one. Then, the original lexicographic optimization problem is equivalent to the following:[3]:{{{1}}}[math]\displaystyle{ \begin{align} \operatorname{lex} \max && f_{1...1}(x), f_{1..2}(x), \ldots, f_{1..n}(x) \\ \text{subject to} && x\in X \end{align} }[/math]In some cases, the second problem may be easier to solve.

See also

  • Lexicographic max-min optimization is a variant of lexicographic optimization in which all objectives are equally important, and the goal is to maximize the smallest objective, then the second-smallest objective, and so on.
  • In game theory, the nucleolus is defined as a lexicographically-minimal solution set.[6]

References

  1. 1.0 1.1 1.2 Sherali, H. D.; Soyster, A. L. (1983-02-01). "Preemptive and nonpreemptive multi-objective programming: Relationship and counterexamples" (in en). Journal of Optimization Theory and Applications 39 (2): 173–186. doi:10.1007/BF00934527. ISSN 1573-2878. https://doi.org/10.1007/BF00934527. 
  2. 2.0 2.1 2.2 Isermann, H. (1982-12-01). "Linear lexicographic optimization" (in en). Operations-Research-Spektrum 4 (4): 223–228. doi:10.1007/BF01782758. ISSN 1436-6304. https://doi.org/10.1007/BF01782758. 
  3. 3.0 3.1 3.2 3.3 Ogryczak, W.; Pióro, M.; Tomaszewski, A. (2005). "Telecommunications network design and max-min optimization problem" (in EN). Journal of Telecommunications and Information Technology nr 3: 43–56. ISSN 1509-4553. http://yadda.icm.edu.pl/baztech/element/bwmeta1.element.baztech-article-BAT3-0027-0006. 
  4. Yager, Ronald R. (1997-10-01). "On the analytic representation of the Leximin ordering and its application to flexible constraint propagation" (in en). European Journal of Operational Research 102 (1): 176–192. doi:10.1016/S0377-2217(96)00217-2. ISSN 0377-2217. https://www.sciencedirect.com/science/article/pii/S0377221796002172. 
  5. Cococcioni, Marco; Pappalardo, Massimo; Sergeyev, Yaroslav D. (2018-02-01). "Lexicographic multi-objective linear programming using grossone methodology: Theory and algorithm" (in en). Applied Mathematics and Computation. Recent Trends in Numerical Computations: Theory and Algorithms 318: 298–311. doi:10.1016/j.amc.2017.05.058. ISSN 0096-3003. https://www.sciencedirect.com/science/article/pii/S0096300317303703. 
  6. Kohlberg, Elon (1972-07-01). "The Nucleolus as a Solution of a Minimization Problem" (in en). SIAM Journal on Applied Mathematics 23 (1): 34–39. doi:10.1137/0123004. ISSN 0036-1399. http://epubs.siam.org/doi/10.1137/0123004.