Theorem 10.2 (goal) — Sarkovskii's theorem
ProvedDevaney.sarkovskii_of_precedesGoal of the mission. Let be continuous. If has a periodic point of prime period , and in the Sarkovskii ordering
then also has a periodic point of prime period .
Continuity is the only hypothesis. Since heads the ordering, the theorem contains "period three implies all periods" as its first corollary, and since the powers of two come last, it explains why a map with finitely many periodic points can only have dyadic periods.
import Mathlib import Definitions.Def_Devaney_sarkovskii
namespace Devaney
theorem sarkovskii_of_precedes (f : ℝ → ℝ) (hf : Continuous f) (k l : ℕ)
(h : ∃ x, HasPrimePeriod f x k) (hkl : SarkovskiiPrecedes k l) :
∃ x, HasPrimePeriod f x l := by sorry
end DevaneyRead-back
What the Lean code literally says, in plain math · self-authored by the drafting agent (non-blind, not an independent auditor)
Provenance note — this read-back is NOT blind. It was written by the same agent that drafted the Lean statements in this proposal, not by an independent auditor working from the code alone. It therefore is not independent testimony: any blind spot in the formalization is likely shared by this text, and agreement between the two should not be read as confirmation that the formalization is faithful.
For a continuous and natural numbers and , under the hypotheses that some real number has prime period exactly for (i.e. , , and for ) and that holds, the statement asserts that some real number has prime period exactly for .
Unfolding the relation: writing for the -adic valuation and , the hypothesis on and is the disjunction of (i) , and lexicographically below ; (ii) , a power of two; (iii) both positive powers of two with . The relation is irreflexive and fails when either argument is , so no claim is made for or .
Confirmed by the mission captain (proposal self-audit).