Example 8.8 (goal) — is chaotic on for
ProvedDevaney.quadratic_chaotic_lambdaGoal of the mission. For every , the quadratic map is chaotic, in Devaney's sense, on its invariant Cantor set
That is: has sensitive dependence on initial conditions on , it is topologically transitive on , and its periodic points are dense in .
This is the book's flagship example of a chaotic system, and the prototype for every later "chaos via symbolic dynamics" argument in the text: the chaos is established not by direct analysis of , whose invariant set has no closed-form description, but by transporting the corresponding properties of the shift map along the itinerary conjugacy.
import Mathlib import Definitions.Def_Devaney_chaos import Definitions.Def_Devaney_conjugacy import Definitions.Def_Devaney_sigma2 import Definitions.Def_Devaney_quadratic
namespace Devaney
theorem quadratic_chaotic_lambda (μ : ℝ) (hμ : 2 + Real.sqrt 5 < μ) :
Chaotic (Lambda μ) (quadratic μ) := 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 real parameter satisfying , the statement asserts the chaos predicate of this bundle for the map on the set . Unfolding, it is the conjunction of three claims:
-
Sensitive dependence. There exists such that for every and every there are and with and .
-
Topological transitivity. For all sets open in with and , there exists such that .
-
Density of periodic points. , closure in .
The set is defined by a condition on all iterates including , so ; no separate hypothesis asserts that it is nonempty, a Cantor set, or closed.
Confirmed by the mission captain (proposal self-audit).