theorem
proved
term proof
total_viscous_nonpos
show as:
view Lean formalization →
formal statement (Lean)
42theorem total_viscous_nonpos {siteCount : ℕ}
43 (viscousField : Fin siteCount → ℝ)
44 (pointwise_nonpos : ∀ i : Fin siteCount, viscousField i ≤ 0) :
45 total viscousField ≤ 0 := by
proof body
Term-mode proof.
46 unfold total
47 exact Finset.sum_nonpos (fun i _ => pointwise_nonpos i)
48
49/-! ## Gap 2: Sub-Kolmogorov Viscous Domination (PROVED)
50
51Pure real arithmetic: if mu * h^2 <= nu then mu <= nu / h^2. -/
52