All proofs
Project-declaredLean 4.32.0 · mathlib@81a5d257c8e4

Space deriv electric Field eq magnetic Field Matrix

Electromagnetism.ElectromagneticPotential.IsPlaneWave.space_deriv_electricField_eq_magneticFieldMatrix

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 space_deriv_electricField_eq_magneticFieldMatrix {d : ℕ}
    {𝓕 : FreeSpace} {A : ElectromagneticPotential d}
    {s : Direction d} (P : IsPlaneWave 𝓕 A s) (hA : ContDiff ℝ ∞ A)
    (h : IsExtrema 𝓕 A 0)
    (t : Time) (x : Space d) (i k : Fin d) :
    ∂[k] (A.electricField 𝓕.c t · i) x =
    ∂[k] (fun x => 𝓕.c * ∑ j, A.magneticFieldMatrix 𝓕.c t x (i, j) * s.unit j) x

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
lemma space_deriv_electricField_eq_magneticFieldMatrix {d : }    {𝓕 : FreeSpace} {A : ElectromagneticPotential d}    {s : Direction d} (P : IsPlaneWave 𝓕 A s) (hA : ContDiff  ∞ A)    (h : IsExtrema 𝓕 A 0)    (t : Time) (x : Space d) (i k : Fin d) :    ∂[k] (A.electricField 𝓕.c t · i) x =    ∂[k] (fun x => 𝓕.c * ∑ j, A.magneticFieldMatrix 𝓕.c t x (i, j) * s.unit j) x := by  have hA2 : ContDiff  2 A := hA.of_le ENat.LEInfty.out  rw [P.electricField_space_deriv_eq_time_deriv hA2 t x i k,    P.time_deriv_electricField_eq_magneticFieldMatrix hA h t x i, Time.deriv_eq, fderiv_const_mul,    fderiv_fun_sum]  simp [Finset.mul_sum, - Finset.sum_neg_distrib]  rw [Space.deriv_eq_fderiv_basis, fderiv_fun_sum]  simp [- Finset.sum_neg_distrib]  congr  funext j  rw [fderiv_mul_const, fderiv_const_mul, fderiv_mul_const]  simp only [FunLike.coe_smul, Pi.smul_apply, smul_eq_mul]  rw [ Space.deriv_eq_fderiv_basis, P.magneticFieldMatrix_space_deriv_eq_time_deriv hA2 t x i j k]  simp [ Time.deriv_eq]  field_simp  any_goals apply Differentiable.differentiableAt  · exact fieldStrengthMatrix_differentiable_space hA2 t  · apply Differentiable.mul_const    exact fieldStrengthMatrix_differentiable_space hA2 t  · exact fieldStrengthMatrix_differentiable_time hA2 x  · intro i _    apply Differentiable.differentiableAt    apply Differentiable.const_mul    apply Differentiable.mul_const    exact fieldStrengthMatrix_differentiable_space hA2 t  · intro i _    apply Differentiable.differentiableAt    apply Differentiable.mul_const    exact fieldStrengthMatrix_differentiable_time hA2 x  · apply Differentiable.fun_sum    intro i _    apply Differentiable.mul_const    exact fieldStrengthMatrix_differentiable_time hA2 x
Project
Physlib
License
Apache-2.0
Commit
dd43e9e65791
Source
Physlib/Electromagnetism/Vacuum/IsPlaneWave.lean:462-500

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