Encyclopedia Astrophysics Astrophysics Pulsar Emission Regimes From Rs Pulsar Emission Cert
ARTICLE 3 claims 3 theorems
Astrophysics Pulsar Emission Regimes From Rs Pulsar Emission Cert
A machine-checked certificate that five known pulsar classes fall into a golden-ratio rhythm, and nothing more.
The certification
Pulsars are rapidly spinning neutron stars that beam radio waves, and astronomers sort them into five canonical classes: normal pulsars, millisecond pulsars, magnetars, rotating radio transients, and fast radio burst sources. The Recognition Science framework's ledger, a discrete record of events, models these five classes as a single five-element set. A machine-checked library of formal theorems certifies that this set has exactly five members, that the rotation period of each class is a power of the golden ratio φ (about 1.618), and that adjacent classes differ in period by a factor of φ. The certificate is a structure named PulsarEmissionCert, and its proof is complete: zero unproved assumptions, zero axioms beyond the kernel's standard three.
The period scaling is the core claim. If a normal pulsar spins once every second, the model places the next class at φ seconds, the next at φ² seconds, and so on. The formal theorem period_ratio proves that the ratio of consecutive periods is exactly φ. This is a pure statement about the model's arithmetic: it does not assert that any real pulsar has a period that is a perfect power of φ, nor that the five classes are the only kinds of neutron stars. It certifies an internal consistency, not an empirical match.
The certificate's value is its precision. It names five regimes, assigns each a position on the φ-ladder, and proves the ratio law holds for every step. That is the whole content. It makes no claim about how these classes form, what powers their emission, or why the golden ratio should appear in nature. Those questions remain open targets. The certificate is a definitional scaffold: if the framework's forcing chain is right, this is the pattern the five classes should follow, and the scaffold is now machine-checked so that any later argument can build on it without rechecking the arithmetic.
What the certificate does not do is as important as what it does. It does not predict a specific pulsar's period, because it offers no mapping from a real star to a ladder index. It does not explain the physical mechanism behind any of the five classes. And it does not prove that the golden ratio governs real pulsars; that would require an empirical comparison with measured periods, which the certificate does not contain. It is a clean, closed piece of structure: five regimes, φ ratios, positive periods, all proved, and nothing else.
THEOREM pulsarEmissionCert · pulsarRegime_count · period_ratio · IndisputableMonolith/Astrophysics/PulsarEmissionRegimesFromRS.lean
noncomputable def pulsarEmissionCert : PulsarEmissionCert where
five_regimes := pulsarRegime_count
phi_ratio := period_ratio
period_always_pos := period_pos
theorem pulsarRegime_count : Fintype.card PulsarRegime = 5 := by decide
theorem period_ratio (k : ℕ) : period (k + 1) / period k = phi := by
unfold period
have hpos : (0 : ℝ) < phi ^ k := pow_pos phi_pos k
rw [div_eq_iff hpos.ne', pow_succ]
ring
THEOREM period_ratio · IndisputableMonolith/Astrophysics/PulsarEmissionRegimesFromRS.lean
theorem period_ratio (k : ℕ) : period (k + 1) / period k = phi := by
unfold period
have hpos : (0 : ℝ) < phi ^ k := pow_pos phi_pos k
rw [div_eq_iff hpos.ne', pow_succ]
ring
THEOREM PulsarEmissionCert · IndisputableMonolith/Astrophysics/PulsarEmissionRegimesFromRS.lean
structure PulsarEmissionCert where
five_regimes : Fintype.card PulsarRegime = 5
phi_ratio : ∀ k, period (k + 1) / period k = phi
period_always_pos : ∀ k, 0 < period k
What this page does not claim
No real pulsar's period is asserted to be an exact power of φ. No physical mechanism for pulsar emission is proposed or explained. No empirical comparison with measured pulsar periods is made.
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/PulsarEmissionRegimesFromRS.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 physical mechanism connects a pulsar's emission class to a golden-ratio period ladder?
- How would one map a measured pulsar period to a specific index on the φ-ladder?
- Does the five-regime classification exhaust the known pulsar types, or are there transitional objects?
- What empirical test could falsify the φ-ratio prediction for adjacent pulsar classes?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM pulsarEmissionCert · pulsarRegime_count · period_ratio · IndisputableMonolith/Astrophysics/PulsarEmissionRegimesFromRS.lean
noncomputable def pulsarEmissionCert : PulsarEmissionCert where five_regimes := pulsarRegime_count phi_ratio := period_ratio period_always_pos := period_postheorem pulsarRegime_count : Fintype.card PulsarRegime = 5 := by decidetheorem period_ratio (k : ℕ) : period (k + 1) / period k = phi := by unfold period have hpos : (0 : ℝ) < phi ^ k := pow_pos phi_pos k rw [div_eq_iff hpos.ne', pow_succ] ringA machine-checked library of formal theorems certifies that this set has exactly five members, that the rotation period of each class is a power of the golden ratio φ (about 1.618), and that adjacent classes differ in period by a factor of φ. pulsarEmissionCert · pulsarRegime_count · period_ratio · IndisputableMonolith/Astrophysics/PulsarEmissionRegimesFromRS.leanTHEOREM period_ratio · IndisputableMonolith/Astrophysics/PulsarEmissionRegimesFromRS.lean
theorem period_ratio (k : ℕ) : period (k + 1) / period k = phi := by unfold period have hpos : (0 : ℝ) < phi ^ k := pow_pos phi_pos k rw [div_eq_iff hpos.ne', pow_succ] ringThe formal theorem period_ratio proves that the ratio of consecutive periods is exactly φ. period_ratio · IndisputableMonolith/Astrophysics/PulsarEmissionRegimesFromRS.leanTHEOREM PulsarEmissionCert · IndisputableMonolith/Astrophysics/PulsarEmissionRegimesFromRS.lean
structure PulsarEmissionCert where five_regimes : Fintype.card PulsarRegime = 5 phi_ratio : ∀ k, period (k + 1) / period k = phi period_always_pos : ∀ k, 0 < period kThe certificate is a structure named PulsarEmissionCert, and its proof is complete: zero unproved assumptions, zero axioms beyond the kernel's standard three. PulsarEmissionCert · IndisputableMonolith/Astrophysics/PulsarEmissionRegimesFromRS.lean