monopoly_revenue_subexponential_dispersion_bound
Provedconcentrationeconomicsmechanism-designprobability
Lemma 4.5 of Buying to Bundle: Optimal Sourcing from Monopolistic Sellers (p. 15; proof App. C.2 pp. 33–35). Assume is a sub-exponential random variable with parameters , i.e. for all , and (standing Section-4 assumptions, used in the paper's own proof) has mean zero and variance one. Let be i.i.d. copies of . For any buyer valuation where , are constants and , let . Then
Upper direction: Chernoff via the product MGF bound (sub-Gaussian regime for , sub-exponential regime beyond). Lower direction: price at and control the lost demand by Chebyshev/Cantelli (this is where mean 0/variance 1 enter); optimizing gives the last two terms. is implicit in the paper ( is a bundle mean quality) and is used in the lower-bound pricing step.
Preamble
import Mathlib.MeasureTheory.Constructions.Pi import Mathlib.MeasureTheory.Integral.Bochner.Basic import Mathlib.Analysis.SpecialFunctions.Pow.Real import Definitions.Def_monopoly_pricing open MeasureTheory
Formal statement
theorem monopoly_revenue_subexponential_dispersion_bound
(N : ℕ) (noise : Measure ℝ) [IsProbabilityMeasure noise]
(γ ξ σ C : ℝ) (a : Fin N → ℝ)
(hσ : 0 < σ) (hγ : 0 < γ) (hξ : 0 < ξ) (hC : 0 ≤ C)
(ha : ∀ i, a i ∈ Set.Icc (0 : ℝ) 1)
(hmean : ∫ z, z ∂noise = 0)
(hvar : ∫ z, z ^ 2 ∂noise = 1)
(hse : ∀ l : ℝ, |l| < 1 / ξ →
∫⁻ z, ENNReal.ofReal (Real.exp (l * z)) ∂noise ≤
ENNReal.ofReal (Real.exp (l ^ 2 * γ ^ 2 / 2))) :
|BuyingToBundle.monopolyRevenue
((Measure.pi fun _ : Fin N => noise).map
fun z => C + σ * ∑ i, a i * z i) - C| ≤
max
(max (σ * γ * Real.exp (-(1 : ℝ) / 2) * Real.sqrt (∑ i, a i ^ 2))
(8 * σ * ξ / (3 * Real.exp 1)))
(max (Real.sqrt 2 * σ * Real.sqrt (∑ i, a i ^ 2))
(2 * σ ^ ((2 : ℝ) / 3) * (C * ∑ i, a i ^ 2) ^ ((1 : ℝ) / 3))) := by sorry
Source
Buying to Bundle: Optimal Sourcing from Monopolistic Sellers (2025), Appendix C.2 (proof of Theorem 4.6)