General utilities for Real, EReal, and ENNReal #
This file contains general-purpose lemmas about Real, EReal, and ENNReal that are not specific to measure theory but are used throughout the formalization.
The square root function is subadditive over finite sums: √(∑ᵢ xᵢ) ≤ ∑ᵢ √xᵢ for non-negative terms. This is a consequence of the concavity of sqrt.
Helper: Coercion from ENNReal to EReal preserves summability. All ENNReal sequences are summable, and their coercions to EReal are also summable.
Helper: Addition of tsums of ENNReal values coerced to EReal. (∑' n, ↑(a n) : EReal) + (∑' n, ↑(b n) : EReal) = (∑' n, ↑(a n + b n) : EReal)
This follows from ENNReal.tsum_add and the fact that coercion commutes with addition.
Helper: For non-negative real sequences, tsum addition inequality in EReal. If f n + g n ≤ h n pointwise, then ∑' f.toEReal + ∑' g.toEReal ≤ ∑' h.toEReal.
Pointwise EReal ≤ nonneg Real implies tsum inequality. If 0 ≤ f n ≤ ↑(g n) for all n, where g n ≥ 0 and g summable, then ∑' f ≤ ↑(∑' g). Routes through ENNReal where tsum comparison is unconditional.