Encyclopedia Astrophysics Astrophysics Pulsar Period From Rung Bimodal Ratio Gt Thirty
ARTICLE 3 claims 3 theorems
Astrophysics Pulsar Period From Rung Bimodal Ratio Gt Thirty
Pulsars come in two period families; a machine-checked theorem says the ratio between their median periods exceeds 30.
The bimodal ratio
Pulsars are rapidly spinning neutron stars that emit beams of radiation. Astronomers have long known their spin periods are not spread evenly: most pulsars spin once every 0.5 to 1 second, while a smaller class of recycled millisecond pulsars spins once every 3 to 5 milliseconds. Between these two populations sits a gap, roughly 30 to 100 milliseconds, where almost no pulsars are found. This bimodal distribution, two clusters with an empty middle, is one of the clearest patterns in pulsar astronomy.
Within the Recognition Science framework, this pattern is read as a ladder. The framework models each pulsar family's period as a base time multiplied by powers of the golden ratio φ, about 1.618. Adjacent rungs of the ladder differ by exactly one factor of φ. The normal pulsar family has its median at rung 4 of its ladder, and the millisecond family also sits at rung 4, but on a different ladder whose base period is smaller by a factor of φ^8, a shift the framework attributes to 8 ticks of angular momentum added during recycling.
The declaration bimodal_ratio_gt_thirty proves a simple numerical fact: the ratio of the normal median period to the millisecond median period is φ^8, and φ^8 is strictly greater than 30. The proof is direct. Since φ is known to exceed 1.61, and 1.61^8 is about 45.4, the ratio must be larger than 30. A companion theorem shows the ratio is also less than φ^9, placing it between the eighth and ninth rungs of the ladder. The framework's library of machine-checked formal theorems certifies both bounds.
What the declaration does not claim is just as important. It does not prove that pulsars actually exist, nor that their observed periods match this ladder. The empirical bimodality, the actual gap in the data, is a measured fact from catalogs, not a theorem. The declaration only establishes a structural relationship: if the framework's model of two φ-ladder families is right, then the ratio of their medians must exceed 30. Whether real pulsars obey that relationship is a separate, empirical question the framework treats as a check, not a proof.
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 period_geometric · IndisputableMonolith/Astrophysics/PulsarPeriodFromRung.lean
/-- Adjacent rungs differ by exactly `φ`. -/
theorem period_geometric (P_base : ℝ) (k : ℕ) :
period_at_rung P_base (k + 1) = period_at_rung P_base k * phi := by
unfold period_at_rung
rw [pow_succ]
ring
THEOREM bimodal_ratio_lt_phi_nine · IndisputableMonolith/Astrophysics/PulsarPeriodFromRung.lean
/-- The bimodal ratio is strictly less than `φ^9` (the next rung). -/
theorem bimodal_ratio_lt_phi_nine : bimodal_ratio < phi ^ 9 := by
unfold bimodal_ratio recycling_rung_shift
have h_phi : 1 < phi := one_lt_phi
exact pow_lt_pow_right₀ h_phi (by norm_num : 8 < 9)
What this page does not claim
The declaration does not prove that real pulsar periods follow the φ-ladder. It does not establish the empirical bimodality of the pulsar period distribution. It does not derive the base period τ_neutron from first principles.
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:
- How does the framework derive the 8-tick recycling shift from the recognition-cost ladder?
- What measured evidence from pulsar catalogs supports the claimed gap at 30 to 100 milliseconds?
- How does the framework's φ-ladder model relate to conventional models of neutron star spin evolution?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
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 linarithThe ratio of the normal median period to the millisecond median period is φ^8, and φ^8 is strictly greater than 30. bimodal_ratio_gt_thirty · IndisputableMonolith/Astrophysics/PulsarPeriodFromRung.leanTHEOREM period_geometric · IndisputableMonolith/Astrophysics/PulsarPeriodFromRung.lean
/-- Adjacent rungs differ by exactly `φ`. -/ theorem period_geometric (P_base : ℝ) (k : ℕ) : period_at_rung P_base (k + 1) = period_at_rung P_base k * phi := by unfold period_at_rung rw [pow_succ] ringAdjacent rungs of the ladder differ by exactly one factor of φ. period_geometric · IndisputableMonolith/Astrophysics/PulsarPeriodFromRung.leanTHEOREM bimodal_ratio_lt_phi_nine · IndisputableMonolith/Astrophysics/PulsarPeriodFromRung.lean
/-- The bimodal ratio is strictly less than `φ^9` (the next rung). -/ theorem bimodal_ratio_lt_phi_nine : bimodal_ratio < phi ^ 9 := by unfold bimodal_ratio recycling_rung_shift have h_phi : 1 < phi := one_lt_phi exact pow_lt_pow_right₀ h_phi (by norm_num : 8 < 9)The ratio is also less than φ^9, placing it between the eighth and ninth rungs of the ladder. bimodal_ratio_lt_phi_nine · IndisputableMonolith/Astrophysics/PulsarPeriodFromRung.lean