A reserve too high
The seller refuses anything under 80 and the room tops out at 72. Nobody wins, nobody pays, and the item everyone wanted goes nowhere.
Run with Second-price (Vickrey). Here is that auction, run once.
| Bidder | Worth to them | Bid |
|---|---|---|
| A | 72 | 72 |
| B | 61 | 61 |
| C | 40 | 40 |
Step by step
- collect bids Each bidder submits one sealed bid; private values are never revealed.
- 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.
72 >= 61 >= 40
- apply reserve The seller refuses to sell below the reserve of 80, so these bids are struck out: A (72), B (61), C (40).
eligible: b_i >= r = 80
- no sale No bid reached the reserve of 80, so the item is not sold even though the bidders valued it.
max(b) < r = 80
How it came out
| Winner | nobody |
|---|---|
| Price paid by the winner | 0 |
| Seller revenue | 0 |
| Value created | 0 |
| Went to whoever valued it most | no |
| Bidder | Paid | Ended up with |
|---|---|---|
| A | 0 | 0 |
| B | 0 | 0 |
| C | 0 | 0 |
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.