theorem
proved
term proof
negative_eigenvalue_count
show as:
view Lean formalization →
formal statement (Lean)
146theorem negative_eigenvalue_count :
147 (Finset.univ.filter (fun i : Fin 4 => η i i < 0)).card = 1 := by
proof body
Term-mode proof.
148 suffices h : Finset.univ.filter (fun i : Fin 4 => η i i < 0) = {(0 : Fin 4)} by
149 rw [h]; simp
150 ext i; fin_cases i <;> simp [Finset.mem_filter, η_00, η_11, η_22, η_33]
151
152/-- Count of positive diagonal entries = 3 (spatial). -/