Encyclopedia Astrophysics Astrophysics Pulsar Period From Rung Normal Median Rung Eq
ARTICLE 3 claims 3 theorems
Astrophysics Pulsar Period From Rung Normal Median Rung Eq
Pulsar spin periods cluster into two groups; this theorem pins the middle of the slower group to a single number on a geometric ladder.
The median rung
Pulsars are rapidly spinning neutron stars that beam radio waves like lighthouses. Astronomers have long known their spin periods fall into two distinct families: normal pulsars, with periods from about 16 milliseconds to 10 seconds and a peak near 0.5 to 1 second, and millisecond pulsars, recycled by accreting matter from a companion, with periods from about 1 to 30 milliseconds and a peak near 3 to 5 milliseconds. The gap between the families sits at roughly 30 to 100 milliseconds, a separation confirmed by major catalogs such as the ATNF catalog and the EPTA and NANOGrav projects.
In Recognition Science, the framework models these periods as lying on a ladder of discrete steps, where each step multiplies the period by the golden ratio φ, about 1.618. The normal pulsar family has a base time τ_neutron, and its periods are τ_neutron · φ^k for integer rungs k. The declaration normal_median_rung_eq establishes that the median rung of the normal pulsar family is k = 4. Because adjacent rungs differ by exactly φ, this means the median period is φ^4 · τ_neutron, roughly 0.7 seconds, which sits squarely in the observed normal-pulsar peak.
The theorem itself is a simple identity: it states that the defined constant normal_median_rung equals 4. It is a structural claim inside the framework, not a measurement. The framework does not claim that this theorem, by itself, proves the observed pulsar distribution. The empirical bimodality, the gap at 30 to 100 milliseconds, and the ratio between the two families are addressed by other declarations in the same module, such as bimodal_ratio_gt_thirty, which shows the ratio of normal to millisecond median periods is φ^8, greater than 30.
What normal_median_rung_eq does not claim is just as important. It does not claim that the number 4 is derived from first principles; it is a definitional choice for the median rung. It does not claim that the framework has proved the observed pulsar period distribution; that remains an empirical comparison. And it does not claim that the framework has explained why the gap at 30 to 100 milliseconds is empty; that is a separate structural hypothesis with a named falsifier. The theorem is a precise, machine-checked statement about a constant, and its value lies in being one rung of a larger ladder, not in standing alone.
THEOREM normal_median_rung_eq · IndisputableMonolith/Astrophysics/PulsarPeriodFromRung.lean
theorem normal_median_rung_eq : normal_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 · 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
What this page does not claim
The theorem does not prove the observed pulsar period distribution. The median rung value 4 is a definitional choice, not a derived outcome. The framework does not claim that the 30 to 100 millisecond gap is explained by this theorem alone.
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 base period τ_neutron for normal pulsars?
- What physical mechanism in the framework forces the recycling shift to be exactly 8 ticks?
- How does the framework's structural gap of 7 unstable rungs compare to the observed empty region in the pulsar period distribution?
- What would a statistically significant pulsar period peak in the 30 to 100 millisecond range do to the framework's rung-gap structure?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM normal_median_rung_eq · IndisputableMonolith/Astrophysics/PulsarPeriodFromRung.lean
theorem normal_median_rung_eq : normal_median_rung = 4 := rflThe declaration normal_median_rung_eq establishes that the median rung of the normal pulsar family is k = 4. normal_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 · 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 normal to millisecond median periods is φ^8, greater than 30. bimodal_ratio_gt_thirty · IndisputableMonolith/Astrophysics/PulsarPeriodFromRung.lean