Encyclopedia Astrophysics Astrophysics Gravitational Wave From Jcost Gw Source Count
ARTICLE 3 claims 3 theorems
Astrophysics Gravitational Wave From Jcost Gw Source Count
A machine-checked theorem counts five canonical sources of gravitational waves, a number that anchors a broader claim about how their amplitudes scale.
The source count
Gravitational waves are ripples in spacetime, first detected in 2015 by the LIGO collaboration from the merger of two black holes. The signal's strength, its strain, depends on the masses of the merging objects and the distance to the event. For a binary merger, the strain scales roughly as the product of the masses to the five-thirds power divided by the distance, a relation from general relativity that has been confirmed across many detections.
Astrophysicists group these events into categories by the types of objects involved: two neutron stars, a black hole and a neutron star, two black holes, a supermassive black hole merger, and the background hum of many distant events called the stochastic background. These five classes cover the sources that observatories like LIGO, Virgo, and KAGRA routinely study. The Recognition Science framework, a research program that derives physical structure from a forced cost function, models these five categories as a finite set.
In Recognition Science, the declaration gwSourceCount is a theorem in the framework's machine-checked library of formal theorems. It proves that the set of these five source categories has exactly five elements. This is a formal statement, verified by a computer, that the inductive type defining the categories has cardinality five. The theorem is simple: it holds by direct computation, and the library records it with no unproven assumptions.
The count matters because the framework links it to a scaling law. The same library defines a strain at each rung of a ladder, where the strain at the next rung is the previous strain multiplied by the golden ratio φ, approximately 1.618. The theorem strainRatio proves this ratio holds for every rung. The framework's certificate bundles the five-category count with this ratio, asserting that adjacent source classes differ in peak strain by φ. This is a prediction about astrophysical data, not a proved fact about the universe.
The declaration itself, however, establishes only the count. It does not prove that five categories are the only possible ones, nor does it prove that real gravitational wave sources actually follow the φ ratio. The scaling law is a framework-internal model, a definitional choice about how to organize the categories, and its agreement with observations would be an empirical check. The count is a theorem about a formal object; the physics is a hypothesis waiting for data.
THEOREM gwSourceCount · IndisputableMonolith/Astrophysics/GravitationalWaveFromJCost.lean
theorem gwSourceCount : Fintype.card GWSourceCategory = 5 := by decide
THEOREM gwSourceCount · IndisputableMonolith/Astrophysics/GravitationalWaveFromJCost.lean
theorem gwSourceCount : Fintype.card GWSourceCategory = 5 := by decide
THEOREM strainRatio · IndisputableMonolith/Astrophysics/GravitationalWaveFromJCost.lean
theorem strainRatio (k : ℕ) :
strainAtRung (k + 1) / strainAtRung k = phi := by
unfold strainAtRung
have hpos := pow_pos phi_pos k
rw [pow_succ]; field_simp [hpos.ne']
What this page does not claim
The theorem does not prove that real gravitational wave sources follow the golden ratio scaling. The count of five categories is a definitional choice, not a derivation from first principles in this declaration. The declaration does not establish the strain formula h ~ M^(5/3) / D from general relativity.
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/GravitationalWaveFromJCost.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 evidence would confirm or refute the prediction that adjacent source classes differ in peak strain by the golden ratio?
- How does the framework derive the five-category classification from its cost function, if at all?
- What does the framework say about the absolute amplitude of gravitational waves, not just the ratios between classes?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM gwSourceCount · IndisputableMonolith/Astrophysics/GravitationalWaveFromJCost.lean
theorem gwSourceCount : Fintype.card GWSourceCategory = 5 := by decideThe declaration gwSourceCount is a theorem in the framework's machine-checked library of formal theorems. gwSourceCount · IndisputableMonolith/Astrophysics/GravitationalWaveFromJCost.leanTHEOREM gwSourceCount · IndisputableMonolith/Astrophysics/GravitationalWaveFromJCost.lean
theorem gwSourceCount : Fintype.card GWSourceCategory = 5 := by decideIt proves that the set of these five source categories has exactly five elements. gwSourceCount · IndisputableMonolith/Astrophysics/GravitationalWaveFromJCost.leanTHEOREM strainRatio · IndisputableMonolith/Astrophysics/GravitationalWaveFromJCost.lean
theorem strainRatio (k : ℕ) : strainAtRung (k + 1) / strainAtRung k = phi := by unfold strainAtRung have hpos := pow_pos phi_pos k rw [pow_succ]; field_simp [hpos.ne']The same library defines a strain at each rung of a ladder, where the strain at the next rung is the previous strain multiplied by the golden ratio φ, approximately 1.618. strainRatio · IndisputableMonolith/Astrophysics/GravitationalWaveFromJCost.lean