Definition Reserve Second-Price Mechanism
definition formalized

Reserve Second-Price Mechanism

The reserve second-price auction is the Vickrey auction with a seller reserve. The highest bidder receives the item only if the highest bid meets the reserve; otherwise the item is withheld. When the item is sold, the winner pays the maximum of the reserve and the second-highest bid.

Lean objects

The module EconCSLib.MechanismDesign.Auction.ReserveVickrey reuses the second-price primitives from [[mechanism_design.auction.basic.second_price_mechanism]].

  • clearingPrice reserve b is \(\max(\mathrm{reserve}, \mathrm{secondPrice}(b))\).
  • allocation reserve b : Option I is some i when bidder i is the selected highest bidder and the reserve is met; it is none when the item is withheld.
  • utility reserve v b i is the quasi-linear payoff: the allocated bidder gets value minus clearing price, and all other bidders get zero.
  • mechanism reserve packages the rule as a MechanismWithTransfers with allocation type Option I.

Basic facts

The formalization records the expected case analysis:

  • allocation_eq_some_iff characterizes the sale case.
  • allocation_eq_none_iff characterizes the no-sale case.
  • clearingPrice_le_bid_of_allocation_eq_some shows that the allocated bidder never pays more than her bid.

These facts are the local algebraic core used in the DSIC proof [[mechanism_design.auction.basic.reserve_second_price_dsic]].

References

  • [AGT, Chapter 9, Section 9.3] Nisan, Roughgarden, Tardos, and Vazirani, Algorithmic Game Theory.
  • [Krishna, Chapter 2] Vijay Krishna, Auction Theory, 2nd ed..
  • [MSZ, Chapter 12] Maschler, Solan, and Zamir, Game Theory.

Used by

Also in