Encyclopedia Astrophysics Astrophysics Pulsar Emission Regimes From Rs

ARTICLE 3 claims 3 theorems

Astrophysics Pulsar Emission Regimes From Rs

Pulsars are cosmic lighthouses, and their five known emission classes may follow a single golden-ratio rule.

Pulsar emission regimes

Pulsars are rapidly rotating neutron stars that emit beams of radiation, which appear to pulse as the star spins. Astronomers classify them into five canonical emission regimes: normal pulsars, millisecond pulsars, magnetars, rotating radio transients, and fast radio burst sources. These classes differ dramatically in period, magnetic field strength, and energy output, from the steady ticks of a millisecond pulsar to the explosive flashes of a fast radio burst.

In Recognition Science, the framework models these five regimes as a single discrete ladder. The period of each regime is defined as phi raised to an integer power, where phi is the golden ratio, approximately 1.618. The framework proves that the ratio of periods between adjacent regimes is exactly phi. This means the five classes form a geometric sequence, each step multiplying the period by the golden ratio.

The framework's machine-checked library of formal theorems establishes this structure with a certificate. The certificate proves three facts: there are exactly five regimes, the period ratio between adjacent regimes is phi, and all periods are positive. These are not empirical measurements but formal consequences of the framework's definitional choices, verified with zero unproved assumptions.

What this means in practice is that the five pulsar classes are not arbitrary categories but positions on a single logarithmic scale. If one regime's period is known, the others are determined by repeated multiplication by phi. This provides a testable prediction: the ratio of characteristic periods between any two adjacent classes should cluster near 1.618, a claim that observational data can confirm or falsify.

THEOREM PulsarRegime · IndisputableMonolith/Astrophysics/PulsarEmissionRegimesFromRS.lean
inductive PulsarRegime where
  | normal
  | millisecond
  | magnetar
  | rrat
  | frbSource
  deriving DecidableEq, Repr, BEq, Fintype
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
THEOREM pulsarEmissionCert · IndisputableMonolith/Astrophysics/PulsarEmissionRegimesFromRS.lean
noncomputable def pulsarEmissionCert : PulsarEmissionCert where
  five_regimes := pulsarRegime_count
  phi_ratio := period_ratio
  period_always_pos := period_pos

What this page does not claim

This module does not derive the existence of pulsars or the physics of their emission. The golden-ratio spacing is a definitional model, not an empirical measurement of actual pulsar periods. The framework does not claim that all pulsars in a class share the same period, only that class-level characteristic periods follow the ratio.

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:

MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND