A strict rational lower bound for a quadratic recurrence
ProvedWorkbookCorrected.plus_13202corrected-formalizationlean-workbooksource-checked
Prove that for the sequence defined by , we have .
Formalization Note: The recurrence is restricted to positive indices, as in the source sequence starting at1. The complete lower bound is proved for every n≥3.
Source: InternLM Lean-Workbook, record lean_workbook_plus_13202 (Apache-2.0).
Preamble
import Mathlib
Formal statement
theorem WorkbookCorrected.plus_13202 (x : ℕ → ℝ) (hx : x 1=1/2)
(h : ∀ n : ℕ, 1≤n → x (n+1)=x n+(x n/(n:ℝ))^2) :
∀ n : ℕ, 3≤n → x n > 6*(n:ℝ)/(5*(n:ℝ)+6) := by sorrySource