All proofs
Project-declaredLean 4.32.0 · mathlib@81a5d257c8e4

Dist Div of Function

Space.distDiv_ofFunction

Plain-language statement

The divergence of a distribution from a bounded function.

Exact Lean statement

lemma distDiv_ofFunction {d : ℕ} {f : Space d → EuclideanSpace ℝ (Fin d)}
    {hf : IsDistBounded f} (η : 𝓢(Space d, ℝ)) :
    (∇ᵈ ⬝ (distOfFunction f hf)) η =
    - ∫ x : Space d, ⟪f x, ∇ η x⟫_ℝ

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
lemma distDiv_ofFunction {d : } {f : Space d  EuclideanSpace  (Fin d)}    {hf : IsDistBounded f} (η : 𝓢(Space d, )) :    (∇ᵈ ⬝ (distOfFunction f hf)) η =    - ∫ x : Space d, ⟪f x, ∇ η x⟫_ := by  rw [distDiv_apply_eq_sum_fderivD]  conv_rhs =>    enter [1, 2, x]    rw [grad_eq_sum, inner_sum]  conv_lhs =>    enter [2, i]    rw [fderivD_apply, distOfFunction_apply]  /- The following lemma could probably be moved out of this result. -/  have integrable_lemma (i j : Fin d) :      Integrable (fun x =>        (((SchwartzMap.evalCLM  (Space d)  (basis i))        ((fderivCLM  (Space d) ) η)) x • f x) j) volume := by    simp only [PiLp.smul_apply]    exact (hf.pi_comp j).integrable_space _  rw [MeasureTheory.integral_finsetSum]  · simp    congr    funext i    rw [MeasureTheory.eval_integral_piLp]    · congr      funext x      simp [inner_smul_right, EuclideanSpace.inner_single_right]      left      rw [deriv_eq_fderiv_basis]    · intro j      exact integrable_lemma i j  · intro i hi    simp only [inner_smul_right, EuclideanSpace.inner_single_right, conj_trivial, one_mul]    convert integrable_lemma i i using 2    rename_i x    simp only [evalCLM_apply_apply, fderivCLM_apply, PiLp.smul_apply, smul_eq_mul,      mul_eq_mul_right_iff]    left    rw [deriv_eq_fderiv_basis]
Project
Physlib
License
Apache-2.0
Commit
dd43e9e65791
Source
Physlib/SpaceAndTime/Space/Derivatives/Div.lean:226-263

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