All proofs
Project-declaredLean 4.32.0 ยท mathlib@81a5d257c8e4

Canonical Momentum eq gradient kinetic Term

Electromagnetism.ElectromagneticPotential.canonicalMomentum_eq_gradient_kineticTerm

Project documentation

The canonical momentum associated with the lagrangian of an electromagnetic potential and a Lorentz current density. -/ noncomputable def canonicalMomentum (๐“• : FreeSpace) (A : ElectromagneticPotential d) (J : LorentzCurrentDensity d) : SpaceTime d โ†’ Lorentz.Vector d := fun x => gradient (fun (v : Lorentz.Vector d) => lagrangian ๐“• โŸจfun x => A x + x (Sum...

Exact Lean statement

lemma canonicalMomentum_eq_gradient_kineticTerm {d}
    {๐“• : FreeSpace} (A : ElectromagneticPotential d)
    (hA : ContDiff โ„ 2 A) (J : LorentzCurrentDensity d) :
    A.canonicalMomentum ๐“• J = fun x =>
    gradient (fun (v : Lorentz.Vector d) =>
    kineticTerm ๐“• โŸจfun x => A x + x (Sum.inl 0) โ€ข vโŸฉ x) 0

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
lemma canonicalMomentum_eq_gradient_kineticTerm {d}    {๐“• : FreeSpace} (A : ElectromagneticPotential d)    (hA : ContDiff โ„ 2 A) (J : LorentzCurrentDensity d) :    A.canonicalMomentum ๐“• J = fun x =>    gradient (fun (v : Lorentz.Vector d) =>    kineticTerm ๐“• โŸจfun x => A x + x (Sum.inl 0) โ€ข vโŸฉ x) 0:= by  funext x  apply ext_inner_right (๐•œ := โ„)  intro v  rw [gradient, canonicalMomentum]  simp only [Fin.isValue, toDual_symm_apply]  rw [inner_sub_left, inner_smul_left]  simp [gradient]  conv_lhs =>    enter [2]    simp [lagrangian_add_const]  have hx : DifferentiableAt โ„ (fun v => kineticTerm ๐“• โŸจfun x => A x + x (Sum.inl 0) โ€ข vโŸฉ x) 0 := by    simp only [kineticTerm_add_time_mul_const _ (hA.differentiable (by simp))]    fun_prop  conv_lhs =>    enter [1]    simp only [lagrangian, Fin.isValue, map_add, map_smul,      LinearMap.smul_apply, smul_eq_mul]    rw [fderiv_fun_sub hx (by simp [freeCurrentPotential]; fun_prop)]    simp only [Fin.isValue, freeCurrentPotential, map_add, map_smul, _root_.add_apply,      FunLike.coe_smul, Pi.smul_apply, smul_eq_mul, fderiv_const_add,      FunLike.coe_sub, Pi.sub_apply]    rw [fderiv_const_mul (by fun_prop)]  simp only [Fin.isValue, FunLike.coe_smul, Pi.smul_apply, smul_eq_mul]  rw [fderiv_fun_sub (by fun_prop) (by fun_prop)]  simp
Project
Physlib
License
Apache-2.0
Commit
dd43e9e65791
Source
Physlib/Electromagnetism/Dynamics/Hamiltonian.lean:89-119

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