All proofs
Project-declaredLean 4.32.0 · mathlib@81a5d257c8e4

Magnetic Field Matrix eq propogator cross electric Field

Electromagnetism.ElectromagneticPotential.IsPlaneWave.magneticFieldMatrix_eq_propogator_cross_electricField

Project documentation

The corresponding magnetic field function from to Fin d × Fin d → ℝ of a plane wave. -/ noncomputable def magneticFunction {d : ℕ} {𝓕 : FreeSpace} {A : ElectromagneticPotential d} {s : Direction d} (hA : IsPlaneWave 𝓕 A s) : ℝ → Fin d × Fin d → ℝ := Classical.choose hA.2 lemma magneticFieldMatrix_eq_magneticFunction {d : ℕ} {𝓕 : FreeSpace} {A : E...

Exact Lean statement

lemma magneticFieldMatrix_eq_propogator_cross_electricField {d : ℕ}
    {𝓕 : FreeSpace} {A : ElectromagneticPotential d}
    {s : Direction d} (P : IsPlaneWave 𝓕 A s) (hA : ContDiff ℝ 2 A) (i j : Fin d) :
    ∃ C, ∀ t x, A.magneticFieldMatrix 𝓕.c t x (i, j) =
    1/ 𝓕.c * (s.unit j * A.electricField 𝓕.c t x i -
      s.unit i * A.electricField 𝓕.c t x j) + C

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
lemma magneticFieldMatrix_eq_propogator_cross_electricField {d : }    {𝓕 : FreeSpace} {A : ElectromagneticPotential d}    {s : Direction d} (P : IsPlaneWave 𝓕 A s) (hA : ContDiff  2 A) (i j : Fin d) :     C,  t x, A.magneticFieldMatrix 𝓕.c t x (i, j) =    1/ 𝓕.c * (s.unit j * A.electricField 𝓕.c t x i -      s.unit i * A.electricField 𝓕.c t x j) + C := by  apply Space.equal_up_to_const_of_deriv_eq  · exact magneticFieldMatrix_differentiable A hA (i, j)  · exact (((electricField_apply_differentiable hA).const_mul _).sub      ((electricField_apply_differentiable hA).const_mul _)).const_mul _  · intro t x    rw [P.time_deriv_magneticFieldMatrix_eq_electricField_mul_propogator hA t x i j]    congr    funext t    field_simp  · intro t x k    rw [P.space_deriv_magneticFieldMatrix_eq_electricField_mul_propogator hA t x i j]    congr    funext x    field_simp
Project
Physlib
License
Apache-2.0
Commit
dd43e9e65791
Source
Physlib/Electromagnetism/Vacuum/IsPlaneWave.lean:371-390

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