Search in Co-Wiki

Egalitarian item allocation

game-theory 2887 tokens 8 outbound links

Egalitarian item allocation

The special case in which the value of each item j to each agent is either 0 or some constant vj is called the santa claus problem: santa claus has a fixed set of gifts, and wants to allocate them among children such that the least-happy child is as happy as possible.

Some related problems are:

Normalization There are two variants of the egalitarian rule:

The two rules are equivalent when the agents' valuations are already normalized, that is, all agents assign the same value to the set of all items. However, they may differ with non-normalized valuations. For example, if there are four items, Alice values them at 1,1,1,1 and George values them at 3,3,3,3, then the absolute-leximin rule would give three items to Alice and one item to George, since the utility profile in this case is (3,3), which is optimal. In contrast, the relative-leximin rule would give two items to each agent, since the normalized utility profile in this case, when the total value of both agents is normalized to 1, is (0.5,0.5), which is optimal.

Exact algorithms Although the general problem is NP-hard, small instances can be solved exactly by constraint programming techniques.

Randomized algorithms Demko and Hill present a randomized algorithm that attains an egalitarian item allocation in expectation.

Approximation algorithms Below, n is the number of agents and m is the number of items.

For the special case of the santa claus problem:

For the general case, for agents with additive valuations:

For agents with submodular utility functions:

Ordinally egalitarian allocations The standard egalitarian rule requires that each agent assigns a numeric value to each object. Often, the agents only have ordinal utilities. There are two generalizations of the egalitarian rule to ordinal settings.

1. Suppose agents have an ordinal ranking over the set of bundles. Given any discrete allocation, for any agent i, define r(i) as the rank of agent i's bundle, so that r(i)=1 if i got his best bundle, r(i)=2 if i got his second-best bundle, etc. This r is a vector of size n (the number of agents). An ordinally-egalitarian allocation is one that minimizes the largest element in r. The [[decreasing-demand-procedure]] finds an ordinally-egalitarian allocation for any number of agents with any ordering of bundles.

2. Suppose agents have an ordinal ranking over the set of items. Given any discrete or fractional allocation, for any agent i and positive integer k, define t(i,k) as the total fraction that agent i receives from his k topmost indifference classes. This t is a vector of size at most nm*, where *n* is the number of agents and *m* is the number of items. An ordinally-egalitarian allocation is one that maximizes the vector t in the leximin order. The [[simultaneous-eating-algorithm|Simultaneous Eating algorithm**]] with equal eating speeds is the unique rule that returns an ordinally-egalitarian allocation.

Online egalitarian allocation In the online setting, the items come one by one. Each item must be allocated immediately when it arrives.

Kawase and Sumita study two variants: for the adversarial variant, they give an algorithm with competitive ratio 1/n, and show that it is the best possible. For the i.i.d. variant, they give a nearly-optimal algorithm.

Comparison to other fairness criteria ### Proportionality Whenever a proportional allocation exists, the relative-leximin allocation is proportional. This is because, in a proportional allocation, the smallest relative value of an agent is at least 1/n, so the same must hold when we maximize the smallest relative value. However, the absolute-leximin allocation might not be proportional, as shown in the example above.

Envy-freeness 1. When all agents have identical valuations with nonzero marginal utilities, any relative-leximin allocation is PO and EFX.

2. For two agents with additive valuations, any relative-leximin allocation is EF1. 3. When all agents have valuations that are matroid rank functions (i.e., submodular with binary marginals), the set of absolute-leximin allocations is equivalent to the set of max-product allocations; all such allocations are max-sum and EF1.***'

4. In the context of indivisible allocation of chores (items with negative utilities), with 3 or 4 agents with additive valuations, any leximin-optimal allocation is PROP1 and PO; with n agents with general identical valuations, any leximin-optimal allocation is EFX.

maximin-share When all agents have identical valuations, the egalitarian allocation, by definition, gives each agent at least his/her maximin share.

However, when agents have different valuations, the problems are different. The maximin-share allocation is a satisfaction problem: the goal is to guarantee that each agent receives a value above the identical-valuations threshold. In contrast, the egalitarian allocation is an optimization problem: the goal is to give each agent as high value as possible. In some instances, the resulting allocations might be very different. For example, suppose there are four goods and three agents who value them at {3,0,0,0}, {3-2ε,ε,ε,0} and {1-2ε,1,1,2ε} (where ε is a small positive constant). Note that the valuations are normalized (the total value is 3), so absolute-leximin and relative-leximin are equivalent.

The leximin allocation yields the utility profile (3, 2ε, 2ε): the first item must go to agent 1 - otherwise the smallest utility is 0. Then, the second and third items must go to agent 2 - otherwise the next-smallest utility is ε or less; so agent 3 gets only the last item. The maximin-share values of the agents are 0, ε, 1. Therefore, a maximin-share allocation must give agent 3 one of the first three items; some possible utility profiles in this case are (0, , 1) or (3, ε, 1+). The example can be extended to 1-out-of-k MMS for any k>3. There are k+1 goods and three agents who value them at {k, 0, ..., 0}, {k-(k-1)ε, ε, ..., ε, 0} and {1-, 1, 1, ..., kε}. The leximin utility profile must be (k, kε, kε) while the 1-out-of-k MMS of agent 3 is 1.

Real-world application The leximin rule has been used for fairly allocating unused classrooms in public schools to charter schools.

References