W Inner one le d Lp Norm mul d Lp Norm
MeasureTheory.wInner_one_le_dLpNorm_mul_dLpNorm
Plain-language statement
Hölder's inequality, binary case.
Exact Lean statement
lemma wInner_one_le_dLpNorm_mul_dLpNorm (p q : ℝ≥0∞) [p.HolderConjugate q] :
⟪f, g⟫_[ℝ] ≤ ‖f‖_[p] * ‖g‖_[q]Formal artifact
Lean source
lemma wInner_one_le_dLpNorm_mul_dLpNorm (p q : ℝ≥0∞) [p.HolderConjugate q] : ⟪f, g⟫_[ℝ] ≤ ‖f‖_[p] * ‖g‖_[q] := by have hp0 : p ≠ 0 := ENNReal.HolderConjugate.ne_zero p q have hq0 : q ≠ 0 := ENNReal.HolderConjugate.ne_zero q p have hwInner : ⟪f, g⟫_[ℝ] = ∑ i, f i * g i := by simp [wInner_one_eq_sum, mul_comm] have hfg i : f i * g i ≤ ‖f i‖ * ‖g i‖ := (le_abs_self _).trans_eq (by rw [abs_mul]; simp [Real.norm_eq_abs]) obtain rfl | hpi := eq_or_ne p ∞ · obtain rfl : q = 1 := (ENNReal.HolderConjugate.eq_top_iff_eq_one ∞ q).mp rfl simp only [hwInner, dL1Norm_eq_sum_norm, norm_eq_abs, dLinftyNorm_eq_iSup_norm, mul_sum] gcongr ∑ _, ?_ with i grw [le_abs_self (_ * _), abs_mul, ← le_ciSup (Finite.bddAbove_range _)] obtain rfl | hqi := eq_or_ne q ∞ · obtain rfl : p = 1 := (ENNReal.HolderConjugate.eq_top_iff_eq_one ∞ p).mp rfl simp only [hwInner, dL1Norm_eq_sum_norm, norm_eq_abs, dLinftyNorm_eq_iSup_norm, sum_mul] gcongr ∑ _, ?_ with i grw [le_abs_self (_ * _), abs_mul, ← le_ciSup (Finite.bddAbove_range _)] have hpr : 0 < p.toReal := ENNReal.toReal_pos hp0 hpi have hqr : 0 < q.toReal := ENNReal.toReal_pos hq0 hqi have hreal : Real.HolderConjugate p.toReal q.toReal := by simpa using ENNReal.HolderTriple.toReal (p := p) (q := q) (r := 1) hpr hqr rw [hwInner, dLpNorm_eq_sum_norm' hp0 hpi, dLpNorm_eq_sum_norm' hq0 hqi] simpa using Real.inner_le_Lp_mul_Lq Finset.univ f g hreal- Project
- Arithmetic Progressions Almost Periodicity
- License
- Apache-2.0
- Commit
- afafc42a5326
- Source
- APAP/Prereqs/Inner/Hoelder/Discrete.lean:51-73
Reuse this declaration
Bring the exact result into your workflow
The import identifies the source module. Your project still needs the pinned package dependency shown on this page.
What this badge means
This completion status comes from the project or community source. It has not yet been represented here as an independent rebuild and axiom audit.
Continue in this project
Related declarations
Add Dissociated boring Energy le
AddDissociated.boringEnergy_le
Project documentation
If a finite set is additively dissociated, then its order- additive energy is at most , where is the project's Chang constant. This is the quantitative dissociated-set estimate used in the proof of Chang's lemma.
Source project: Arithmetic Progressions Almost Periodicity
Person-level attribution pending.
Linfty almost periodicity
AlmostPeriodicity.linfty_almost_periodicity
Project documentation
An almost-periodicity theorem. Under the small-growth hypothesis , and for nonempty finite sets , there is a set of translations with . Every changes the normalized convolution by at most in .
Source project: Arithmetic Progressions Almost Periodicity
Person-level attribution pending.
Linfty almost periodicity boosted
AlmostPeriodicity.linfty_almost_periodicity_boosted
Plain-language statement
A boosted almost-periodicity estimate. Under , it finds a large set , with the stated lower bound , such that averaging the target convolution against the -fold convolution of changes it by at most in .
Source project: Arithmetic Progressions Almost Periodicity
Person-level attribution pending.