Bayesian Single-Item Auction Framework
This node bundles the data definitions used to model a sealed-bid single-item auction in an incomplete-information environment as a direct Bayesian mechanism with transfers ([[mechanism_design.bayesian.bayesian_mechanisms]]).
Continuous private-value data
TypeCDF (ω : ℝ)records a one-dimensional scalar type distribution on the support interval[0, ω]: a CDFF : ℝ → ℝthat is monotone on the support and continuously differentiable on the open interval(0, ω), with normalisationF(0) = 0andF(ω) = 1.ContinuousTypeProfile Irecords a per-agent upper boundωᵢand CDFFᵢ : TypeCDF (ωᵢ). This is the data structure used to attach Myerson-style regularity assumptions to a Bayesian auction without forcing them into the abstract mechanism layer.
Opponent profiles
OpponentTypeProfile I iis the function space{j // j ≠ i} → ℝof type reports for everyone except agenti.profileInsert i z_iglues an opponent profilet₋ᵢtogether with agenti's reportz_ito recover a full report profile(∀ _ : I, ℝ).
These objects support the interim viewpoint: fixing agent i's report
and integrating over opponents' types.
Auction structure
A BayesianSingleItemAuction I extends SingleParameterMechanism I ℝ
([[mechanism_design.transfer.single_parameter_transfer_layer]]) with
Bayesian environment data:
prior : Measure (∀ _ : I, ℝ)— the common-knowledge prior on full type profiles, registered as a probability measure.opponentPrior : (i : I) → Measure (OpponentTypeProfile I i)— explicit per-agent opponent marginals, used to define interim expectations without committing to an independence assumption at the level of measures.typeData : ContinuousTypeProfile I— the per-agent CDFs and supports for Myerson-style analysis.
The reuse pattern is:
allocationRule t i : ℝ— agenti's winning probability at report profilet, inherited from the single-parameter mechanism.paymentRule t i : ℝ— agenti's payment at report profilet.toDirectBayesianMechanismWithTransfersexposes the auction as aDirectBayesianMechanismWithTransfers I (fun _ => ℝ) (I → ℝ) ℝ, so Bayesian ex-ante / interim machinery from ([[mechanism_design.bayesian.bayesian_mechanisms]]) applies.
Feasibility
For probabilistic single-item allocation, two constraints matter:
IsAllocFeasible(inherited): everyallocationRule t ilies in[0, 1].RespectsSingleItemCapacity: for every report profile, $\sum_i x_i(t) \le 1$ — at most one item is allocated in expectation.IsFeasibleis the conjunction.
Density layer (assuming independence)
When the prior is independent across agents, typeDensity i returns the
derivative of Fᵢ, and jointDensity t = ∏ᵢ fᵢ(tᵢ) is the product
density. These are convenience helpers for density-based analysis; the
core mechanism layer does not require independence.
Product priors
productPrior and opponentProductPrior build the full type prior and
opponent priors from the one-dimensional density-induced measures. The
predicate HasIndependentTypePriors records when the auction's stored priors
are exactly these product priors.
Position in the library
The single-parameter Myerson payment identity ([[mechanism_design.myerson.payment_formula]]) and the ex-ante revelation principle ([[mechanism_design.bayesian.ex_ante_revelation_principle]]) both apply to instances of this framework. Concrete IPV models such as the symmetric first-price equilibrium and Myerson's optimal auction are tracked separately ([[mechanism_design.auction.bayesian.symmetric_first_price_equilibrium]], [[mechanism_design.myerson.optimal_auction]]).
References
- [MFoGT, Chapter 12, Section 12.1] Maschler, Solan, and Zamir, Game Theory. IPV setting for single-object auctions.
- [Krishna, Chapters 2–3] Vijay Krishna, Auction Theory, 2nd ed.. Continuous-type private-value model with CDFs and densities.
- [AGT, Chapter 9, Section 9.5] Nisan, Roughgarden, Tardos, and Vazirani, Algorithmic Game Theory. Single-parameter Bayesian mechanism design.
Used by
- All-Pay Auction Symmetric Equilibrium
- Dutch ≡ First-Price Strategic Equivalence
- English ≡ Second-Price IPV Equivalence
- Entry Fees And Reserve Prices In IPV Auctions
- Bayesian Single-Item Auction Interim Quantities And IC
- Symmetric IPV First-Price Equilibrium
- Regular Myerson Optimal Single-Item Auction
- Virtual-Surplus-Maximizing Allocation
- Virtual Values and Regularity