All proofs
Project-declaredLean 4.32.0 · mathlib@81a5d257c8e4

Fundamental theorem of variational calculus

fundamental_theorem_of_variational_calculus

Plain-language statement

A version of fundamental_theorem_of_variational_calculus' for Continuous f. The proof uses assumption that source of f is finite-dimensional inner-product space, so that a bump function with compact support exists via ContDiffBump.hasCompactSupport from Analysis.Calculus.BumpFunction.Basic. The proof is by contradiction, assume that there is `x₀...

Exact Lean statement

lemma fundamental_theorem_of_variational_calculus {f : X → V}
    (μ : Measure X) [IsFiniteMeasureOnCompacts μ] [μ.IsOpenPosMeasure]
    [OpensMeasurableSpace X]
    (hf : IsTestFunction f) (hg : ∀ g, IsTestFunction g → ∫ x, ⟪f x, g x⟫_ℝ ∂μ = 0) :
    f = 0

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
lemma fundamental_theorem_of_variational_calculus {f : X  V}    (μ : Measure X) [IsFiniteMeasureOnCompacts μ] [μ.IsOpenPosMeasure]    [OpensMeasurableSpace X]    (hf : IsTestFunction f) (hg :  g, IsTestFunction g  ∫ x, ⟪f x, g x⟫_ ∂μ = 0) :    f = 0 := by  have hf' := hg f hf  rw [MeasureTheory.integral_eq_zero_iff_of_nonneg] at hf'  · rw [Continuous.ae_eq_iff_eq] at hf'    · funext x      have hf'' := congrFun hf' x      simpa using hf''    · have hf : Continuous f := hf.smooth.continuous      fun_prop    · fun_prop  · intro x    simp only [Pi.zero_apply]    apply real_inner_self_nonneg'  · apply IsTestFunction.integrable    exact IsTestFunction.inner hf hf
Project
Physlib
License
Apache-2.0
Commit
dd43e9e65791
Source
Physlib/Mathematics/VariationalCalculus/Basic.lean:231-249

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