All proofs
Project-declaredLean 4.32.0 · mathlib@81a5d257c8e4

Conj T contr T

ConjTensorSpecies.conjT_contrT

Plain-language statement

Conjugation commutes with contraction: conjugating a contracted tensor equals contracting the conjugate on the bar-images of the same two slots.

Exact Lean statement

lemma conjT_contrT {n : ℕ} {c : Fin (n + 1 + 1) → C} (i j : Fin (n + 1 + 1))
    (h : i ≠ j ∧ S.τ (c i) = c j) (t : S.Tensor c) :
    S.conjT (contrT n i j h t)
      = contrT n i j (S.contrCond_bar h) (S.conjT t)

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
lemma conjT_contrT {n : } {c : Fin (n + 1 + 1)  C} (i j : Fin (n + 1 + 1))    (h : i  j  S.τ (c i) = c j) (t : S.Tensor c) :    S.conjT (contrT n i j h t)      = contrT n i j (S.contrCond_bar h) (S.conjT t) := by  apply componentMap_ext  intro φ  rw [componentMap_conjT, componentMap_eq_repr, Tensor.contrT_basis_repr_apply]  have hrhs := Tensor.contrT_basis_repr_apply (S := S.toTensorSpecies) (c := fun i => S.bar (c i))    (i := i) (j := j) (S.contrCond_bar h) (S.conjT t) φ  rw [componentMap_eq_repr]  refine Eq.trans ?_ hrhs.symm  rw [star_sum]  -- `componentReindex` carries the `bar`-side contraction section onto the `c`-side one: it  -- commutes with `dropPair` definitionally, so the section bijection is just `subtypeEquiv`.  have hmem :  a : ComponentIdx (S := S.toTensorSpecies) (S.bar ∘ c),      a  ComponentIdx.DropPairSection φ         S.componentReindex c a           ComponentIdx.DropPairSection (S.componentReindex (c ∘ i.succSuccAbove j) φ) := by    intro a    simp only [ComponentIdx.DropPairSection, Finset.mem_filter, Finset.mem_univ, true_and]    exact (Equiv.apply_eq_iff_eq (S.componentReindex (c ∘ i.succSuccAbove j))).symm  refine (Finset.sum_equiv (Equiv.subtypeEquiv (S.componentReindex c) hmem)    ?_ ?_).symm  · exact fun _ => iff_of_true (Finset.mem_attach _ _) (Finset.mem_attach _ _)  intro b'' _  simp only [Equiv.subtypeEquiv_apply]  erw [ componentMap_eq_repr (S.bar ∘ c), componentMap_conjT, componentMap_eq_repr c t,    star_mul']  congr 1  rw [S.conj_contrComm (c i) ((S.componentReindex c b''.1) i)        (basisIdxCongr (by rw [h.2]) ((S.componentReindex c b''.1) j)),    show (S.componentReindex c b''.1) i = Equiv.cast (S.barIdx_eq (c i)) (b''.1 i) from rfl,    show (S.componentReindex c b''.1) j = Equiv.cast (S.barIdx_eq (c j)) (b''.1 j) from rfl,    Equiv.symm_apply_apply]  congr 2  exact congrArg (b (S.τ (S.bar (c i)))) (basisIdxCongr_heq_arg _ _    (HEq.symm ((cast_heq _ _).trans ((cast_heq _ _).trans (cast_heq _ _)))))
Project
Physlib
License
Apache-2.0
Commit
dd43e9e65791
Source
Physlib/Relativity/Tensors/Conjugation/Basic.lean:339-375

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