Auction Lab

Losers pay too

Everyone pays what they bid and only one of them wins anything. Three of these four bidders end the auction underwater.

Run with All-pay auction. Here is that auction, run once.

BidderWorth to themBid
A10062
B8858
C7444
D6031

Step by step

  1. collect bids Each bidder submits one sealed bid; private values are never revealed.
  2. sort Bids are ranked from highest to lowest. Equal bids keep the order the bidders were listed in, so a tie goes to the first-listed bidder.
    62 >= 58 >= 44 >= 31
  3. pick winner The highest eligible bid wins the item.
    argmax b_i = A at 62
  4. price rule Every bidder who cleared the reserve pays their own bid, win or lose. A losing bid buys nothing, which is why this models lobbying, contests and R&D races.
    p_i = b_i for every eligible i; winner pays 62
  5. payments A pays 62 and takes the item; the losers pay their bids and get nothing: B loses 58, C loses 44, D loses 31.
    revenue = 62 + 58 + 44 + 31 = 195

How it came out

WinnerA
Price paid by the winner62
Seller revenue195
Value created100
Went to whoever valued it mostyes
BidderPaidEnded up with
A6238
B58-58
C44-44
D31-31

Open this example in the walkthrough

The link carries the whole setup, so you can change a bid and watch what moves — and send the result to somebody else.

Read next