Proportional cake-cutting

Last updated

A proportional cake-cutting is a kind of fair cake-cutting. It is a division of a heterogeneous resource ("cake") that satisfies the proportionality criterion, namely, that every partner feels that his allocated share is worth at least 1/n of the total.

Contents

Two assumptions are usually made when proportionality is discussed:

Formal definitions

The cake is denoted by . There are people. Each person has a value function . A partition of the cake, , is called proportional if:

for every person .

Procedures

For two people, divide and choose is the classic solution. One person divides the resource into what they believe are equal halves, and the other person chooses the "half" they prefer. The non-atomicity assumption guarantees that the cutter can indeed cut the cake to two equal pieces; the additivity assumption guarantees that both partners value their pieces as at least 1/2.

There are many ways to extend this procedure to more than 2 people. Each way has its own advantages and disadvantages.

Simple procedures

Last diminisher is the earliest proportional division procedure developed for n people:

By induction, it is possible to prove that each partner following the rules is guaranteed to get a value of 1/n, regardless of what the other partners do. This is a discrete procedure that can be played in turns. In the worst case, actions are needed: one action per player per turn. However, most of these actions can be done on paper; only n  1 cuts of the cake are actually needed. Hence, if the cake is contiguous then it is possible to guarantee that each piece is contiguous.

Dubins–Spanier moving-knife procedure is a continuous-time version of Last Diminisher. [1]

Fink protocol is an algorithm that continues the division to successively smaller "equal" portions.

The advantage of this protocol is that it can be executed online – as new partners enter the party, the existing division is adjusted to accommodate them, without needing to restart the entire division process. The disadvantage is that the each partner receives a large number of disconnected pieces rather than a single connected piece.

Lone divider is a procedure based on an equal partition made by a single agent. Its advantage is that it can be generalized to yield a symmetric fair cake-cutting.

See also: [2]

Recursive halving

Using a divide-and-conquer strategy, it is possible to achieve a proportional division in time O(n log n). [3] For simplicity the procedure is described here for an even number of partners, but it can be easily adapted to any number of partners:

It is possible to prove by induction that every partner playing by the rules is guaranteed a piece with a value of at least 1/n, regardless of what the other partners do.

Thanks to the divide-and-conquer strategy, the number of iterations is only O(log n), in contrast to O(n) in the Last Diminisher procedure. In each iteration, each partner is required to make a single mark. Hence, the total number of marks required is O(n log n).

This algorithm has a randomized version which can be used to reduce the number of marks; see Even-Paz algorithm.

Selection procedures

A different approach to cake-cutting is to let every partner draw a certain number of pieces depending on the number of partners, p(n), and give each partner one of his selected pieces, such that the pieces do not overlap.

As a simple example of a selection procedure, assume the cake is a 1-dimensional interval and that each partner wants to receive a single contiguous interval. Use the following protocol:

  1. Each partner privately partitions the cake to n intervals that he considers to be of equal value; these are called candidate pieces.
  2. The protocol orders the n^2 candidates by increasing order of their eastern (from west to east) and select the interval with the most western eastern end. This interval is called a final piece.
  3. The protocol gives the final piece to its owner and remove all candidates intersected by it. Step #2 is then repeated with the remaining intervals of the remaining n  1 partners.

The selection rule in step #2 guarantees that, at each iteration, at most one interval of every partner is removed. Hence, after each iteration the number of intervals per partners is still equal to the number of partners, and the process can proceed until every partner receives an interval. [4]

This protocol requires each partner to answer n queries so the query complexity is O(n2), similarly to Last Diminisher.

Randomized versions

It is possible to use randomization in order to reduce the number of queries. The idea is that each partner reports, not the entire collection of n candidates but only a constant number d of candidates, picked at random. The query complexity is O(n), which is obviously the best possible. In many cases, it will still be possible to give each partner a single candidate such that the candidates do not overlap. However, there are scenarios in which such an allocation will be impossible.

We can still cut a cake using O(n) queries if we make several compromises:

  • Instead of guaranteeing full proportionality, we guarantee partial proportionality, i.e. each partner receives a certain constant fraction f(n) of the total value, where f(n)<1/n.
  • Instead of giving each partner a single contiguous piece, we give each partner a union of one or more disjoint pieces.

The general scheme is as follows: [5]

  1. Each partner privately partitions the cake to an pieces of equal subjective value. These n⋅an pieces are called candidate pieces.
  2. Each partner picks 2d candidate pieces uniformly at random, with replacement. The candidates are grouped into d pairs, which the partner reports to the algorithm. These n⋅d pairs are called quarterfinal brackets.
  3. From each quarterfinal bracket, the algorithm selects a single piece – the piece that intersects the fewer number of other candidate pieces. These n⋅d pieces are called semifinal pieces.
  4. For each partner, the algorithm selects a single piece; they are called final pieces. The final pieces are selected such that each point of the cake is covered by at most 2 final pieces (see below). If this succeeds, proceed to step #5. If this fails, start over at step #1.
  5. Each part of the cake which belongs to only a single final piece, is given to the owner of that piece. Each part of the cake which belongs to two final pieces, is divided proportionally by any deterministic proportional division algorithm.

The algorithm guarantees that, with probability O(1a2), each partner receives at least half of one of his candidate pieces, which implies (if the values are additive) a value of at least 1/2an. There are O(n) candidate pieces and O(n) additional divisions in step #5, each of which takes O(1) time. Hence the total run-time of the algorithm is O(n).

The main challenge in this scheme is selecting the final pieces in step #4. For details, see Edmonds–Pruhs protocol.

Hardness results

The hardness results are stated in terms of the Robertson–Webb query model, i.e., they relate to procedures asking the agents two types of queries: "Evaluate" and "Mark".

Every deterministic proportional division procedure for n≥3 partners must use at least n queries, even if all valuations are identical. [3]

Moreover, every deterministic or randomized proportional division procedure assigning each person a contiguous piece must use Ω(n log n) actions. [6]

Moreover, every deterministic proportional division procedure must use Ω(n log n) queries, even if the procedure is allowed to assign to each partner a piece that is a union of intervals, and even if the procedure is allowed to only guarantee approximate fairness. The proof is based on lower bounding the complexity to find, for a single player, a piece of cake that is both rich in value, and thin in width. [7]

These hardness results imply that recursive halving is the fastest possible algorithm for achieving full proportionality with contiguous pieces, and it is the fastest possible deterministic algorithm for achieving even partial proportionality and even with disconnected pieces. The only case in which it can be improved is with randomized algorithms guaranteeing partial proportionality with disconnected pieces.

If the players are able to cut with only finite precision, then the Ω(n log n) lower bound also includes randomized protocols. [7]

The following table summarizes the known results: [5]

Proportionality
(full/partial)
Pieces
(contiguous/disjoint)
Protocol type
(deterministic/randomized)
Queries
(exact/approximate)
#queries
fullcontiguousdet.exactO(n log n) [3]
Ω(n log n) [6]
fullcontiguousdet.approximateΩ(n log n) [6]
fullcontiguousrand.exactO(n log n) [3]
Ω(n log n) [6]
fullcontiguousrand.approximateΩ(n log n) [6]
fulldisconnecteddet.exactO(n log n) [3]
Ω(n log n) [7]
fulldisconnecteddet.approximateΩ(n log n) [7]
fulldisconnectedrand.exactO(n log n) [3]
fulldisconnectedrand.approximateΩ(n log n) [7]
partialcontiguousdet.exactO(n log n) [3]
Ω(n log n) [7]
partialcontiguousdet.approximateΩ(n log n) [7]
partialcontiguousrand.exactO(n log n) [3]
partialcontiguousrand.approximateΩ(n log n) [7]
partialdisconnecteddet.exactO(n log n) [3]
Ω(n log n) [7]
partialdisconnecteddet.approximateΩ(n log n) [7]
partialdisconnectedrand.exactO(n) [5]
partialdisconnectedrand.weakly approx.
(error independent
of value)
O(n) [5]
partialdisconnectedrand.approximateΩ(n log n) [7]


Variants

Different entitlements

The proportionality criterion can be generalized to situations in which the entitlements of the partners are not equal. For example, the resource may belong to two shareholders such that Alice holds 8/13 and George holds 5/13. This leads to the criterion of weighted proportionality (WPR): there are several weights wi that sum up to 1, and every partner i should receive at least a fraction wi of the resource by their own valuation. Several algorithms can be used to find a WPR division. The main challenge is that the number of cuts may be large, even when there are only two partners. See proportional cake-cutting with different entitlements.

Super-proportional division

A super-proportional division is a division in which each partner receives strictly more than 1/n of the resource by their own subjective valuation.

Of course such a division does not always exist: when all partners have exactly the same value functions, the best we can do is give each partner exactly 1/n. So a necessary condition for the existence of a super-proportional division is that not all partners have the same value measure.

The surprising fact is that, when the valuations are additive and non-atomic, this condition is also sufficient. I.e., when there are at least two partners whose value function is even slightly different, then there is a super-proportional division in which all partners receive more than 1/n. See super-proportional division for details.

Adjacency constraint

In addition to the usual constraint that all pieces must be connected, in some cases there are additional constraints. In particular, when the cake to divide is a disputed territory lying among several countries, it may be required that the piece allocated to each country is adjacent to its current location. A proportional division with this property always exists and can be found by combining the Last Diminisher protocol with geometric tricks involving conformal mappings. See Hill–Beck land division problem.

Two-dimensional geometric constraints

When the "cake" to be divided is two-dimensional, such as a land-estate or an advertisement space in print or electronic media, it is often required that the pieces satisfy some geometric constraints, in addition to connectivity. For example, it may be required that each piece be a square, a fat rectangle, or generally a fat object. With such fatness constraints, a proportional division usually does not exist, but a partially-proportional division usually exists and can be found by efficient algorithms. [8]

Economically efficient division

In addition to being proportional, it is often required that the division be economically efficient, i.e., maximize the social welfare (defined as the sum of the utilities of all agents).

For example, consider a cake which contains 500 gram chocolate and 500 gram vanilla, divided between two partners one of whom wants only the chocolate and the other wants only the vanilla. Many cake-cutting protocols will give each agent 250 gram chocolate and 250 gram vanilla. This division is proportional because each partner receives 0.5 of his total value so the normalized social welfare is 1. However, this partition is very inefficient because we could give all the chocolate to one partner and all the vanilla to the other partner, achieving a normalized social welfare of 2.

The optimal proportional division problem is the problem of finding a proportional allocation that maximizes the social welfare among all possible proportional allocations. This problem currently has a solution only for the very special case where the cake is a 1-dimensional interval and the utility density functions are linear (i.e. u(x) = Ax +  B). In general the problem is NP-hard. When the utility functions are not normalized (i.e. we allow each partner to have a different value for the whole cake), the problem is even NP-hard to approximate within a factor of 1/n. [9]

Truthful division

Truthfulness is not a property of a division but rather a property of the protocol. All protocols for proportional division are weakly truthful in that each partner acting according to his true valuation is guaranteed to get at least 1/n (or 1/an in case of a partially proportional protocol) regardless of what the other partners do. Even if all other partners make a coalition with the only intent to harm him, he will still receive his guaranteed proportion. [10]

However, most of the protocols are not strongly truthful in that some partners may have an incentive to lie in order to receive even more than the guaranteed share. This is true even for the simple divide and choose protocol: if the cutter knows the preferences of the chooser, he can cut a piece which the chooser values as slightly less than 1/2, but which the cutter himself values as much more than 1/2.

There are truthful mechanisms for achieving a perfect division; since a perfect division is proportional, these are also truthful mechanisms for proportional division.

These mechanisms can be extended to provide a super-proportional division when it exists: [11]

  1. Ask each partner to report his entire value measure.
  2. Pick a random partition (see [11] for more details).
  3. If the random partition happens to be super-proportional according to the reported value measures, then implement it. Otherwise, use a truthful mechanism for providing a perfect division.

When a super-proportional division exists, there is a positive chance that it will be picked in step 2. Hence the expected value of every truthful partner is strictly more than 1/n. To see that the mechanism is truthful, consider three cases: (a) If the picked partition is truly super-proportional, then the only possible result of lying is to mislead the mechanism to think that it is not; this will make the mechanism implement a perfect division, which will be worse for all partners including the liar. (b) If the picked partition is not super-proportional because it gives only the liar a value of 1/n or less, then the only effect of lying is to make the mechanism think that the partition is super-proportional and implement it, which only harms the liar himself. (c) If the picked partition is truly not super-proportional because it gives another partner a value of 1/n or less, then lying has no effect at all since the partition will not be implemented in any case.

Proportional division of chores

When the resource to divide is undesirable (like in chore division), a proportional division is defined as a division giving each person at most 1/n of the resource (i.e. the sign of inequality is inversed).

Most algorithms for proportional division can be adapted to chore division in a straightforward way.

See also

Related Research Articles

Fair division is the problem in game theory of dividing a set of resources among several people who have an entitlement to them so that each person receives their due share. That problem arises in various real-world settings such as division of inheritance, partnership dissolutions, divorce settlements, electronic frequency allocation, airport traffic management, and exploitation of Earth observation satellites. It is an active research area in mathematics, economics, dispute resolution, etc. The central tenet of fair division is that such a division should be performed by the players themselves, maybe using a mediator but certainly not an arbiter as only the players really know how they value the goods.

An envy-free cake-cutting is a kind of fair cake-cutting. It is a division of a heterogeneous resource ("cake") that satisfies the envy-free criterion, namely, that every partner feels that their allocated share is at least as good as any other share, according to their own subjective valuation.

Divide and choose is a procedure for fair division of a continuous resource, such as a cake, between two parties. It involves a heterogeneous good or resource and two partners who have different preferences over parts of the cake. The protocol proceeds as follows: one person cuts the cake into two pieces; the other person selects one of the pieces; the cutter receives the remaining piece.

Chore division is a fair division problem in which the divided resource is undesirable, so that each participant wants to get as little as possible. It is the mirror-image of the fair cake-cutting problem, in which the divided resource is desirable so that each participant wants to get as much as possible. Both problems have heterogeneous resources, meaning that the resources are nonuniform. In cake division, cakes can have edge, corner, and middle pieces along with different amounts of frosting. Whereas in chore division, there are different chore types and different amounts of time needed to finish each chore. Similarly, both problems assume that the resources are divisible. Chores can be infinitely divisible, because the finite set of chores can be partitioned by chore or by time. For example, a load of laundry could be partitioned by the number of articles of clothing and/or by the amount of time spent loading the machine. The problems differ, however, in the desirability of the resources. The chore division problem was introduced by Martin Gardner in 1978.

Exact division, also called consensus division, is a partition of a continuous resource ("cake") into some k pieces, such that each of n people with different tastes agree on the value of each of the pieces. For example, consider a cake which is half chocolate and half vanilla. Alice values only the chocolate and George values only the vanilla. The cake is divided into three pieces: one piece contains 20% of the chocolate and 20% of the vanilla, the second contains 50% of the chocolate and 50% of the vanilla, and the third contains the rest of the cake. This is an exact division (with k = 3 and n = 2), as both Alice and George value the three pieces as 20%, 50% and 30% respectively. Several common variants and special cases are known by different terms:

<span class="mw-page-title-main">Fair cake-cutting</span> Fair division problem

Fair cake-cutting is a kind of fair division problem. The problem involves a heterogeneous resource, such as a cake with different toppings, that is assumed to be divisible – it is possible to cut arbitrarily small pieces of it without destroying their value. The resource has to be divided among several partners who have different preferences over different parts of the cake, i.e., some people prefer the chocolate toppings, some prefer the cherries, some just want as large a piece as possible. The division should be unanimously fair – each person should receive a piece believed to be a fair share.

The last diminisher procedure is a procedure for fair cake-cutting. It involves a certain heterogenous and divisible resource, such as a birthday cake, and n partners with different preferences over different parts of the cake. It allows the n people to achieve a proportional division, i.e., divide the cake among them such that each person receives a piece with a value of at least 1/n of the total value according to his own subjective valuation. For example, if Alice values the entire cake as $100 and there are 5 partners then Alice can receive a piece that she values as at least $20, regardless of what the other partners think or do.

Edmonds–Pruhs protocol is a protocol for fair cake-cutting. Its goal is to create a partially proportional division of a heterogeneous resource among n people, such that each person receives a subset of the cake which that person values as at least 1/an of the total, where is some sufficiently large constant. It is a randomized algorithm whose running time is O(n) with probability close to 1. The protocol was developed by Jeff Edmonds and Kirk Pruhs, who later improved it in joint work with Jaisingh Solanki.

Efficient cake-cutting is a problem in economics and computer science. It involves a heterogeneous resource, such as a cake with different toppings or a land with different coverings, that is assumed to be divisible - it is possible to cut arbitrarily small pieces of it without destroying their value. The resource has to be divided among several partners who have different preferences over different parts of the cake, i.e., some people prefer the chocolate toppings, some prefer the cherries, some just want as large a piece as possible, etc. The allocation should be economically efficient. Several notions of efficiency have been studied:

The Even–Paz algorithm is an computationally-efficient algorithm for fair cake-cutting. It involves a certain heterogeneous and divisible resource, such as a birthday cake, and n partners with different preferences over different parts of the cake. It allows the n people to achieve a proportional division.

The Simmons–Su protocols are several protocols for envy-free division. They are based on Sperner's lemma. The merits of these protocols is that they put few restrictions on the preferences of the partners, and ask the partners only simple queries such as "which piece do you prefer?".

The fair pie-cutting problem is a variation of the fair cake-cutting problem, in which the resource to be divided is circular.

Equitable (EQ) cake-cutting is a kind of a fair cake-cutting problem, in which the fairness criterion is equitability. It is a cake-allocation in which the subjective value of all partners is the same, i.e., each partner is equally happy with his/her share. Mathematically, that means that for all partners i and j:

Utilitarian cake-cutting is a rule for dividing a heterogeneous resource, such as a cake or a land-estate, among several partners with different cardinal utility functions, such that the sum of the utilities of the partners is as large as possible. It is a special case of the utilitarian social choice rule. Utilitarian cake-cutting is often not "fair"; hence, utilitarianism is often in conflict with fair cake-cutting.

In the fair cake-cutting problem, the partners often have different entitlements. For example, the resource may belong to two shareholders such that Alice holds 8/13 and George holds 5/13. This leads to the criterion of weighted proportionality (WPR): there are several weights that sum up to 1, and every partner should receive at least a fraction of the resource by their own valuation.

The lone divider procedure is a procedure for proportional cake-cutting. It involves a heterogenous and divisible resource, such as a birthday cake, and n partners with different preferences over different parts of the cake. It allows the n people to divide the cake among them such that each person receives a piece with a value of at least 1/n of the total value according to his own subjective valuation.

Symmetric fair cake-cutting is a variant of the fair cake-cutting problem, in which fairness is applied not only to the final outcome, but also to the assignment of roles in the division procedure.

Truthful cake-cutting is the study of algorithms for fair cake-cutting that are also truthful mechanisms, i.e., they incentivize the participants to reveal their true valuations to the various parts of the cake.

In computer science, the Robertson–Webb (RW) query model is a model of computation used by algorithms for the problem of fair cake-cutting. In this problem, there is a resource called a "cake", and several agents with different value measures on the cake. The goal is to divide the cake among the agents such that each agent will consider his/her piece as "fair" by his/her personal value measure. Since the agents' valuations can be very complex, they cannot - in general - be given as inputs to a fair division algorithm. The RW model specifies two kinds of queries that a fair division algorithm may ask the agents: Eval and Cut. Informally, an Eval query asks an agent to specify his/her value to a given piece of the cake, and a Cut query asks an agent to specify a piece of cake with a given value.

References

  1. Dubins, Lester Eli; Spanier, Edwin Henry (1961). "How to Cut a Cake Fairly". The American Mathematical Monthly. 68 (1): 1–17. doi:10.2307/2311357. JSTOR   2311357.
  2. Tasnadi, Attila. "A new proportional procedure for the n-person cake-cutting problem" . Retrieved 24 September 2015.
  3. 1 2 3 4 5 6 7 8 9 Even, S.; Paz, A. (1984). "A note on cake cutting". Discrete Applied Mathematics. 7 (3): 285. doi: 10.1016/0166-218x(84)90005-2 .
  4. This selection procedure is similar to the Interval scheduling#Greedy polynomial solution)
  5. 1 2 3 4 Jeff Edmonds and Kirk Pruhs (2006). "Balanced Allocations of Cake". 2006 47th Annual IEEE Symposium on Foundations of Computer Science (FOCS'06). pp. 623–634. doi:10.1109/focs.2006.17. ISBN   978-0-7695-2720-8. S2CID   2091887.
  6. 1 2 3 4 5 Gerhard J. Woeginger and Jiri Sgall (2007). "On the complexity of cake cutting". Discrete Optimization. 4 (2): 213–220. doi: 10.1016/j.disopt.2006.07.003 .
  7. 1 2 3 4 5 6 7 8 9 10 11 Edmonds, Jeff (2006). "Cake cutting really is not a piece of cake". Proceedings of the seventeenth annual ACM-SIAM symposium on Discrete algorithm - SODA '06. pp. 271–278. CiteSeerX   10.1.1.412.7166 . doi:10.1145/1109557.1109588. ISBN   978-0898716054., Edmonds, Jeff (2011). "Cake cutting really is not a piece of cake". ACM Transactions on Algorithms. 7 (4): 1–12. CiteSeerX   10.1.1.146.1536 . doi:10.1145/2000807.2000819. S2CID   2440968.
  8. Segal-Halevi, Erel; Nitzan, Shmuel; Hassidim, Avinatan; Aumann, Yonatan (2017). "Fair and square: Cake-cutting in two dimensions". Journal of Mathematical Economics. 70: 1–28. arXiv: 1409.4511 . doi:10.1016/j.jmateco.2017.01.007. S2CID   1278209.
  9. Bei, Xiaohui; Chen, Ning; Hua, Xia; Tao, Biaoshuai; Yang, Endong (2012). "Optimal Proportional Cake Cutting with Connected Pieces". AAAI Conference Proceedings. Retrieved 2 November 2014.
  10. Steinhaus, Hugo (1948). "The problem of fair division". Econometrica. 16 (1): 101–4. JSTOR   1914289.
  11. 1 2 Mossel, Elchanan; Tamuz, Omer (2010). Truthful Fair Division. Lecture Notes in Computer Science. Vol. 6386. pp. 288–299. arXiv: 1003.5480 . Bibcode:2010LNCS.6386..288M. doi:10.1007/978-3-642-16170-4_25. ISBN   978-3-642-16169-8. S2CID   11732339.