C Lp Norm mul le
MeasureTheory.cLpNorm_mul_le
Plain-language statement
Hölder's inequality, binary case.
Exact Lean statement
lemma cLpNorm_mul_le (p q : ℝ≥0∞) (_hr₀ : r ≠ 0) [hpqr : ENNReal.HolderTriple p q r] :
‖f * g‖ₙ_[r] ≤ ‖f‖ₙ_[p] * ‖g‖ₙ_[q]Formal artifact
Lean source
lemma cLpNorm_mul_le (p q : ℝ≥0∞) (_hr₀ : r ≠ 0) [hpqr : ENNReal.HolderTriple p q r] : ‖f * g‖ₙ_[r] ≤ ‖f‖ₙ_[p] * ‖g‖ₙ_[q] := by cases nonempty_fintype α set μ := ProbabilityTheory.uniformOn (Set.univ : Set α) with hμ_def have hμfin : IsFiniteMeasure μ := by rw [hμ_def]; infer_instance have hm_r : MemLp (f * g) r μ := MemLp.of_discrete have hm_p : MemLp f p μ := MemLp.of_discrete have hm_q : MemLp g q μ := MemLp.of_discrete have hbd : ∀ᵐ x ∂μ, ‖f x * g x‖₊ ≤ (1 : NNReal) * ‖f x‖₊ * ‖g x‖₊ := .of_forall fun x ↦ by rw [one_mul]; exact nnnorm_mul_le _ _ have key : eLpNorm (fun x ↦ f x * g x) r μ ≤ ((1 : NNReal) : ℝ≥0∞) * eLpNorm f p μ * eLpNorm g q μ := eLpNorm_le_eLpNorm_mul_eLpNorm_of_nnnorm (p := p) (q := q) (r := r) hm_p.aestronglyMeasurable hm_q.aestronglyMeasurable (· * ·) 1 hbd change lpNorm _ _ μ ≤ lpNorm _ _ μ * lpNorm _ _ μ rw [← toReal_eLpNorm hm_r.aestronglyMeasurable, ← toReal_eLpNorm hm_p.aestronglyMeasurable, ← toReal_eLpNorm hm_q.aestronglyMeasurable, ← ENNReal.toReal_mul] apply ENNReal.toReal_mono · exact ENNReal.mul_ne_top hm_p.eLpNorm_ne_top hm_q.eLpNorm_ne_top · simpa [Pi.mul_def] using key- Project
- Arithmetic Progressions Almost Periodicity
- License
- Apache-2.0
- Commit
- afafc42a5326
- Source
- APAP/Prereqs/Inner/Hoelder/Compact.lean:60-81
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.