All proofs
Project-declaredLean 4.32.0 · mathlib@81a5d257c8e4

Pa' eq

PureU1.VectorLikeEvenPlane.Pa'_eq

Project documentation

A point in the span of the whole basis. -/ def Pa' (f : (Fin n.succ) ⊕ (Fin n) → ℚ) : (PureU1 (2 * n.succ)).LinSols := ∑ i, f i • basisa i lemma Pa'_P'_P!' (f : (Fin n.succ) ⊕ (Fin n) → ℚ) : Pa' f = P' (f ∘ Sum.inl) + P!' (f ∘ Sum.inr) := by exact Fintype.sum_sum_type _ /-! ### E.6. The combined basis vectors are linearly independent -/ theorem basisa_lin...

Exact Lean statement

lemma Pa'_eq (f f' : (Fin n.succ) ⊕ (Fin n) → ℚ) : Pa' f = Pa' f' ↔ f = f'

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
lemma Pa'_eq (f f' : (Fin n.succ) ⊕ (Fin n)  ) : Pa' f = Pa' f'  f = f' := by  refine Iff.intro (fun h => (funext (fun i => ?_))) (fun h => ?_)  · rw [Pa', Pa'] at h    have h1 : ∑ i : Fin (succ n) ⊕ Fin n, (f i + (- f' i)) • basisa i = 0 := by      simp only [add_smul, neg_smul]      rw [Finset.sum_add_distrib]      rw [h]      rw [ Finset.sum_add_distrib]      simp    have h2 := Fintype.linearIndependent_iff.mp basisa_linear_independent _ h1    linarith [h2 i]  · rw [h]
Project
Physlib
License
Apache-2.0
Commit
dd43e9e65791
Source
Physlib/QFT/QED/AnomalyCancellation/Even/BasisLinear.lean:847-858

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