All proofs
Project-declaredLean 4.32.0 · mathlib@81a5d257c8e4

Det time Space Basis Equiv

SpaceTime.det_timeSpaceBasisEquiv

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 det_timeSpaceBasisEquiv {d : ℕ} (c : SpeedOfLight) :
    (timeSpaceBasisEquiv (d := d) c).det = c.val

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
lemma det_timeSpaceBasisEquiv {d : } (c : SpeedOfLight) :    (timeSpaceBasisEquiv (d := d) c).det = c.val := by  rw [@LinearEquiv.coe_det]  let e := toTimeAndSpace (d := d) c  trans LinearMap.det (e.toLinearMap ∘ₗ (timeSpaceBasisEquiv (d := d) c).toLinearMap ∘ₗ    e.symm.toLinearMap)  · simp only [ContinuousLinearEquiv.toLinearEquiv_symm, LinearMap.det_conj]  have h1 : e.toLinearMap ∘ₗ (timeSpaceBasisEquiv (d := d) c).toLinearMap ∘ₗ    e.symm.toLinearMap = (c.valLinearMap.id).prodMap LinearMap.id := by    ext tx <;> simp [e, timeSpaceBasisEquiv, toTimeAndSpace, space]  rw [h1, LinearMap.det_prodMap]  simp
Project
Physlib
License
Apache-2.0
Commit
dd43e9e65791
Source
Physlib/SpaceAndTime/SpaceTime/Basic.lean:488-499

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