auctions
play

Auctions Jos e M Vidal Department of Computer Science and - PowerPoint PPT Presentation

Auctions Auctions Jos e M Vidal Department of Computer Science and Engineering University of South Carolina March 17, 2010 Abstract We introduce auctions for multiagent systems. Chapter 7. Auctions Valuations Valuations 1 Simple


  1. Auctions Auctions Jos´ e M Vidal Department of Computer Science and Engineering University of South Carolina March 17, 2010 Abstract We introduce auctions for multiagent systems. Chapter 7.

  2. Auctions Valuations Valuations 1 Simple Auctions 2 Analysis of Auctions Auction Parameters Combinatorial Auctions 3 Centralized Winner Determination Distributed Winner Determination Bidding Languages Preference Elicitation

  3. Auctions Valuations Valuation Private value. Common value. Correlated value.

  4. Auctions Valuations Valuation What type of value? Private value. Non-transferable tickets to a concert. Common value. Tickets to a concert. Correlated value. Collectible stamp.

  5. Auctions Valuations Valuation What type of value? Non-transferable tickets to a Private value. concert. Private Common value. Tickets to a concert. Correlated Correlated value. Collectible stamp. Common or Correlated

  6. Auctions Simple Auctions Valuations 1 Simple Auctions 2 Analysis of Auctions Auction Parameters Combinatorial Auctions 3 Centralized Winner Determination Distributed Winner Determination Bidding Languages Preference Elicitation

  7. Auctions Simple Auctions English Auction First-price open-cry ascending auction. Very common. Initial prices is the reservation price. Dominant strategy: bid current price plus epsilon until reservation price. Winner’s curse if common or correlated.

  8. Auctions Simple Auctions First-price Sealed-bid Auction One bid per person in a sealed envelope are given to the auctioneer who then picks the highest bid. Whoever submitted the highest bit wins and pays that price. It has no dominant strategy. Leads to spying.

  9. Auctions Simple Auctions Dutch Auction Open-cry descending price. Equivalent to first-price sealed-bid auction. Real-time efficient. Ontario Flower Growers Co-op.

  10. Auctions Simple Auctions Vickrey Auction Second-price sealed-bid. Bidding true valuation is dominant strategy if private value. Eliminates strategizing. People don’t like them. William Vickrey. 1914–1996. Nobel Prize in Economics, 1996.

  11. Auctions Simple Auctions Double Auction Sell Sell Sell Sell Sell Buy Buy Buy Buy Buy 1 2 3 4 5

  12. Auctions Simple Auctions Analysis of Auctions Valuations 1 Simple Auctions 2 Analysis of Auctions Auction Parameters Combinatorial Auctions 3 Centralized Winner Determination Distributed Winner Determination Bidding Languages Preference Elicitation

  13. Auctions Simple Auctions Analysis of Auctions Revenue Equivalence On which auction do sellers make more money?

  14. Auctions Simple Auctions Analysis of Auctions Revenue Equivalence On which auction do sellers make more money? Revenue Equivalence Theorem All four auctions produce the same expected revenue in private value auctions and with bidders that are risk-neutral.

  15. Auctions Simple Auctions Analysis of Auctions Revenue Equivalence On which auction do sellers make more money? Revenue Equivalence Theorem All four auctions produce the same expected revenue in private value auctions and with bidders that are risk-neutral. If risk-averse then Dutch and First-price are better. In common or correlated value English gives higher revenue.

  16. Auctions Simple Auctions Analysis of Auctions Collusion Bidder collusion affects all 4 auctions. English and Vickrey auctions self-enforce collusion agreements.

  17. Auctions Simple Auctions Analysis of Auctions Lying A lying auctioneer can make money from a Vickrey auction. He can also place shills in an English auction.

  18. Auctions Simple Auctions Analysis of Auctions Inefficient Allocation Costs of Doing Tasks tasks Agent 1 Agent 2 t1 2 1.5 t2 1 1.5 t1,t2 2 2.5 Leads to inefficient allocation if auction t1 then t2. Implement full lookahead. Use a combinatorial auction.

  19. Auctions Simple Auctions Auction Parameters Valuations 1 Simple Auctions 2 Analysis of Auctions Auction Parameters Combinatorial Auctions 3 Centralized Winner Determination Distributed Winner Determination Bidding Languages Preference Elicitation

  20. Auctions Simple Auctions Auction Parameters Designing Auctions Decide what control you have. Control only the agent. Control only the mechanism. Control both. If controlling the mechanism you must decide on: Bidding rules. Clearing rules. Information rules.

  21. Auctions Combinatorial Auctions Valuations 1 Simple Auctions 2 Analysis of Auctions Auction Parameters Combinatorial Auctions 3 Centralized Winner Determination Distributed Winner Determination Bidding Languages Preference Elicitation

  22. Auctions Combinatorial Auctions Combinatorial Auction In a combinatorial auction agents can place bids for sets of goods. M set of items for sale. b i ( S ) = ℵ is agent i ’s bid for S ⊆ M . ¯ b ( S ) = max i ∈ bidders b i ( S ) is the set of relevant bids.

  23. Auctions Combinatorial Auctions Example Price Bid items $1 Beast Boy $3 Robin $5 Raven, Starfire $6 Cyborg, Robin $7 Cyborg, Beast Boy $8 Raven, Beast Boy

  24. Auctions Combinatorial Auctions Centralized Winner Determination Valuations 1 Simple Auctions 2 Analysis of Auctions Auction Parameters Combinatorial Auctions 3 Centralized Winner Determination Distributed Winner Determination Bidding Languages Preference Elicitation

  25. Auctions Combinatorial Auctions Centralized Winner Determination Winner Determination X ∗ = argmax ¯ X ∑ b ( S ) S ∈ X where X is a set of sets of goods that allocates each good to only one bidder.

  26. Auctions Combinatorial Auctions Centralized Winner Determination Problem Complexity The number of ways to partition a set of n elements into k non-empty sets is the Stirling number of the second kind k − 1 S ( n , k ) = 1 � k � ( − 1) i ( k − i ) n ∑ k ! i i =0 so the total number of allocations of m goods is m ∑ S ( m , i ) , i =1 which is O ( m m ) and ω ( m m / 2 ) .

  27. Auctions Combinatorial Auctions Centralized Winner Determination It is Hard Theorem Winner Determination in Combinatorial Auction is NP-hard. That is, finding the X ∗ that maximizes revenue is NP-hard.

  28. Auctions Combinatorial Auctions Centralized Winner Determination It is Really Hard Theorem The decision version of the winner determination problem in combinatorial auctions is NP-complete, even if we restrict it to instances where every bid has a value equal to 1, every bidder submits only one bid, and every item is contained in exactly two bids.

  29. Auctions Combinatorial Auctions Centralized Winner Determination Linear Programming? If, there is a singleton bid for every item then: Maximize: x [ b ] b value ∑ b ∈ B Subject to: ∑ x [ b ] ≤ 1 , ∀ j ∈ M b | j ∈ b items x [ b ] ∈ { 0 , 1 } , ∀ b ∈ B , where x [ b ] is a bit which denotes whether bid b is a winning bid.

  30. Auctions Combinatorial Auctions Centralized Winner Determination Linear Programming? If, there is a singleton bid for every item then: Maximize: x [ b ] b value ∑ b ∈ B Subject to: ∑ x [ b ] ≤ 1 , ∀ j ∈ M b | j ∈ b items x [ b ] ∈ { 0 , 1 } , ∀ b ∈ B , where x [ b ] is a bit which denotes whether bid b is a winning bid. In practice, these general algorithms are much slower than specialized search algorithms.

  31. Auctions Combinatorial Auctions Centralized Winner Determination More Linear Programming Cases The LP problem will solve a combinatorial auction when the bids satisfy any one of the following criteria: 1 All bids are for consecutive sub-ranges of the goods. 2 The bids are hierarchical. 3 The bids are only OR-of-XORs of singleton bids. 4 The bids are all singleton bids. 5 The bids are downward sloping symmetric.

  32. Auctions Combinatorial Auctions Centralized Winner Determination Search Algorithm 1 Number the goods from 1 to m. 2 Create an empty root node. 3 For each node, add as its children all the bids that include the smallest good that is not on the path and 1 do not include any good on the path. 2

  33. Auctions Combinatorial Auctions Centralized Winner Determination Search Tree 1 2 3 12 135 14 1 4 5 35 3 2 25 2 25 2 12 135 4 4 4 3 35 3 3 35 3 14 25 5 5 4 4 4 35 5 9 leafs versus 52 allocations

  34. Auctions Combinatorial Auctions Centralized Winner Determination Branch and Bound on Branch on Items Tree branch-on-items-ca () 1 r ∗ ← 0 ✄ Max revenue found. Global variable. 2 g ∗ ← / ✄ Best solution found. Global variable. 0 3 branch-on-items-ca-helper (1 , / 0 ) return g ∗ 4 We will use: ¯ b ( S ) ∑ h ( g ) = max | S | S | i ∈ S i ∈ items not in g

  35. Auctions Combinatorial Auctions Centralized Winner Determination Branch and Bound on Branch on Items Tree branch-on-items-ca-helper ( i , g ) 1 if i = m ✄ g covers all items then if ∑ b ∈ g b value > r ∗ ✄ g has higher revenue than r ∗ 2 then g ∗ ← g 3 r ∗ ← ∑ b ∈ g b value 4 5 return for b ∈ { b ∈ B | i ∈ b items ∧ b items ∩ � b 1 ∈ g b items 6 = / 0 } 1 do g ′ ← g + b ✄ b items don’t overlap g 7 if ∑ b 1 ∈ g ′ b value + h ( g ′ ) > r ∗ 8 1 then branch-on-items-ca-helper ( i +1 , g ′ ) 9

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend