Encyclopedia Astrophysics Astrophysics Pulsar Period From Rung Ms Median Rung Eq
ARTICLE 4 claims 3 theorems 1 hypothesis
Astrophysics Pulsar Period From Rung Ms Median Rung Eq
A single formal statement pins the median rung of the millisecond pulsar period ladder to 4, but the empirical connection is a prediction, not a proof.
The millisecond median rung
Millisecond pulsars are rapidly spinning neutron stars, recycled by matter falling in from a companion star, with spin periods mostly between 1 and 30 milliseconds. In the Recognition Science framework, these periods are modeled as occupying discrete rungs of a ladder: each family has a base period, and the period at rung k is the base period multiplied by the golden ratio φ raised to the kth power. The declaration ms_median_rung_eq states that the median rung for the millisecond family is 4, meaning the typical period sits at φ^4 times the recycled base period.
This is a definitional choice, not a derived physical law. The declaration defines the constant ms_median_rung to be 4 and then proves the equality by reflexivity, which is the trivial step that a term equals itself. The framework's own documentation calls this a structural theorem, but the content is a model assumption: it assigns the median rung index. What the framework does prove, using the golden ratio's properties, is the geometric structure that follows once this rung is chosen. Adjacent rungs differ by exactly φ, and the ratio between the normal and millisecond median periods is φ^8, a value greater than 30 and less than φ^9.
The framework's prediction is that this φ^8 ratio, roughly 47, should appear in the observed bimodal pulsar period distribution, with normal pulsars peaking near 0.7 seconds and millisecond pulsars near 3 to 5 milliseconds. The observed gap with almost no pulsars between 30 and 100 milliseconds is attributed to seven intermediate rungs being unstable under the framework's cost minimization. This is a falsifiable prediction: a statistically significant peak of pulsar periods in that gap would contradict the rung structure. The framework does not prove the empirical bimodality; it exposes a structural gap as a sub-certificate.
The declaration itself, ms_median_rung_eq, does not claim that millisecond pulsars actually have a median period of φ^4 times some base time. It does not establish the value of the recycled base period, nor does it prove that real pulsars occupy these rungs. The empirical connection is a hypothesis with a named falsifier, not a theorem. The formal content is limited to the arithmetic consequence of a chosen definition.
THEOREM ms_median_rung_eq · IndisputableMonolith/Astrophysics/PulsarPeriodFromRung.lean
theorem ms_median_rung_eq : ms_median_rung = 4 := rfl
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_gt_thirty · bimodal_ratio_lt_phi_nine · 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
/-- 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)
HYPOTHESIS gap_size_eq · IndisputableMonolith/Astrophysics/PulsarPeriodFromRung.lean
theorem gap_size_eq : gap_size = 7 := by
unfold gap_size recycling_rung_shift
norm_num
What this page does not claim
The declaration does not prove that real millisecond pulsars have a median period of φ^4 times any measured base time. The framework does not derive the value of the recycled base period from first principles. The empirical bimodality of pulsar periods is not proved; it is a falsifiable prediction.
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 determines the base period for the millisecond pulsar family?
- How does the recycling mechanism add exactly eight ticks of angular momentum?
- What physical process makes the seven intermediate rungs unstable under cost minimization?
- How would the framework distinguish a genuine rung gap from a selection effect in pulsar surveys?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM ms_median_rung_eq · IndisputableMonolith/Astrophysics/PulsarPeriodFromRung.lean
theorem ms_median_rung_eq : ms_median_rung = 4 := rflThe declaration ms_median_rung_eq states that the median rung for the millisecond family is 4. ms_median_rung_eq · 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 differ by exactly φ. period_geometric · IndisputableMonolith/Astrophysics/PulsarPeriodFromRung.leanTHEOREM bimodal_ratio_gt_thirty · bimodal_ratio_lt_phi_nine · 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/-- 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 between the normal and millisecond median periods is φ^8, a value greater than 30 and less than φ^9. bimodal_ratio_gt_thirty · bimodal_ratio_lt_phi_nine · IndisputableMonolith/Astrophysics/PulsarPeriodFromRung.leanHYPOTHESIS gap_size_eq · IndisputableMonolith/Astrophysics/PulsarPeriodFromRung.lean
theorem gap_size_eq : gap_size = 7 := by unfold gap_size recycling_rung_shift norm_numA statistically significant peak of pulsar periods in the 30 to 100 millisecond gap would contradict the rung structure. gap_size_eq · IndisputableMonolith/Astrophysics/PulsarPeriodFromRung.lean