All proofs
Project-declaredLean 4.32.0 · mathlib@81a5d257c8e4

Integral mul schwartz Map bounded

Space.IsDistBounded.integral_mul_schwartzMap_bounded

Project documentation

The boundedness condition on a function Space d → F for it to form a distribution. -/ @[fun_prop] def IsDistBounded {d : ℕ} (f : Space d → F) : Prop := AEStronglyMeasurable (fun x => f x) volume ∧ ∃ n, ∃ c : Fin n → ℝ, ∃ g : Fin n → Space d, ∃ p : Fin n → ℤ, (∀ i, 0 ≤ c i) ∧ (∀ i, - (d - 1 : ℕ) ≤ p i) ∧ ∀ x, ‖f x‖ ≤ ∑ i, c i * ‖x + g i‖ ^ p i namespace...

Exact Lean statement

lemma integral_mul_schwartzMap_bounded {d : ℕ} {f : Space d → F} (hf : IsDistBounded f) :
    ∃ (s : Finset (ℕ × ℕ)) (C : ℝ),
    0 ≤ C ∧ ∀ (η : 𝓢(Space d, ℝ)),
    ‖∫ (x : Space d), η x • f x‖ ≤ C * (s.sup (schwartzSeminormFamily ℝ (Space d) ℝ)) η

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
lemma integral_mul_schwartzMap_bounded {d : } {f : Space d  F} (hf : IsDistBounded f) :     (s : Finset ( × )) (C : ),    0  C   (η : 𝓢(Space d, )),    ‖∫ (x : Space d), η x • f x‖  C * (s.sup (schwartzSeminormFamily  (Space d) )) η := by  obtain r, hr := hf.integrable_mul_inv_pow  use Finset.Iic (r, 0), 2 ^ r * ∫ x, ‖f x‖ * ‖((1 + ‖x‖) ^ r)⁻¹‖  refine by positivity, fun η  (norm_integral_le_integral_norm _).trans ?_  rw [ integral_const_mul,  integral_mul_const]  refine integral_mono_of_nonneg ?_ ?_ ?_  · filter_upwards with x    positivity  · refine (Integrable.congr' hr (AEStronglyMeasurable.mul (by fun_prop)      (AEMeasurable.aestronglyMeasurable (by fun_prop))) ?_).const_mul _ |>.mul_const _    filter_upwards with x    simp [norm_smul, mul_comm]  · filter_upwards with x    simp [norm_smul]    trans (2 ^ r *      ((Finset.Iic (r, 0)).sup (schwartzSeminormFamily  (Space d) )) η      *(|1 + ‖x‖| ^ r)⁻¹) * ‖f x‖; swap    · apply le_of_eq      ring    apply mul_le_mul_of_nonneg ?_ (by rfl) (by positivity) (by positivity)    have h0 := one_add_le_sup_seminorm_apply (𝕜 := ) (m := (r, 0))      (k := r) (n := 0) le_rfl le_rfl η x    rw [le_mul_inv_iff₀ (by positivity)]    convert! h0 using 1    simp only [norm_iteratedFDeriv_zero, Real.norm_eq_abs]    ring_nf    congr    rw [abs_of_nonneg (by positivity)]
Project
Physlib
License
Apache-2.0
Commit
dd43e9e65791
Source
Physlib/SpaceAndTime/Space/IsDistBounded.lean:455-485

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

Project-declaredLean 4.32.0

Adiabatic relation log

adiabatic_relation_log

Plain-language statement

Adiabatic relation in logarithmic form: If S(Ua,Va,N) = S(Ub,Vb,N) with N fixed, then c * log (Ua/Ub) + log (Va/Vb) = 0.

physicsquantum field theoryrelativity

Source project: Physlib

Person-level attribution pending.

View proof record
Project-declaredLean 4.32.0

Adiabatic relation Ua Ub Va Vb

adiabatic_relation_UaUbVaVb

Plain-language statement

Adiabatic relation in product form: If S(Ua,Va,N) = S(Ub,Vb,N) with N fixed, then (Ua/Ub)^c * (Va/Vb) = 1.

physicsquantum field theoryrelativity

Source project: Physlib

Person-level attribution pending.

View proof record