All proofs
Project-declaredLean 4.32.0 · mathlib@81a5d257c8e4

Pure prod P component

TensorSpecies.Tensor.Pure.prodP_component

Project documentation

Given two pure tensors p1 : Pure S c and p2 : Pure S c, prodP p p2 is the tensor product of those tensors returning an element in Pure S (Sum.elim c c1 ∘ ⇑finSumFinEquiv.symm). -/ def Pure.prodP {n1 n2} {c : Fin n1 → C} {c1 : Fin n2 → C} (p1 : Pure S c) (p2 : Pure S c1) : Pure S (Fin.append c c1) := Fin.addCases (fun i => LinearEquiv.cast (R := k)...

Exact Lean statement

lemma Pure.prodP_component {n m : ℕ} {c : Fin n → C} {c1 : Fin m → C}
    (p : Pure S c) (p1 : Pure S c1)
    (φ : ComponentIdx (Fin.append c c1)) :
    (p.prodP p1).component φ = p.component (ComponentIdx.prod φ).1 *
    p1.component (ComponentIdx.prod φ).2

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
lemma Pure.prodP_component {n m : } {c : Fin n  C} {c1 : Fin m  C}    (p : Pure S c) (p1 : Pure S c1)    (φ : ComponentIdx (Fin.append c c1)) :    (p.prodP p1).component φ = p.component (ComponentIdx.prod φ).1 *    p1.component (ComponentIdx.prod φ).2 := by  simp [component]  rw [ finSumFinEquiv.prod_comp]  simp only [finSumFinEquiv_apply_left, finSumFinEquiv_apply_right,    Fintype.prod_sum_type]  congr  · funext x    simp only [prodP_apply_castAdd, LinearEquiv.cast_apply, ComponentIdx.prod, Equiv.coe_fn_mk]    generalize_proofs h1 h2 h3    generalize p x = p'    generalize c x = c' at *    subst h3    rfl  · funext x    simp only [prodP_apply_natAdd, LinearEquiv.cast_apply, ComponentIdx.prod, Equiv.coe_fn_mk]    generalize_proofs h1 h2 h3    generalize p1 x = p1'    generalize c1 x = c1' at *    subst h3    rfl
Project
Physlib
License
Apache-2.0
Commit
dd43e9e65791
Source
Physlib/Relativity/Tensors/Product.lean:182-205

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