Encyclopedia Astrophysics Astrophysics Solar Wind From Phi Ladder Solar Wind Type Count

ARTICLE 3 claims 2 theorems 1 model

Astrophysics Solar Wind From Phi Ladder Solar Wind Type Count

Solar wind is not one flow but several, and a machine-checked framework counts exactly five canonical types.

Solar wind types

The solar wind is a continuous stream of charged particles released from the Sun's upper atmosphere. Observers have long sorted it into named bands by speed. The slow wind moves at roughly 300 to 400 kilometers per second, the fast wind at roughly 600 to 800, and extreme events such as coronal mass ejections can exceed 1000. A quieter background state and an intermediate band fill out the usual picture. Heliophysicists speak of five canonical solar wind types: quiet, slow, intermediate, fast, and extreme.

In Recognition Science, a framework that derives physical structure from a forced cost of recognition, this count is not an arbitrary classification. The framework's machine-checked library of formal theorems contains a declaration, solarWindTypeCount, that proves the number of solar wind types is exactly five. The proof is a direct computation over a finite list of named types, and the library reports no unproved assumptions behind it. The same file defines a speed ladder: adjacent wind speeds sit at powers of the golden ratio φ, so each rung is φ times the one below. The ratio theorem states that the speed at rung k+1 divided by the speed at rung k equals φ.

The framework models the five-type count as the dimension of a configuration space for solar wind states. In this account, the five canonical types are not five arbitrary bins but the full set of distinct states the framework's structure permits. The speed ratio φ ≈ 1.618 sits close to the observed fast-to-slow ratio of about 2, though the framework's own text notes the match is approximate, not exact.

What the declaration does not claim is just as important. It does not prove that real solar wind measurements must show exactly five types; the theorem concerns a formal inductive type, not a plasma measurement. It does not derive the speed values themselves, only the ratio between adjacent rungs. And it does not claim that the five-type count is unique to solar wind. The declaration is a structural statement inside the framework, not an empirical prediction with a named falsifier.

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
MODEL SolarWindCert · IndisputableMonolith/Astrophysics/SolarWindFromPhiLadder.lean
structure SolarWindCert where
  five_types : Fintype.card SolarWindType = 5
  phi_ratio : ∀ k, solarWindSpeed (k + 1) / solarWindSpeed k = phi

What this page does not claim

The theorem does not prove that real solar wind measurements must show exactly five types. The framework does not derive the absolute speed values, only the ratio between adjacent rungs. The five-type count is not claimed to be unique to solar wind.

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