Encyclopedia Astrophysics Astrophysics Solar Wind From Phi Ladder Solar Wind Cert
ARTICLE 2 claims 2 theorems
Astrophysics Solar Wind From Phi Ladder Solar Wind Cert
A machine-checked certificate packages two formal facts about the solar wind: five named types and a golden-ratio speed ratio between adjacent rungs.
The solar wind certificate
The solar wind is the stream of charged particles the Sun releases into space. It has long been described by a few speed bands: slow wind near 300 to 400 kilometers per second, fast wind near 600 to 800, and extreme events such as coronal mass ejections above 1,000. These bands are empirical, measured by spacecraft. The Recognition Science framework models them as rungs on a ladder of speeds, where each rung is the golden ratio, about 1.618, times the one below it.
In the framework's machine-checked library of formal theorems, a declaration called SolarWindCert bundles two proved statements. The first is that the solar wind has exactly five canonical types: quiet, slow, intermediate, fast, and extreme. The second is that the ratio of speeds on adjacent rungs of the ladder equals the golden ratio. The certificate is a single object that packages these two facts together, and the library checks that the package is consistent.
The five-type count is a formal theorem: the library proves that the finite set of solar wind types has cardinality five. The speed ratio is also a formal theorem, derived from the definition of the speed ladder. Neither statement depends on any unproved assumption inside the library; the proofs are checked mechanically. What the certificate does not do is assert that the solar wind in nature actually follows this ladder. The formal facts are about the framework's model, not about spacecraft data.
In Recognition Science, the ladder itself is a modeling choice: the framework defines solar wind speed as the golden ratio raised to an integer power. The certificate records that the two stated properties hold of that definition. Whether real solar wind speeds match the ladder is an empirical question, not a theorem. The certificate is a precise statement of what the framework's account says, and it leaves the comparison with measured wind speeds to observation.
The value of the certificate is clarity. It separates the formal claim, which is checked, from the physical claim, which is not. A reader who wants to know what the framework actually proves about the solar wind can point to SolarWindCert and read its two fields. A reader who wants to know whether the solar wind obeys the golden ratio must look elsewhere, at measurements and their uncertainties.
THEOREM solarWindTypeCount · IndisputableMonolith/Astrophysics/SolarWindFromPhiLadder.lean
theorem solarWindTypeCount : Fintype.card SolarWindType = 5 := by decide
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
What this page does not claim
No claim that real solar wind speeds follow the phi ladder; the certificate is about the framework's model, not spacecraft data. No claim that the five-type classification is physically exhaustive; it is a formal finite set in the framework. No claim that the golden ratio is the only possible ratio; the certificate proves the ratio for the defined ladder, not for all ladders.
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:
- What measured solar wind speeds, with uncertainties, would confirm or refute the phi-ladder model?
- How does the framework derive the five-type classification from the recognition cycle, if at all?
- What is the physical mechanism, if any, that would make solar wind speeds follow a phi-power ladder?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM solarWindTypeCount · IndisputableMonolith/Astrophysics/SolarWindFromPhiLadder.lean
theorem solarWindTypeCount : Fintype.card SolarWindType = 5 := by decideThe solar wind has exactly five canonical types: quiet, slow, intermediate, fast, and extreme. solarWindTypeCount · IndisputableMonolith/Astrophysics/SolarWindFromPhiLadder.leanTHEOREM 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'] ringThe ratio of speeds on adjacent rungs of the ladder equals the golden ratio. solarWindSpeedRatio · IndisputableMonolith/Astrophysics/SolarWindFromPhiLadder.lean