Lexicographic Optimization
   HOME

TheInfoList



OR:

Lexicographic optimization is a kind of
Multi-objective optimization Multi-objective optimization or Pareto optimization (also known as multi-objective programming, vector optimization, multicriteria optimization, or multiattribute optimization) is an area of MCDM, multiple-criteria decision making that is concerned ...
. 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 f_1 is the most important, objective f_2 is the next most important, and so on. Lexicographic optimization presumes that the decision-maker prefers even a very small increase in f_1, to even a very large increase in f_2, f_3, f_4, etc. Similarly, the decision-maker prefers even a very small increase in f_2, to even a very large increase in f_3, f_4, etc. In other words, the decision-maker has lexicographic preferences, ranking the possible solutions according to a
lexicographic order In mathematics, the lexicographic or lexicographical order (also known as lexical order, or dictionary order) is a generalization of the alphabetical order of the dictionaries to sequences of ordered symbols or, more generally, of elements of a ...
of their objective function values. Lexicographic optimization is sometimes called preemptive optimization, 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 f_1 denotes safety and f_2 denotes profits. As another example, 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: \begin \operatorname \max && f_1(x), f_2(x), \ldots, f_n(x) \\ \text && x\in X \end where f_1,\ldots, f_n are the functions to maximize, ordered from the most to the least important; x is the vector of decision variables; and X is the ''feasible set'' - the set of possible values of x . A lexicographic minimization problem can be defined analogously.


Algorithms

There are several algorithms for solving lexicographic optimization problems.


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: * For t = 1,...,n do **Solve the following single-objective problem: \begin \max ~~~ f_t(x) \\ \text ~~~ &x\in X, \\ &f_k(x) \geq z_k \text k \text 1, \ldots, t-1. \end **If the problem is infeasible or unbounded, stop and declare that there is no solution. **Otherwise, put the value of the optimal solution in z_t and continue. *End for So, in the first iteration, we find the maximum feasible value of the most important objective f_1(x) , and put this maximum value in z_1 . In the second iteration, we find the maximum feasible value of the second-most important objective f_2(x) , with the additional constraint that the most important objective must keep its maximum value of z_1 ; 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 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: \begin \operatorname \max && c_1\cdot x, c_2\cdot x, \ldots, c_n \cdot x \\ \text && A\cdot x \leq b, x\geq 0 \end where c_1,\ldots, c_n are vectors representing the linear objectives to maximize, ordered from the most to the least important; x is the vector of decision variables; and the feasible set is determined by the matrix A and the vector b . Isermann extended the theory of linear programming duality to lexicographic linear programs, and developed a lexicographic
simplex algorithm In mathematical optimization, Dantzig's simplex algorithm (or simplex method) is a popular algorithm for linear programming. The name of the algorithm is derived from the concept of a simplex and was suggested by T. S. Motzkin. Simplices are ...
. In contrast to the sequential algorithm, this simplex algorithm considers all objective functions simultaneously.


Weighted average for linear objectives

Sherali and Soyster prove that, for any linear lexicographic optimization problem, there exist a set of weights w_1 > w_2 > \cdots > w_n such that the set of lexicographically-optimal solutions is identical to the set of solutions to the following single-objective problem: \begin \max && w_1 f_1(x) + \cdots + w_n f_n(x) \\ \text && x\in X \end One way to compute the weights is given by Yager. 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 w_t of f_t(x) is set to approximately d^t . This guarantees that maximizing the weighted sum \sum_t w_t f_t(x) is equivalent to lexicographic maximization. Cococcioni, Pappalardo and Sergeyev show that, given a computer that can make numeric computations with
infinitesimals In mathematics, an infinitesimal number is a non-zero quantity that is closer to 0 than any non-zero real number is. The word ''infinitesimal'' comes from a 17th-century Modern Latin coinage ''infinitesimus'', which originally referred to the " ...
, it is possible to choose weights that are infinitesimals (specifically: w_1=1 ; w_2 is infinitesimal; w_3 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 In mathematical optimization, Dantzig's simplex algorithm (or simplex method) is a popular algorithm for linear programming. The name of the algorithm is derived from the concept of a simplex and was suggested by T. S. Motzkin. Simplices are ...
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 x^1 and x^2 are two optimal solutions, then their value must be the same, that is, f_i(x^1) = f_i(x^2) for all i\in . Moreover, if the feasible domain is a
convex set In geometry, a set of points is convex if it contains every line segment between two points in the set. For example, a solid cube (geometry), cube is a convex set, but anything that is hollow or has an indent, for example, a crescent shape, is n ...
, 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 f_1,\ldots, f_n of functions to optimize, for all ''t'' in 1,...,''n'', define f_ := \sum_^t f_i = 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: \begin \operatorname \max && f_(x), f_(x), \ldots, f_(x) \\ \text && x\in X \end 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.


References

{{reflist Multiple-criteria decision analysis Optimization algorithms and methods