All proofs
Project-declaredLean 4.32.0 · mathlib@81a5d257c8e4

VAbs sum sq row eq one

CKMMatrix.VAbs_sum_sq_row_eq_one

Plain-language statement

The absolute value squared of any row of a CKM matrix is 1, in terms of Vabs.

Exact Lean statement

lemma VAbs_sum_sq_row_eq_one (V : Quotient CKMMatrixSetoid) (i : Fin 3) :
    (VAbs i 0 V) ^ 2 + (VAbs i 1 V) ^ 2 + (VAbs i 2 V) ^ 2 = 1

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
lemma VAbs_sum_sq_row_eq_one (V : Quotient CKMMatrixSetoid) (i : Fin 3) :    (VAbs i 0 V) ^ 2 + (VAbs i 1 V) ^ 2 + (VAbs i 2 V) ^ 2 = 1 := by  obtain V, hV := Quot.exists_rep V  subst hV  have hV := V.prop  rw [mem_unitaryGroup_iff] at hV  have ht := congrFun (congrFun hV i) i  simp only [mul_apply, star_apply, RCLike.star_def, Fin.sum_univ_three, Fin.isValue,    one_apply_eq] at ht  rw [mul_conj, mul_conj, mul_conj] at ht  repeat rw [ Complex.sq_norm] at ht  rw [ ofReal_inj]  simp_all only [SetLike.coe_mem, Unitary.mul_star_self_of_mem, Fin.isValue, ofReal_pow, ofReal_add,    ofReal_one]  exact ht
Project
Physlib
License
Apache-2.0
Commit
dd43e9e65791
Source
Physlib/Particles/FlavorPhysics/CKMMatrix/Relations.lean:29-43

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