Encyclopedia Astrophysics Astrophysics Pulsar Period From Rung Pulsar Period One Statement
ARTICLE 4 claims 4 theorems
Astrophysics Pulsar Period From Rung Pulsar Period One Statement
A machine-checked theorem ties the two observed pulsar period groups to a single ratio, but stops short of proving the astronomy itself.
The pulsar period statement
Pulsars are rapidly spinning neutron stars that emit beams of radiation, and astronomers have long noticed that their spin periods fall into two distinct groups. Normal pulsars spin once every roughly 0.5 to 1 second, while millisecond pulsars, which have been spun up by accreting matter from a companion star, spin once every 3 to 5 milliseconds. Between these groups, from about 30 to 100 milliseconds, almost no pulsars are found. This bimodal distribution, with its conspicuous empty gap, is a well-established empirical fact documented in catalogs such as the ATNF Pulsar Catalogue.
The Recognition Science framework offers a structural account of this pattern. The framework models physical quantities as occupying discrete rungs of a ladder, where each step multiplies the previous value by the golden ratio φ ≈ 1.618. In this model, a neutron star's spin period at rung k is given by P_base · φ^k, where P_base is a base period for that pulsar family. The framework's library, a machine-checked collection of formal theorems, proves that the normal pulsar family has a median rung of 4 and the millisecond family also has a median rung of 4, but with a base period that is φ^8 times smaller due to an 8-tick recycling shift from accretion. This yields a predicted ratio between the two median periods of exactly φ^8, which is approximately 47.
The declaration pulsar_period_one_statement bundles these results into a single theorem. It establishes four facts: both families have median rung 4; the recycling shift is 8 ticks; the bimodal ratio is strictly greater than 30; and the structural gap between the families spans 7 unstable rungs. The theorem is proved in the framework's library with no unproved assumptions, meaning the arithmetic chain from the golden ratio to these specific numbers is formally verified. The ratio being greater than 30 is what makes the predicted bimodality sharply distinguishable from a smooth, continuous distribution of periods.
What the theorem does not do is prove that pulsars exist, that they spin at these rates, or that the empirical gap in the data is real. The framework's own documentation states that the empirical bimodality is not formally proven; the theorem only exposes the structural gap as a consequence of the model's assumptions. The comparison to observed pulsar periods is an empirical check, not a theorem. The framework's claim is that if pulsar periods follow this rung structure, then the bimodal ratio and the gap follow necessarily. Whether nature actually obeys that structure remains a matter for observation.
THEOREM normal_median_rung · IndisputableMonolith/Astrophysics/PulsarPeriodFromRung.lean
/-- Median canonical recognition-rung for normal pulsars. -/
def normal_median_rung : ℕ := 4
THEOREM recycling_rung_shift · IndisputableMonolith/Astrophysics/PulsarPeriodFromRung.lean
/-- The canonical 8-tick recycling shift between normal and
millisecond families. -/
def recycling_rung_shift : ℕ := 8
THEOREM bimodal_ratio_gt_thirty · IndisputableMonolith/Astrophysics/PulsarPeriodFromRung.lean
/-- The bimodal ratio is strictly greater than 30 (sharply distinguishable
from a continuous distribution). -/
theorem bimodal_ratio_gt_thirty : 30 < bimodal_ratio := by
unfold bimodal_ratio recycling_rung_shift
-- phi^8 ≥ (1.61)^8 = ?
have h_phi : 1.61 < phi := phi_gt_onePointSixOne
have h_pow : (1.61 : ℝ)^8 ≤ phi^8 := by
have h_pos : (0 : ℝ) ≤ 1.61 := by norm_num
exact pow_le_pow_left₀ h_pos (le_of_lt h_phi) 8
-- (1.61)^8 = 45.39... > 30
have h_compute : (30 : ℝ) < (1.61 : ℝ)^8 := by norm_num
linarith
THEOREM gap_size · IndisputableMonolith/Astrophysics/PulsarPeriodFromRung.lean
/-- The structural rung gap: rungs 1–7 of the ms family are
unstable. -/
def gap_size : ℕ := recycling_rung_shift - 1
What this page does not claim
The theorem does not prove that pulsars exist or that their observed periods follow the rung structure. The theorem does not prove the empirical bimodality of the pulsar period distribution; it only exposes a structural gap under the model's assumptions. The theorem does not provide a physical mechanism for why periods should be quantized on the golden-ratio ladder.
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/PulsarPeriodFromRung.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 would force a neutron star's spin period to occupy discrete golden-ratio rungs?
- How does the framework derive the neutron recognition time τ_neutron from first principles?
- What would a statistically significant pulsar detection inside the 30 to 100 millisecond gap imply for the framework?
- How does the 8-tick recycling shift relate to the framework's general eight-tick recognition cycle?
- What independent predictions does the rung model make beyond the median period ratio?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM normal_median_rung · IndisputableMonolith/Astrophysics/PulsarPeriodFromRung.lean
/-- Median canonical recognition-rung for normal pulsars. -/ def normal_median_rung : ℕ := 4The declaration establishes that both pulsar families have median rung 4. normal_median_rung · IndisputableMonolith/Astrophysics/PulsarPeriodFromRung.leanTHEOREM recycling_rung_shift · IndisputableMonolith/Astrophysics/PulsarPeriodFromRung.lean
/-- The canonical 8-tick recycling shift between normal and millisecond families. -/ def recycling_rung_shift : ℕ := 8The declaration establishes that the recycling shift is 8 ticks. recycling_rung_shift · IndisputableMonolith/Astrophysics/PulsarPeriodFromRung.leanTHEOREM bimodal_ratio_gt_thirty · IndisputableMonolith/Astrophysics/PulsarPeriodFromRung.lean
/-- The bimodal ratio is strictly greater than 30 (sharply distinguishable from a continuous distribution). -/ theorem bimodal_ratio_gt_thirty : 30 < bimodal_ratio := by unfold bimodal_ratio recycling_rung_shift -- phi^8 ≥ (1.61)^8 = ? have h_phi : 1.61 < phi := phi_gt_onePointSixOne have h_pow : (1.61 : ℝ)^8 ≤ phi^8 := by have h_pos : (0 : ℝ) ≤ 1.61 := by norm_num exact pow_le_pow_left₀ h_pos (le_of_lt h_phi) 8 -- (1.61)^8 = 45.39... > 30 have h_compute : (30 : ℝ) < (1.61 : ℝ)^8 := by norm_num linarithThe declaration establishes that the bimodal ratio is strictly greater than 30. bimodal_ratio_gt_thirty · IndisputableMonolith/Astrophysics/PulsarPeriodFromRung.leanTHEOREM gap_size · IndisputableMonolith/Astrophysics/PulsarPeriodFromRung.lean
/-- The structural rung gap: rungs 1–7 of the ms family are unstable. -/ def gap_size : ℕ := recycling_rung_shift - 1The declaration establishes that the structural gap spans 7 unstable rungs. gap_size · IndisputableMonolith/Astrophysics/PulsarPeriodFromRung.lean