A finite sum bounded by a product of truncated terms
ProvedWorkbookSource.plus_50180inequalitieslean-workbooksource-checked
For any sequence of positive real numbers ,
This compares an additive total with the product obtained by replacing factors below one by one. The indexing is shifted by one from the source's list of 95 positive numbers.
Formalization Note: The source proposition is retained; obsolete summation notation is updated for Lean 4.33.1.
Preamble
import Mathlib open scoped BigOperators
Formal statement
theorem WorkbookSource.plus_50180 (a : ℕ → ℝ) (ha : ∀ k, 0 < a k) : ∑ k ∈ Finset.range 95, a k ≤ 94 + ∏ k ∈ Finset.range 95, max 1 (a k) := by sorry
Source