A harmonic lower bound for an implicit quadratic recurrence
ProvedWorkbookCorrected.plus_10014corrected-formalizationlean-workbooksource-checked
Let be a sequence of positive real numbers that satisfies and for every natural number . Prove that for every natural number .
Formalization Note: The original formalization omitted the source positivity assumption and quantified the recurrence and conclusion at index0. This correction restores positivity and the source indexing n≥1.
Source: InternLM Lean-Workbook, record lean_workbook_plus_10014 (Apache-2.0).
Preamble
import Mathlib
Formal statement
theorem WorkbookCorrected.plus_10014 (a : ℕ → ℝ) (h0 : a 1=1) (hp : ∀ n : ℕ, 1≤n → 0<a n)
(h : ∀ n : ℕ, 1≤n → (a (n+1))^2+a (n+1)=a n) :
∀ n : ℕ, 1≤n → a n ≥ 1/(n:ℝ) := by sorrySource