All proofs
Project-declaredLean 4.32.0 · mathlib@81a5d257c8e4

Timelike spatial lt time squared

Lorentz.Vector.timelike_spatial_lt_time_squared

Plain-language statement

For timelike vectors, the spatial norm squared is strictly less than the time component squared

Exact Lean statement

lemma timelike_spatial_lt_time_squared {d : ℕ} {v : Vector d}
    (hv : causalCharacter v = .timeLike) :
    ⟪spatialPart v, spatialPart v⟫_ℝ < (timeComponent v)^2

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
lemma timelike_spatial_lt_time_squared {d : } {v : Vector d}    (hv : causalCharacter v = .timeLike) :    ⟪spatialPart v, spatialPart v⟫_ < (timeComponent v)^2 := by  rw [timeLike_iff_norm_sq_pos, minkowskiProduct_toCoord] at hv  simp only [PiLp.inner_apply]  have h_time : timeComponent v = v (Sum.inl 0) := rfl  simp [h_time, pow_two]  have h_norm_pos : 0 < v (Sum.inl 0) * v (Sum.inl 0) -                  ∑ i, v (Sum.inr i) * v (Sum.inr i) := hv  exact lt_of_sub_pos h_norm_pos
Project
Physlib
License
Apache-2.0
Commit
dd43e9e65791
Source
Physlib/Relativity/Tensors/RealTensor/Vector/Causality/TimeLike.lean:110-119

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