Encyclopedia Astrophysics Astrophysics Pulsar Emission Regimes From Rs Period Ratio
ARTICLE 4 claims 2 theorems 2 models
Astrophysics Pulsar Emission Regimes From Rs Period Ratio
A single theorem in a machine-checked library says that if pulsar periods follow a golden-ratio ladder, adjacent rungs differ by a fixed factor.
The period ratio
A pulsar is a rotating neutron star that emits beams of radiation, appearing to pulse as it spins. Astronomers group pulsars into five broad emission classes: normal pulsars, millisecond pulsars, magnetars, rotating radio transients, and fast radio burst sources. These classes differ in spin period, magnetic field strength, and emission mechanism.
In Recognition Science, the framework's library of formal theorems defines a toy model of these classes. The model assigns each class a period on a ladder of powers of the golden ratio, φ ≈ 1.618. The theorem period_ratio proves that the ratio of any period to the next lower period is exactly φ. In plain words: if you climb from one rung of this ladder to the next, the period multiplies by the golden ratio each time.
The proof is short and mechanical. The period is defined as φ raised to an integer power. Dividing φ^(k+1) by φ^k cancels the common factor and leaves φ. The library also verifies that every such period is positive, since φ is positive and any power of a positive number is positive.
This is a statement about a defined model, not about measured pulsars. The theorem does not claim that real pulsar periods actually follow this ladder. It establishes a property of a mathematical construction: within the framework's five-regime model, adjacent periods are related by the golden ratio. Whether real pulsars match this pattern is an empirical question the theorem does not address.
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
MODEL period · IndisputableMonolith/Astrophysics/PulsarEmissionRegimesFromRS.lean
noncomputable def period (k : ℕ) : ℝ := phi ^ k
THEOREM period_pos · IndisputableMonolith/Astrophysics/PulsarEmissionRegimesFromRS.lean
theorem period_pos (k : ℕ) : 0 < period k := pow_pos phi_pos k
MODEL period · IndisputableMonolith/Astrophysics/PulsarEmissionRegimesFromRS.lean
noncomputable def period (k : ℕ) : ℝ := phi ^ k
What this page does not claim
The theorem does not claim that real pulsar periods follow the golden-ratio ladder. The theorem does not identify which observed pulsar belongs to which regime. The model does not specify the physical origin of the golden-ratio scaling.
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:
- Do observed pulsar periods across the five classes actually follow a golden-ratio ladder?
- What physical mechanism, if any, would produce a golden-ratio spacing in pulsar periods?
- How does the five-regime classification map onto the standard astronomical classification of pulsars and magnetars?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
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] ringThe theorem period_ratio proves that the ratio of any period to the next lower period is exactly φ. period_ratio · IndisputableMonolith/Astrophysics/PulsarEmissionRegimesFromRS.leanMODEL period · IndisputableMonolith/Astrophysics/PulsarEmissionRegimesFromRS.lean
noncomputable def period (k : ℕ) : ℝ := phi ^ kThe period is defined as φ raised to an integer power. period · IndisputableMonolith/Astrophysics/PulsarEmissionRegimesFromRS.leanTHEOREM period_pos · IndisputableMonolith/Astrophysics/PulsarEmissionRegimesFromRS.lean
theorem period_pos (k : ℕ) : 0 < period k := pow_pos phi_pos kThe library also verifies that every such period is positive. period_pos · IndisputableMonolith/Astrophysics/PulsarEmissionRegimesFromRS.leanMODEL period · IndisputableMonolith/Astrophysics/PulsarEmissionRegimesFromRS.lean
noncomputable def period (k : ℕ) : ℝ := phi ^ kThe model assigns each class a period on a ladder of powers of the golden ratio. period · IndisputableMonolith/Astrophysics/PulsarEmissionRegimesFromRS.lean