Weighted geometric-mean integral identity
ProvedWeightedRootIntegralIdentity.weighted_geometric_mean_integral_identityanalysisgeometric-meanintegral-identity
Let . Let and let satisfy . Then
This is the zero-shift weighted geometric-mean integral representation. Equal weights recover the root-integral identity.
Preamble
import Mathlib open scoped BigOperators Interval
Formal statement
namespace WeightedRootIntegralIdentity
theorem weighted_geometric_mean_integral_identity
(n : ℕ) (hn : 2 ≤ n) (a w : ℕ → ℝ)
(hpos : ∀ i < n, 0 < a i)
(hmono : ∀ i < n - 1, a i ≤ a (i + 1))
(hwpos : ∀ i < n, 0 < w i)
(hwsum : (∑ i ∈ Finset.range n, w i) = 1) :
(∑ k ∈ Finset.range (n - 1),
(Real.sin (Real.pi * (∑ i ∈ Finset.range (k + 1), w i)) / Real.pi) *
∫ x in a k..a (k + 1),
(∏ i ∈ Finset.range n, Real.rpow |x - a i| (w i)) / x)
= (∑ i ∈ Finset.range n, w i * a i)
- (∏ i ∈ Finset.range n, Real.rpow (a i) (w i)) := by sorry
end WeightedRootIntegralIdentitySource
Feng Qi, Xiao-Jing Zhang, and Wen-Hui Li, An integral representation for the weighted geometric mean and its applications, Acta Mathematica Sinica 30 (2014), Theorem 3.1 at z = 0; summarized as equation (4) at https://math.stackexchange.com/questions/4244874/can-we-prove-am-gm-inequality-using-these-integrals