buying_to_bundle_bernoulli_product_sum_abs_mean_le
Provedbernoulli-productbuying-to-bundleeq-5
Conditional finite-product Bernoulli fluctuation bound for Equation (5) of Buying to Bundle: Optimal Sourcing from Monopolistic Sellers, Appendix C.2 p. 35. For fixed qualities and independent inclusion probabilities , the explicit finite mixture over inclusion patterns satisfies . The paper proves this by , , and Cauchy-Schwarz/Jensen.
Preamble
import Mathlib.MeasureTheory.Constructions.Pi import Mathlib.MeasureTheory.Integral.Bochner.Basic import Mathlib.Analysis.SpecialFunctions.Pow.Real import Mathlib.Probability.Moments.Variance import Mathlib.Probability.ProbabilityMassFunction.Constructions import Mathlib.Probability.ProbabilityMassFunction.Integrals import Mathlib.Tactic open MeasureTheory open scoped BigOperators
Formal statement
theorem buying_to_bundle_bernoulli_product_sum_abs_mean_le
{N : ℕ} {μH : ℝ} (hμH0 : 0 ≤ μH)
(p a : Fin N → ℝ) (hp0 : ∀ i, 0 ≤ p i) (hp1 : ∀ i, p i ≤ 1)
(ha0 : ∀ i, 0 ≤ a i) (haH : ∀ i, a i ≤ μH) :
(∑ I : Fin N → Bool,
(∏ i, if I i then p i else 1 - p i) *
|(∑ i, if I i then a i else 0) - ∑ i, p i * a i|) ≤
μH * Real.sqrt N := by sorrySource
Buying to Bundle: Optimal Sourcing from Monopolistic Sellers, Appendix C.2, proof of Theorem 4.6, p. 35, Eq. (5)