CSC304 Lecture 20 Fair Division 1: Cake-Cutting [Image and - - PowerPoint PPT Presentation

csc304 lecture 20
SMART_READER_LITE
LIVE PREVIEW

CSC304 Lecture 20 Fair Division 1: Cake-Cutting [Image and - - PowerPoint PPT Presentation

CSC304 Lecture 20 Fair Division 1: Cake-Cutting [Image and Illustration Credit: Ariel Procaccia] CSC304 - Nisarg Shah 1 Announcements Plan for the rest of the course Fri, Nov 29 lecture o Last lecture that covers new material Mon,


slide-1
SLIDE 1

CSC304 Lecture 20

Fair Division 1: Cake-Cutting

[Image and Illustration Credit: Ariel Procaccia]

CSC304 - Nisarg Shah 1

slide-2
SLIDE 2

Announcements

CSC304 - Nisarg Shah 2

  • Plan for the rest of the course

➢ Fri, Nov 29 lecture

  • Last lecture that covers new material

➢ Mon, Dec 2 tutorial

  • Going over midterm 2 solutions?

➢ Wed, Dec 4 lecture

  • Review

➢ Thu, Dec 5 tutorial

  • Make-up Monday
  • GB 248 (everyone), 3-4pm
  • Going over assignment 3 solutions
slide-3
SLIDE 3

Cake-Cutting

CSC304 - Nisarg Shah 3

  • A heterogeneous, divisible good

➢ Heterogeneous: it may be valued

differently by different individuals

➢ Divisible: we can share/divide

it between individuals

  • Represented as [0,1]

➢ Almost without loss of generality

  • Set of players 𝑂 = {1, … , 𝑜}
  • Piece of cake 𝑌 ⊆ [0,1]

➢ A finite union of disjoint intervals

slide-4
SLIDE 4

Agent Valuations

CSC304 - Nisarg Shah 4

  • Each player 𝑗 has a valuation 𝑊

𝑗 that

is very much like a probability distribution over [0,1]

  • Additive: For 𝑌 ∩ 𝑍 = ∅,

𝑊

𝑗 𝑌 + 𝑊 𝑗 𝑍 = 𝑊 𝑗 𝑌 ∪ 𝑍

  • Normalized: 𝑊

𝑗

0,1 = 1

  • Divisible: ∀𝜇 ∈ [0,1] and 𝑌,

∃𝑍 ⊆ 𝑌 s.t. 𝑊

𝑗 𝑍 = 𝜇𝑊 𝑗(𝑌)

𝛽 𝜇𝛽 𝛽 β β

𝛽 + 𝛾

slide-5
SLIDE 5

Fairness Goals

CSC304 - Nisarg Shah 5

  • Allocation: disjoint partition 𝐵 = (𝐵1, … , 𝐵𝑜)

➢ 𝐵𝑗 = piece of the cake given to player 𝑗

  • Desired fairness properties:

➢ Proportionality (Prop):

∀𝑗 ∈ 𝑂: 𝑊

𝑗 𝐵𝑗 ≥ 1

𝑜

➢ Envy-Freeness (EF):

∀𝑗, 𝑘 ∈ 𝑂: 𝑊

𝑗 𝐵𝑗 ≥ 𝑊 𝑗(𝐵𝑘)

slide-6
SLIDE 6

Fairness Goals

CSC304 - Nisarg Shah 6

  • Prop: ∀𝑗 ∈ 𝑂: 𝑊

𝑗 𝐵𝑗 ≥

Τ 1 𝑜

  • EF: ∀𝑗, 𝑘 ∈ 𝑂: 𝑊

𝑗 𝐵𝑗 ≥ 𝑊 𝑗 𝐵𝑘

  • Question: What is the relation between

proportionality and EF?

1.

Prop ⇒ EF

2.

EF ⇒ Prop

3.

Equivalent

4.

Incomparable

slide-7
SLIDE 7

CUT-AND-CHOOSE

CSC304 - Nisarg Shah 7

  • Algorithm for 𝑜 = 2 players
  • Player 1 divides the cake into two pieces 𝑌, 𝑍 s.t.

𝑊

1 𝑌 = 𝑊 1 𝑍 =

Τ 1 2

  • Player 2 chooses the piece she prefers.
  • This is envy-free and therefore proportional.

➢ Why?

slide-8
SLIDE 8

Input Model

CSC304 - Nisarg Shah 8

  • How do we measure the “time complexity” of a

cake-cutting algorithm for 𝑜 players?

  • Typically, time complexity is a function of the

length of input encoded as binary.

  • Our input consists of functions 𝑊

𝑗, which require

infinite bits to encode.

  • We want running time as a function of 𝑜.
slide-9
SLIDE 9

Robertson-Webb Model

CSC304 - Nisarg Shah 9

  • We restrict access to valuation 𝑊

𝑗 through two

types of queries:

➢ Eval𝑗(𝑦, 𝑧) returns 𝛽 = 𝑊

𝑗

𝑦, 𝑧

➢ Cut𝑗(𝑦, 𝛽) returns any 𝑧 such that 𝑊

𝑗

𝑦, 𝑧 = 𝛽

  • If 𝑊

𝑗

𝑦, 1 < 𝛽, return 1.

𝑦 𝑧

𝛽

eval output cut output

slide-10
SLIDE 10

Robertson-Webb Model

CSC304 - Nisarg Shah 10

  • Two types of queries:

➢ Eval𝑗 𝑦, 𝑧 = 𝑊

𝑗

𝑦, 𝑧

➢ Cut𝑗 𝑦, 𝛽 = 𝑧 s.t. 𝑊

𝑗

𝑦, 𝑧 = 𝛽

  • Question: How many queries are needed to find an

EF allocation when 𝑜 = 2?

  • Answer: 2
slide-11
SLIDE 11

DUBINS-SPANIER

CSC304 - Nisarg Shah 11

  • Protocol for finding a proportional allocation for 𝑜

players

  • Referee starts at 0, and moves a knife to the right.
  • Repeat: When the piece to the left of the knife is

worth 1/𝑜 to some player, the player shouts “stop”, gets that piece, and exits.

  • The last player gets the remaining piece.
slide-12
SLIDE 12

DUBINS-SPANIER

12

1/3 1/3 ≥ 1/3

CSC304 - Nisarg Shah

slide-13
SLIDE 13

DUBINS-SPANIER

CSC304 - Nisarg Shah 13

  • Robertson-Webb model? Cut-Eval queries?

➢ Moving knife is not really needed.

  • At each stage, we want to find the remaining player

that has value 1/𝑜 from the smallest next piece.

➢ Ask each remaining player a cut query to mark a point

where her value is 1/𝑜 from the current point.

➢ Directly move the knife to the leftmost mark, and give

that piece to that player.

slide-14
SLIDE 14

VISUAL PROOF OF PROPORTIONALITY

CSC304 - Nisarg Shah 14

slide-15
SLIDE 15

VISUAL PROOF OF PROPORTIONALITY

CSC304 - Nisarg Shah 15

Τ 1 3

slide-16
SLIDE 16

VISUAL PROOF OF PROPORTIONALITY

CSC304 - Nisarg Shah 16

Τ 1 3 Τ 1 3

slide-17
SLIDE 17

VISUAL PROOF OF PROPORTIONALITY

CSC304 - Nisarg Shah 17

Τ 1 3 Τ 1 3 ≥ Τ 1 3

slide-18
SLIDE 18

DUBINS-SPANIER

CSC304 - Nisarg Shah 18

  • Question: What is the complexity of the Dubins-

Spanier protocol in the Robertson-Webb model?

1.

Θ 𝑜

2.

Θ 𝑜 log 𝑜

3.

Θ 𝑜2

4.

Θ 𝑜2 log 𝑜

slide-19
SLIDE 19

EVEN-PAZ (RECURSIVE)

CSC304 - Nisarg Shah 19

  • Input: Interval [𝑦, 𝑧], number of players 𝑜

➢ For simplicity, assume 𝑜 = 2𝑙 for some 𝑙

  • If 𝑜 = 1, give [𝑦, 𝑧] to the single player.
  • Otherwise, let each player 𝑗 mark 𝑨𝑗 s.t.

𝑊

𝑗

𝑦, 𝑨𝑗 = 1 2 𝑊

𝑗

𝑦, 𝑧

  • Let 𝑨∗ be mark 𝑜/2 from the left.
  • Recurse on [𝑦, 𝑨∗] with the left 𝑜/2 players, and on [𝑨∗, 𝑧]

with the right 𝑜/2 players.

slide-20
SLIDE 20

EVEN-PAZ

CSC304 - Nisarg Shah 20

slide-21
SLIDE 21

EVEN-PAZ

CSC304 - Nisarg Shah 21

  • Theorem: EVEN-PAZ returns a Prop allocation.
  • Inductive Proof:

➢ Hypothesis: With 𝑜 players, EVEN-PAZ ensures that for

each player 𝑗, 𝑊

𝑗 𝐵𝑗 ≥

Τ 1 𝑜 ⋅ 𝑊

𝑗

𝑦, 𝑧

  • Prop follows because initially 𝑊

𝑗

𝑦, 𝑧 = 𝑊

𝑗

0,1 = 1

➢ Base case: 𝑜 = 1 is trivial. ➢ Suppose it holds for 𝑜 = 2𝑙−1. We prove for 𝑜 = 2𝑙. ➢ Take the 2𝑙−1 left players.

  • Every left player 𝑗 has 𝑊

𝑗

𝑦, 𝑨∗ ≥ Τ 1 2 𝑊

𝑗

𝑦, 𝑧

  • If it gets 𝐵𝑗, by induction, 𝑊

𝑗 𝐵𝑗 ≥ 1 2𝑙−1 𝑊 𝑗

𝑦, 𝑨∗ ≥

1 2𝑙 𝑊 𝑗

𝑦, 𝑧

slide-22
SLIDE 22

EVEN-PAZ

CSC304 - Nisarg Shah 22

  • Theorem: EVEN-PAZ uses 𝑃 𝑜 log 𝑜 queries.
  • Simple Proof:

➢ Protocol runs for log 𝑜 rounds. ➢ In each round, each player is asked one cut query. ➢ QED!

slide-23
SLIDE 23

Complexity of Proportionality

CSC304 - Nisarg Shah 23

  • Theorem [Edmonds and Pruhs, 2006]: Any

proportional protocol needs Ω(𝑜 log 𝑜) operations in the Robertson-Webb model.

  • Thus, the EVEN-PAZ protocol is (asymptotically)

provably optimal!

slide-24
SLIDE 24

Envy-Freeness?

CSC304 - Nisarg Shah 24

  • “I suppose you are also going to give such cute

algorithms for finding envy-free allocations?”

  • Bad luck. For 𝑜-player EF cake-cutting:

➢ [Brams and Taylor, 1995] give an unbounded EF protocol. ➢ [Procaccia 2009] shows Ω 𝑜2 lower bound for EF. ➢ Last year, the long-standing major open question of

“bounded EF protocol” was resolved!

➢ [Aziz and Mackenzie, 2016]: 𝑃(𝑜𝑜𝑜𝑜𝑜𝑜

) protocol!

  • Yes, it’s not a typo!
slide-25
SLIDE 25

Next Lecture

CSC304 - Nisarg Shah 25

  • More desiderata
  • Allocation of indivisible goods