Envy Minimization
   HOME

TheInfoList



OR:

In
computer science Computer science is the study of computation, automation, and information. Computer science spans theoretical disciplines (such as algorithms, theory of computation, information theory, and automation) to Applied science, practical discipli ...
and
operations research Operations research ( en-GB, operational research) (U.S. Air Force Specialty Code: Operations Analysis), often shortened to the initialism OR, is a discipline that deals with the development and application of analytical methods to improve deci ...
, the envy minimization problem is the problem of allocating discrete items among agents with different valuations over the items, such that the amount of
envy Envy is an emotion which occurs when a person lacks another's quality, skill, achievement, or possession and either desires it or wishes that the other lacked it. Aristotle defined envy as pain at the sight of another's good fortune, stirred b ...
is as small as possible. Ideally, from a fairness perspective, one would like to find an
envy-free item allocation Envy-free (EF) item allocation is a fair item allocation problem, in which the fairness criterion is envy-freeness - each agent should receive a bundle that they believe to be at least as good as the bundle of any other agent. Since the items are i ...
- an allocation in which no agent envies another agent. That is: no agent prefers the bundle allocated to another agent. However, with indivisible items this might be impossible. One approach for coping with this impossibility is to turn the problem to an
optimization problem In mathematics, computer science and economics, an optimization problem is the problem of finding the ''best'' solution from all feasible solutions. Optimization problems can be divided into two categories, depending on whether the variables ...
, in which the
loss function In mathematical optimization and decision theory, a loss function or cost function (sometimes also called an error function) is a function that maps an event or values of one or more variables onto a real number intuitively representing some "cost ...
is a function describing the amount of envy. In general, this optimization problem is
NP-hard In computational complexity theory, NP-hardness ( non-deterministic polynomial-time hardness) is the defining property of a class of problems that are informally "at least as hard as the hardest problems in NP". A simple example of an NP-hard pr ...
, since even deciding whether an envy-free allocation exists is equivalent to the
partition problem In number theory and computer science, the partition problem, or number partitioning, is the task of deciding whether a given multiset ''S'' of positive integers can be partitioned into two subsets ''S''1 and ''S''2 such that the sum of the numbers ...
. However, there are optimization algorithms that can yield good results in practice.


Defining the amount of envy

There are several ways to define the objective function (the amount of envy) for minimization. Some of them are: * The number of ''envious agents''; * The number of ''envy relations'' (- edges in the envy graph); * The maximum ''envy-ratio'', where the envy ratio of ''i'' in ''j'' in allocation ''X'' is defined as: \text(X,i,j) := \max\left(1, \right); so the ratio is 1 if ''i'' does not envy ''j'', and it is larger when ''i'' envies ''j''. **Similarly, one can consider the sum of envy-ratios, or their product. * The maximum, the sum or the product of the ''envy-difference''.


Minimizing the envy-ratio

With ''general valuations,'' any deterministic algorithm that minimizes the maximum envy-ratio requires a number of queries which is exponential in the number of goods in the worst case. With ''additive and identical valuations'': * The following greedy algorithm finds an allocation whose maximum envy-ratio is at most 1.4 times the optimum: *# Order the items by descending value; *# While there are more items, give the next item to an agent with the smallest total value. * There is a PTAS for max-envy-ratio minimization. Furthermore, when the number of players is constant, there is an
FPTAS A fully polynomial-time approximation scheme (FPTAS) is an algorithm for finding approximate solutions to function problems, especially optimization problems. An FPTAS takes as input an instance of the problem and a parameter ε > 0. It r ...
. With ''additive and different valuations'': * When the number of agents is part of the input, it is impossible to obtain in polynomial time an approximation factor better than 1.5, unless P=NP. * When the number of agents is constant (not a part of the input), there is an
FPTAS A fully polynomial-time approximation scheme (FPTAS) is an algorithm for finding approximate solutions to function problems, especially optimization problems. An FPTAS takes as input an instance of the problem and a parameter ε > 0. It r ...
for minimizing the maximum envy-ratio, and the product of envy-ratios. * When the number of agents equals the number of items, there is a polynomial-time algorithm.


Distributed envy minimization

In some cases, it is required to compute an envy-minimizing allocation in a distributed manner, i.e., each agent should compute his/her own allocation, in a way that guarantees that the resulting allocation is consistent. This problem can be solved by presenting it as an Asymmetric distributed constraint optimization problem (ADCOP) as follows. * Add a binary variable ''vij'' for each agent ''i'' and item ''j''. The variable value is "1" if the agent gets the item, and "0" otherwise. The variable is owned by agent ''i''. * To express the constraint that each item is given to at most one agent, add binary constraints for each two different variables related to the same item, with an infinite cost if the two variables are simultaneously "1", and a zero cost otherwise. * To express the constraint that all items must be allocated, add an ''n''-ary constraint for each item (where ''n'' is the number of agents), with an infinite cost if no variable related to this item is "1". The problem can be solved using the following local search algorithm. * All agents are ordered lexicographically (e.g. by their name or index). * Each agent also orders its variables lexicographically. * Each agent, in turn, claims any item that was not allocated to an agent with a higher priority ("claims" means that the agent assigns "1" to the corresponding variable). * After an agent has assigned all its variables (either 1 or 0), it sends the resulting assignment to the next agent in the lexicographic order. * The agents send to each other messages with their envy evaluation of the current assignment. * After receiving envy evaluations from other agents, the agent may decide to
backtrack BackTrack was a Linux distribution that focused on security, based on the Knoppix Linux distribution aimed at digital forensics and penetration testing use. In March 2013, the Offensive Security team rebuilt BackTrack around the Debian distr ...
on a variable; if there are no more variables to backtrack, the agent may backtrack to a previous agent. Once the first agent backtracks its first variable, the search has ended and the optimal allocation has been found.


Online minimization of the envy-difference

Sometimes, the items to allocate are not available all at once, but rather arrive over time in an online fashion. Each arriving item must be allocated immediately. An example application is the problem of a
food bank A food bank is a non-profit, charitable organization that distributes food to those who have difficulty purchasing enough to avoid hunger, usually through intermediaries like food pantries and soup kitchens. Some food banks distribute food direc ...
, which accepts food donations and must allocate them immediately to charities. Benade, Kazachkov, Procaccia and Psomas consider the problem of minimizing the maximum ''envy-difference'', where the valuations are normalized such that the value of each item is in ,1 Note that in the offline variant of this setting, it is easy to find an allocation in which the maximum envy-difference is 1 (such an allocation is called EF1; see
envy-free item allocation Envy-free (EF) item allocation is a fair item allocation problem, in which the fairness criterion is envy-freeness - each agent should receive a bundle that they believe to be at least as good as the bundle of any other agent. Since the items are i ...
for more details). However, in the online variant the envy-difference increases with the number of items. They show an algorithm in which the envy after ''T'' items is in O(\sqrt). Jiang, Kulkarni and Singla improve their envy bound using an algorithm for ''online two-dimensional discrepancy minimization''.


Other settings

Other settings in which envy minimization was studied are: *
Optimal tax Optimal tax theory or the theory of optimal taxation is the study of designing and implementing a tax that maximises a social welfare function subject to economic constraints. The social welfare function used is typically a function of individuals ...
. *
School choice School choice is a term for education options that allow students and families to select alternatives to public schools. The most common in the United States, by both the number of programs and by the number of participating students are scho ...
.{{Cite journal, last1=Abdulkadiroglu, first1=Atila, last2=Che, first2=Yeon-Koo, last3=Pathak, first3=Parag A., last4=Roth, first4=Alvin E., last5=Tercieux, first5=Olivier, date=2017-03-27, title=Minimizing Justified Envy in School Choice: The Design of New Orleans' OneApp, doi=10.3386/w23265 , s2cid=9497845 , url=https://www.nber.org/papers/w23265, language=en


References

Fair division protocols Optimization algorithms and methods