All proofs
Project-declaredLean 4.32.0 · mathlib@81a5d257c8e4

Curl magnetic Field Matrix eq electric Field field Strength Matrix

Electromagnetism.ElectromagneticPotential.curl_magneticFieldMatrix_eq_electricField_fieldStrengthMatrix

Project documentation

The matrix corresponding to the magnetic field in general dimensions. In 3 space-dimensions this reduces to a vector. -/ noncomputable def magneticFieldMatrix (c : SpeedOfLight := 1) (A : ElectromagneticPotential d) : Time → Space d → (Fin d × Fin d) → ℝ := timeSlice c <| fun x ij => A.fieldStrengthMatrix x (Sum.inr ij.1, Sum.inr ij.2) lemma magneticFie...

Exact Lean statement

lemma curl_magneticFieldMatrix_eq_electricField_fieldStrengthMatrix {d : ℕ} {c : SpeedOfLight}
    (A : ElectromagneticPotential d)
    (hA : ContDiff ℝ 2 A) (t : Time) (x : Space d) (i : Fin d) :
    ∑ j, Space.deriv j (A.magneticFieldMatrix c t · (j, i)) x =
    (1/c^2) * ∂ₜ (fun t => A.electricField c t x) t i +
    (∑ (μ : (Fin 1 ⊕ Fin d)), (∂_ μ (A.fieldStrengthMatrix · (μ, Sum.inr i))
    ((toTimeAndSpace c).symm (t, x))))

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
lemma curl_magneticFieldMatrix_eq_electricField_fieldStrengthMatrix {d : } {c : SpeedOfLight}    (A : ElectromagneticPotential d)    (hA : ContDiff  2 A) (t : Time) (x : Space d) (i : Fin d) :    ∑ j, Space.deriv j (A.magneticFieldMatrix c t · (j, i)) x =    (1/c^2) * ∂ₜ (fun t => A.electricField c t x) t i +    (∑ (μ : (Fin 1Fin d)), (∂_ μ (A.fieldStrengthMatrix · (μ, Sum.inr i))    ((toTimeAndSpace c).symm (t, x)))) := by  trans (1/c^2) * ∂ₜ (fun t => A.electricField c t x) t i +    (- (1/c^2) * ∂ₜ (fun t => A.electricField c t x) t i +    ∑ j, Space.deriv j (A.magneticFieldMatrix c t · (j, i)) x)  · ring  congr 1  rw [Fintype.sum_sum_type]  congr  · simp    rw [time_deriv_electricField_eq_fieldStrengthMatrix hA t x i]    field_simp  · funext j    rw [SpaceTime.deriv_sum_inr c]    simp    rfl    · apply fieldStrengthMatrix_differentiable hA
Project
Physlib
License
Apache-2.0
Commit
dd43e9e65791
Source
Physlib/Electromagnetism/Kinematics/MagneticField.lean:459-480

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