Skip to content

User interface to collect sealed bids for combinatorial auctions #28

@clange

Description

@clange

For sealed-bid combinatorial auctions we agreed on collecting bids in two ways:

  • in CATS format (fully expanded)
  • using the OR* bidding language (Nisan, ch.9, Cramton et al. Combinatorial Auctions book)
    (Note that different dynamic auctions will impose different restrictions on permitted bids at bidding rounds progress.)

Here is another naive suggestion for entering sealed package bids in a combinatorial auction in a user-friendly and demoable way (in case OR* becomes too complicated). The assumption is that

  • the participants have budgets with strict upper limits
  • within this limit, the bid function is linear on item sets as in \forall A, B . bid(A \cup B) = bid(A) + bid(B)
    I'm not making any assumptions w.r.t. substitutability or complementarity of goods.

In the console user interface that we will eventually wrap around the Scala-from-Isabelle code for combinatorial Vickrey auctions, do the following for each participant:

  1. ask for its bid b(S) on every singleton set S \in { {a} | a \in x0 }
  2. ask for an upper limit u for bids on larger sets
  3. set the bid of the empty set to 0
  4. for each non-singleton set U where x0 \supseteq U \supset S compute the bid as min { \sum a \in U . b({a}) , u }, i.e. the sum of the bids on each of its singleton subsets, capped by u
  5. display all bids to the user
  6. allow the user to revise …
    1. at least bids on individual sets (particularly including the non-singleton sets, which haven't been explicitly asked for so far)
    2. plus maybe all bids on each member of a set of sets, to be selected by a wildcard input notation.

Example with two items {a, b}:

enter bid on {a}:

1

enter bid on {b}:

2

enter upper limit:

2.5

suggested bids:
{}    0
{a}   1
{b}   2
{a,b} 2.5

enter any set to revise your bid on that set:

Metadata

Metadata

Assignees

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions