Encyclopedia Astrophysics Astrophysics Coronal Lyapunov Time Coronal Time Strictly Increasing
ARTICLE 3 claims 2 theorems 1 hypothesis
Astrophysics Coronal Lyapunov Time Coronal Time Strictly Increasing
In the solar corona, the framework's model places the chaos timescale on a ladder where each rung is exactly phi times longer than the one below.
The increasing coronal timescale
The solar corona, the Sun's outer atmosphere, is threaded by magnetic fields that twist and reconnect, releasing energy in flares. Before that reconnection happens, the field lines evolve chaotically: nearby trajectories separate exponentially fast. The timescale for that separation is the Lyapunov time, the time it takes for two initially close field-line paths to diverge by a factor of e. In the Recognition Science framework, this chaotic timescale is modeled as sitting on a ladder of characteristic coronal timescales, where each rung is a fixed multiple of the one below it.
The framework's library of machine-checked formal theorems defines a reference timescale, the Alfvén crossing time, the fastest coherent mode of the corona, roughly one second at one solar radius with a magnetic field near 100 gauss. From that reference, the model places the coronal timescale at ladder rung k as the reference timescale multiplied by the golden ratio raised to the k-th power. The theorem coronalTime_strictly_increasing proves that this sequence is strictly increasing: each rung is longer than the one before it. The proof is short: the golden ratio is greater than 1, and multiplying a positive timescale by a number greater than 1 makes it larger.
The same theorem also establishes the exact ratio between adjacent rungs. Each coronal timescale is the previous one multiplied by the golden ratio, so the ratio of consecutive timescales is exactly phi. The framework's certificate bundles these facts: every timescale is positive, each step multiplies by phi, the sequence strictly increases, and adjacent ratios equal phi. This is the same phi-ladder structure the framework applies across solar, stellar, and astrophysical timescales, from granulation at about a minute to active region emergence at about a day.
In Recognition Science, this ladder is not a free fit. The framework derives the golden ratio as the unique self-similar scaling from its cost function, and the coronal timescales are modeled to follow that same structure. What the theorem does not claim is that the solar corona actually behaves this way. The ladder is a model, a definitional choice, and the theorem is a fact about the model's arithmetic. Whether real coronal timescales follow the phi ratio is an empirical question. The framework names a falsifier: if two adjacent coronal Lyapunov timescales are measured to differ by a ratio systematically outside the range 1.5 to 1.8 across a corpus of at least three active regions, the model fails that test.
The strictly increasing property itself is modest arithmetic, but it is the load-bearing floor of the ladder. Without it, the model could not order coronal processes by duration, and the phi ratio between rungs would be meaningless. The theorem guarantees that the framework's timescale ladder is a genuine ordering, from the fastest Alfvén crossing to the slowest active region emergence, before any comparison to observation begins.
THEOREM coronalTime_strictly_increasing · IndisputableMonolith/Astrophysics/CoronalLyapunovTime.lean
theorem coronalTime_strictly_increasing (k : ℕ) :
coronalTime k < coronalTime (k + 1) := by
rw [coronalTime_succ_ratio]
have hk : 0 < coronalTime k := coronalTime_pos k
have hphi_gt_one : (1 : ℝ) < phi := by
have := Constants.phi_gt_onePointFive; linarith
have : coronalTime k * 1 < coronalTime k * phi :=
mul_lt_mul_of_pos_left hphi_gt_one hk
simpa using this
THEOREM coronalTime_succ_ratio · IndisputableMonolith/Astrophysics/CoronalLyapunovTime.lean
theorem coronalTime_succ_ratio (k : ℕ) :
coronalTime (k + 1) = coronalTime k * phi := by
unfold coronalTime; rw [pow_succ]; ring
HYPOTHESIS coronalTime_strictly_increasing · IndisputableMonolith/Astrophysics/CoronalLyapunovTime.lean
theorem coronalTime_strictly_increasing (k : ℕ) :
coronalTime k < coronalTime (k + 1) := by
rw [coronalTime_succ_ratio]
have hk : 0 < coronalTime k := coronalTime_pos k
have hphi_gt_one : (1 : ℝ) < phi := by
have := Constants.phi_gt_onePointFive; linarith
have : coronalTime k * 1 < coronalTime k * phi :=
mul_lt_mul_of_pos_left hphi_gt_one hk
simpa using this
What this page does not claim
The theorem does not claim that the solar corona actually follows the phi-ladder; that is an empirical hypothesis with a named falsifier. The theorem does not claim that Lyapunov times are the only chaotic timescale in the corona. The theorem does not derive the golden ratio itself; it assumes the framework's constants.
Verify this page
Every tagged claim above names its theorem. To check one yourself rather than trust this page, elaborate the source module with Lean 4 and audit its axiom basis:
$ lake env lean IndisputableMonolith/Astrophysics/CoronalLyapunovTime.lean
expected axiom basis: [propext, Classical.choice, Quot.sound] (the Lean kernel's standard three; no RS-specific axioms)
A page whose claims cannot be reproduced this way does not ship. In production, every anchor links to the exact declaration in the public source release, and this block carries the build receipt for the page itself.
Derived articles
This page is generated by a question-recursion engine: the questions its answers raise become the next pages. The current agenda, with open targets marked red:
- What is the measured Lyapunov time for a solar active region, and how does it compare to the phi-ladder prediction?
- How does the Alfvén crossing time vary with magnetic field strength and density in the corona?
- What other coronal timescales, beyond the five listed, might sit on the phi-ladder?
- Does the same phi-ladder structure hold for stellar coronae beyond the Sun?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM coronalTime_strictly_increasing · IndisputableMonolith/Astrophysics/CoronalLyapunovTime.lean
theorem coronalTime_strictly_increasing (k : ℕ) : coronalTime k < coronalTime (k + 1) := by rw [coronalTime_succ_ratio] have hk : 0 < coronalTime k := coronalTime_pos k have hphi_gt_one : (1 : ℝ) < phi := by have := Constants.phi_gt_onePointFive; linarith have : coronalTime k * 1 < coronalTime k * phi := mul_lt_mul_of_pos_left hphi_gt_one hk simpa using thisThe theorem coronalTime_strictly_increasing proves that the coronal timescale sequence is strictly increasing, each rung longer than the one before. coronalTime_strictly_increasing · IndisputableMonolith/Astrophysics/CoronalLyapunovTime.leanTHEOREM coronalTime_succ_ratio · IndisputableMonolith/Astrophysics/CoronalLyapunovTime.lean
theorem coronalTime_succ_ratio (k : ℕ) : coronalTime (k + 1) = coronalTime k * phi := by unfold coronalTime; rw [pow_succ]; ringEach coronal timescale is the previous one multiplied by the golden ratio, so the ratio of consecutive timescales is exactly phi. coronalTime_succ_ratio · IndisputableMonolith/Astrophysics/CoronalLyapunovTime.leanHYPOTHESIS coronalTime_strictly_increasing · IndisputableMonolith/Astrophysics/CoronalLyapunovTime.lean
theorem coronalTime_strictly_increasing (k : ℕ) : coronalTime k < coronalTime (k + 1) := by rw [coronalTime_succ_ratio] have hk : 0 < coronalTime k := coronalTime_pos k have hphi_gt_one : (1 : ℝ) < phi := by have := Constants.phi_gt_onePointFive; linarith have : coronalTime k * 1 < coronalTime k * phi := mul_lt_mul_of_pos_left hphi_gt_one hk simpa using thisThe framework names a falsifier: if two adjacent coronal Lyapunov timescales are measured to differ by a ratio systematically outside the range 1.5 to 1.8 across at least three active regions, the model fails. coronalTime_strictly_increasing · IndisputableMonolith/Astrophysics/CoronalLyapunovTime.lean