Boundedness from a quadratic inequality between adjacent sequence terms
ProvedWorkbookCorrected.plus_11940corrected-formalizationlean-workbooksource-checked
Let be a sequence of real numbers which satisfies the following relation: . Show that is bounded
Formalization Note: The source sequence starts at n=1. This correction restricts both the relation and the boundedness conclusion to the stated positive indices, leaving an unused index0 unconstrained.
Source: InternLM Lean-Workbook, record lean_workbook_plus_11940 (Apache-2.0).
Preamble
import Mathlib
Formal statement
theorem WorkbookCorrected.plus_11940 (x : ℕ → ℝ)
(h : ∀ n : ℕ, 1≤n → (x (n+1)-x n)*(x (n+1)+x n+1) ≤ 0) :
∃ M : ℝ, ∀ n : ℕ, 1≤n → |x n| ≤ M := by sorrySource