All proofs
Project-declaredLean 4.32.0 · mathlib@81a5d257c8e4

Space Time integral eq time space integral

SpaceTime.spaceTime_integral_eq_time_space_integral

Project documentation

The equivalence on of SpaceTime taking (1, 0, 0, ...) to of (c, 0, 0, ....) and keeping all other components the same. -/ def timeSpaceBasisEquiv {d : ℕ} (c : SpeedOfLight) : SpaceTime d ≃L[ℝ] SpaceTime d where toFun x := fun μ => match μ with | Sum.inl 0 => c.val * x (Sum.inl 0) | Sum.inr i => x (Sum.inr i) invFun x := fun μ => match μ with | Sum.i...

Exact Lean statement

lemma spaceTime_integral_eq_time_space_integral {M} [NormedAddCommGroup M]
    [NormedSpace ℝ M] {d : ℕ} (c : SpeedOfLight)
    (f : SpaceTime d → M) :
    ∫ x : SpaceTime d, f x ∂(volume) =
    c.val • ∫ tx : Time × Space d, f ((toTimeAndSpace c).symm tx) ∂(volume.prod volume)

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
lemma spaceTime_integral_eq_time_space_integral {M} [NormedAddCommGroup M]    [NormedSpace  M] {d : } (c : SpeedOfLight)    (f : SpaceTime d  M) :    ∫ x : SpaceTime d, f x ∂(volume) =    c.val • ∫ tx : Time × Space d, f ((toTimeAndSpace c).symm tx) ∂(volume.prod volume) := by  symm  have h1 : ∫ tx : Time × Space d, f ((toTimeAndSpace c).symm tx) ∂(volume.prod volume)    = ∫ x : SpaceTime d, f x ∂((ENNReal.ofReal (c⁻¹)) • volume) := by    apply MeasureTheory.MeasurePreserving.integral_comp    · exact toTimeAndSpace_symm_measurePreserving c    · exact (toTimeAndSpace c).symm.toHomeomorph.measurableEmbedding  rw [h1]  simp
Project
Physlib
License
Apache-2.0
Commit
dd43e9e65791
Source
Physlib/SpaceAndTime/SpaceTime/Basic.lean:566-578

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