The first course in the dm³ sequence. Students build from topology to contact manifolds, derive the n-bonacci ladder from first principles, and arrive at the embodiment threshold τ = 2. No prior differential geometry required — only curiosity and the willingness to follow a seed to its canopy.
Before a student can use the operator chain, they must see it. Phase C of 101 compresses the necessary mathematical vocabulary into four weeks: sets and maps, smooth manifolds, differential forms, and the contact structure α = dz − r²dθ on ℝ³. The Cajueiro seed is the frame: everything visible was once invisible and compressed.
Phase K asks: what is stable, and how do we know? The LAW3M ODE is the core dynamical system. Students derive ε₀ = 1/3 from the Lyapunov energy function V = (r−1)²/2, locate the Whitney A₁ fold threshold r★ ≈ 0.776, and learn why det(J) ≈ −0.364 is not the same number as ε₀. Precision here pays off in every course that follows.
Each rung of the ladder is a root of an n-th degree characteristic polynomial. The sequence π, φ, η, Δ, Σ, Ω converges to τ = 2 — the diameter of the circle the limit cycle traces, the embodiment threshold, the fixed point of G. Students climb all seven rungs.
Phase U of 101 introduces Lean 4 and the AXLE proof environment. Students verify a single small claim from Phase K — the Lyapunov bound ε₀ = 1/3 — and publish the result. The Cajueiro cycle completes: seed→canopy→new seed.
The second course applies the dm³ framework to landmark results in modern mathematics and biology. Lorenz (chaos), Turing (morphogenesis), Mandelbrot (fractals), Poincaré–Einstein (relativity contact structure), and Waddington (epigenetic landscape) — each chapter is a case study in G = U∘F∘K∘C in the wild. The μ-η-Δ arc in Weeks 13–14 anchors the Turing chapter.
Phase C of 102 compresses chaos theory through the Lorenz system, establishing the contrast that makes Turing's pattern-formation result surprising: chaos and pattern emerge from structurally similar nonlinear systems. The student who understands why Lorenz is chaotic understands why Turing's result is remarkable.
The threshold of 102 is the recognition that contact geometry is not an invention of the dm³ framework — it is the natural language for constrained dynamics, from Poincaré's three-body work to Einstein's spacetime. This phase reads ch-poincare-einstein.html and connects the contact condition to the null-cone structure of special relativity.
Mandelbrot showed that the boundary between bounded and unbounded iteration is infinitely complex — a fractal. Waddington showed that development follows valleys in an energy landscape. Both are fold-phase phenomena in dm³ terms: the Whitney fold is the edge between two basins, and every valley in Waddington's landscape is a Lyapunov minimum. Weeks 9–12 prepare the ground for the Turing arc in Weeks 13–14.
The μ-η-Δ arc is the culmination of 102. Weeks 13–14 work through ch-turing-morphogenesis.html in full: the 1952 paper, the RD equations, the Gierer-Meinhardt model, and the dm³ reading (Turing instability as G-orbit divergence from the uniform state). Week 15 synthesises all five scientists. Week 16 is the final publication.
turing_instability axiom + G_stabilises_turing_pattern theoremsorry — it is Tier C (requires μ-operator mechanisation first)The third course is for those who want to build the proof, not just read it. Students work directly in AXLE, clearing sorry stubs tier by tier — from the simplest algebraic identities (Tier A) to the contact-geometric fixed-point theorems (Tier C). The course ends with a co-authored Zenodo paper contributing new mechanised proofs to the series.
Before clearing any sorry, the student must understand the full AXLE proof architecture. Weeks 1–3 build Lean 4 tactic fluency and survey the Mathlib library. Week 4 clears the first Tier-A sorrys — algebraic identities and basic ODE existence results that require only `ring`, `norm_num`, and `linarith`.
gronwall_outer identifier is a Lean name for an auxiliary lemma — it is NOT a claim that ε₀=1/3 comes from GronwallMathlib.Analysis.ODE.Gronwall: a real Mathlib import used for ODE boundsgronwall_outer: an AXLE-specific identifier for an outer basin lemmaring: proves equalities in commutative rings — for algebraic identitiesnorm_num: proves numerical facts (e.g., 1/3 < 1/2)linarith: proves linear arithmetic goalsnlinarith: nonlinear arithmetic — needed for quadratic inequalitiesintro h: introduce a hypothesisapply lemma: reduce to subgoals via a lemmaexact h: close goal with exact termsimp [lemma1, lemma2]: simplify using lemmasconstructor: split a conjunctionMathlib.Analysis.ODE.Gronwall: Gronwall inequality for ODE boundsMathlib.Analysis.ODE.PicardLindelof: existence and uniqueness for Lipschitz ODEsMathlib.Topology.MetricSpace.Contraction: Banach fixed-point theoremMathlib.Analysis.SpecialFunctions.Pow: exponential decay estimatesTier B is the analytic core: proving ε₀ = 1/3 from V=(r−1)²/2 in Lean 4, and bounding the Whitney fold numerically at r★ ≈ 0.776. These require Mathlib.Analysis.ODE and careful handling of the distinction between the Lyapunov bound, the Gronwall bound, and the Jacobian determinant.
lyapunov_V : ℝ → ℝ := fun r => (r - 1)^2 / 2∀ r ∈ Ioo (2/3 : ℝ) (4/3), deriv lyapunov_V r * law3m_r r ≤ 0nlinarith after expanding — it does NOT invoke Gronwallgronwall_outer is a separate lemma bounding the outer basin — cite it carefullyLyapunov.lean in AXLE with the key stability theoremnative_decide or norm_num with rational interval boundsTier C is the frontier: proving that G = U∘F∘K∘C preserves the contact form α, and that the fixed point G(x★)=x★ is τ=2. This requires building contact geometry structures in Lean 4 — structures that do not yet exist in Mathlib. Weeks 9–12 build the necessary scaffolding; Week 12 makes the first Tier-C attempt.
structure ContactManifold (M : Type*) extends SmoothManifold Mα : DifferentialForm 1 M (the contact form)contact_cond : ∀ x, α x ∧ (dα) x ≠ 0 (non-degeneracy)Mathlib.Geometry.Manifold.DeRhamCohomologytheorem G_contactomorphism : G.pullback α = αMathlib.Topology.MetricSpace.Contraction.contractionMappingThe final phase is publication. Students write a co-authored technical paper documenting every cleared sorry, every proof technique, and every open problem encountered. The paper is deposited on Zenodo with a DOI under CC BY 4.0, and linked from the AXLE GitHub repo as an official contribution to the series.