All proofs
Project-declaredLean 4.32.0 · mathlib@81a5d257c8e4

Grad Kinetic Term eq field Strength

Electromagnetism.ElectromagneticPotential.gradKineticTerm_eq_fieldStrength

Project documentation

The variational gradient of the kinetic term of an electromagnetic potential. -/ noncomputable def gradKineticTerm {d} (𝓕 : FreeSpace) (A : ElectromagneticPotential d) : SpaceTime d → Lorentz.Vector d := (δ (q':=A), ∫ x, kineticTerm 𝓕 ⟨q'⟩ x) /-! ### B.1. Variational gradient in terms of fderiv We give a first simplification of the variational gradient...

Exact Lean statement

lemma gradKineticTerm_eq_fieldStrength {d} {𝓕 : FreeSpace} (A : ElectromagneticPotential d)
    (x : SpaceTime d) (ha : ContDiff ℝ ∞ A) :
    A.gradKineticTerm 𝓕 x = ∑ (ν : (Fin 1 ⊕ Fin d)), (1/𝓕.μ₀ * η ν ν) •
    (∑ (μ : (Fin 1 ⊕ Fin d)), (∂_ μ (A.fieldStrengthMatrix · (μ, ν)) x))
    • Lorentz.Vector.basis ν

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
lemma gradKineticTerm_eq_fieldStrength {d} {𝓕 : FreeSpace} (A : ElectromagneticPotential d)    (x : SpaceTime d) (ha : ContDiff  ∞ A) :    A.gradKineticTerm 𝓕 x = ∑ (ν : (Fin 1Fin d)), (1/𝓕.μ₀ * η ν ν) •    (∑ (μ : (Fin 1Fin d)), (∂_ μ (A.fieldStrengthMatrix · (μ, ν)) x))Lorentz.Vector.basis ν := by  calc _    _ = ∑ (ν : (Fin 1Fin d)), ∑ (μ : (Fin 1Fin d)),      (1/𝓕.μ₀ * (η μ μ * η ν ν * ∂_ μ (fun x' => ∂_ μ A x' ν) x -      ∂_ μ (fun x' => ∂_ ν A x' μ) x)) • Lorentz.Vector.basis ν := by        rw [gradKineticTerm_eq_sum_sum A x ha]    _ = ∑ (ν : (Fin 1Fin d)), ∑ (μ : (Fin 1Fin d)),      ((1/𝓕.μ₀ * η ν ν) * (η μ μ * ∂_ μ (fun x' => ∂_ μ A x' ν) x -      η ν ν * ∂_ μ (fun x' => ∂_ ν A x' μ) x)) • Lorentz.Vector.basis ν := by        apply Finset.sum_congr rfl (fun ν _ => ?_)        apply Finset.sum_congr rfl (fun μ _ => ?_)        congr 1        ring_nf        simp    _ = ∑ (ν : (Fin 1Fin d)), ∑ (μ : (Fin 1Fin d)),      ((1/𝓕.μ₀ * η ν ν) * (∂_ μ (A.fieldStrengthMatrix · (μ, ν)) x)) •          Lorentz.Vector.basis ν := by        refine Finset.sum_congr rfl fun ν _ => Finset.sum_congr rfl fun μ _ => ?_        congr 2        conv_rhs =>          simp only [toFieldStrength_basis_repr_apply_eq_single]          rw [SpaceTime.deriv_eq, fderiv_fun_sub (by fun_prop) (by fun_prop),            fderiv_const_mul (by fun_prop), fderiv_const_mul (by fun_prop)]        simp [SpaceTime.deriv_eq]    _ = ∑ (ν : (Fin 1Fin d)), (1/𝓕.μ₀ * η ν ν) •        (∑ (μ : (Fin 1Fin d)), (∂_ μ (A.fieldStrengthMatrix · (μ, ν)) x))Lorentz.Vector.basis ν := by        apply Finset.sum_congr rfl (fun ν _ => ?_)        rw [ Finset.sum_smul,  Finset.mul_sum,  smul_smul]
Project
Physlib
License
Apache-2.0
Commit
dd43e9e65791
Source
Physlib/Electromagnetism/Dynamics/KineticTerm.lean:517-549

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