Encyclopedia Astrophysics Astrophysics Solar Wind From Phi Ladder

ARTICLE 3 claims 2 theorems 1 model

Astrophysics Solar Wind From Phi Ladder

Solar wind has five named speed bands; Recognition Science arranges them on a ladder where each rung is phi times the last.

The phi ladder in solar wind

The solar wind is the stream of charged particles the Sun releases into space. Observers have long sorted it into named speed bands: quiet, slow, intermediate, fast, and extreme, with slow wind near 300 to 400 km/s, fast wind near 600 to 800 km/s, and extreme events such as coronal mass ejections above 1000 km/s. These five categories are not a theoretical invention; they are the working vocabulary of heliophysics.

Recognition Science adds a specific structure to that vocabulary. The framework's phi ladder is a sequence of speeds where each rung is the golden ratio phi (about 1.618) times the rung below it. The framework models the five observed solar wind types as five rungs of such a ladder. Its machine-checked library of formal theorems proves that adjacent rungs have exactly the ratio phi, and that the number of named types is exactly five.

The ratio claim is the substantive one. Measured fast wind near 700 km/s and slow wind near 350 km/s sit close to a factor of two apart, and phi squared is about 2.618, so a two-rung gap on the ladder gives about 2.618, not 2. The framework's own numbers are a definitional choice, not a measurement: it defines the speed at rung k as phi to the k-th power, which makes the ratio between neighbors exactly phi by construction. What the theorem adds is that the ratio holds for every adjacent pair, and that the five-type count is consistent with the inductive type that names the bands.

In plain language, the module says: if you accept the five standard solar wind categories, then Recognition Science places them on a geometric ladder with a fixed multiplier, and the formal proof guarantees the ladder is internally consistent. It does not claim the measured solar wind speeds actually follow that ladder; the measured values are a separate empirical check, and the fit to a factor of two is approximate, not exact.

MODEL solarWindSpeed · IndisputableMonolith/Astrophysics/SolarWindFromPhiLadder.lean
/-- Adjacent solar wind speeds at phi-ladder rungs. -/
noncomputable def solarWindSpeed (k : ℕ) : ℝ := phi ^ k
THEOREM solarWindSpeedRatio · IndisputableMonolith/Astrophysics/SolarWindFromPhiLadder.lean
theorem solarWindSpeedRatio (k : ℕ) :
    solarWindSpeed (k + 1) / solarWindSpeed k = phi := by
  unfold solarWindSpeed
  have hpos := pow_pos phi_pos k
  rw [pow_succ, div_eq_iff hpos.ne']
  ring
THEOREM solarWindTypeCount · IndisputableMonolith/Astrophysics/SolarWindFromPhiLadder.lean
theorem solarWindTypeCount : Fintype.card SolarWindType = 5 := by decide

What this page does not claim

The measured solar wind speeds are not shown to follow the phi ladder; the fit to a factor of two is approximate. The module does not derive the existence of five solar wind types from first principles; it takes the five as given. The framework does not predict the absolute speed of any solar wind band, only the ratio between adjacent rungs.

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/SolarWindFromPhiLadder.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:

MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND