All proofs
Project-declaredLean 4.32.0 · mathlib@81a5d257c8e4

Eval T perm T

TensorSpecies.Tensor.evalT_permT

Plain-language statement

Commuting evaluation with permutations.

Exact Lean statement

lemma evalT_permT {n m : ℕ} {c : Fin (n + 1) → C} {c' : Fin (m + 1) → C}
    {σ : Fin (n + 1) → Fin (m + 1)}
    (h : IsReindexing c' c  σ) (i : Fin (n + 1)) (x : basisIdx (c i)) (t : Tensor S c') :
    evalT i x (permT _ h t) = permT _ (h.succAbove i)
      (evalT (σ i) (basisIdxCongr (by simp [h.2]) x) t)

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
lemma evalT_permT {n m : } {c : Fin (n + 1)  C} {c' : Fin (m + 1)  C}    {σ : Fin (n + 1)  Fin (m + 1)}    (h : IsReindexing c' c  σ) (i : Fin (n + 1)) (x : basisIdx (c i)) (t : Tensor S c') :    evalT i x (permT _ h t) = permT _ (h.succAbove i)      (evalT (σ i) (basisIdxCongr (by simp [h.2]) x) t) := by  induction' t using Tensor.induction_on_basis with b a t h t1 t2 h1 h2  · simp only [evalT_basis, permT_basis]    by_cases h1 : (basisIdxCongr (by simp [h.2])) (b (σ i)) = x    · have h1' : basisIdxCongr (by simp [h.2]) x = b (σ i) := by subst h1; simp      simp only [h1, ↓reduceIte, h1', permT_basis]      congr      funext j      refine (Equiv.eq_symm_apply (basisIdxCongr _)).mp ?_      simp only [basisIdxCongr_symm]      erw [basisIdxCongr_apply_apply]      apply ComponentIdx.congr_right      split_ifs with h2      · simp [h2]      · have hne : σ (i.succAbove j)  ((σ i).pred h2).succ := by          rw [Fin.succ_pred]; exact fun heq => Fin.succAbove_ne i j (h.1.injective heq)        rw [show (σ i).succAbove = (((σ i).pred h2).succ).succAbove from by rw [Fin.succ_pred]]        exact (Fin.succ_succAbove_predAbove hne).symm    · have h1' : b (σ i)  basisIdxCongr (by simp [h.2]) x := by by_contra h2; simp [h2] at h1      simp [h1, h1']  · simp  · simp only [map_smul, h]  · simp only [map_add, h1, h2]
Project
Physlib
License
Apache-2.0
Commit
dd43e9e65791
Source
Physlib/Relativity/Tensors/Evaluation.lean:159-185

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