✓
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 bis \(\max(\mathrm{reserve}, \mathrm{secondPrice}(b))\).allocation reserve b : Option Iissome iwhen bidderiis the selected highest bidder and the reserve is met; it isnonewhen the item is withheld.utility reserve v b iis the quasi-linear payoff: the allocated bidder gets value minus clearing price, and all other bidders get zero.mechanism reservepackages the rule as aMechanismWithTransferswith allocation typeOption I.
Basic facts
The formalization records the expected case analysis:
allocation_eq_some_iffcharacterizes the sale case.allocation_eq_none_iffcharacterizes the no-sale case.clearingPrice_le_bid_of_allocation_eq_someshows 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.