Encyclopedia Gravity Gravity Gravitational Wave Memory3 From Jcost
ARTICLE 3 claims 3 theorems
Gravity Gravitational Wave Memory3 From Jcost
Gravitational waves leave a permanent stretch in space; one framework ties that leftover strain to a single number derived from a cost function.
Gravitational wave memory
Gravitational wave memory is the permanent change in the distance between free masses after a gravitational wave passes. Unlike the oscillating part of the wave, this residual displacement does not return to zero. In general relativity, the effect is a nonlinear consequence of the wave's own energy, and it is small: for a typical event, the memory strain is roughly 5 to 15 percent of the peak strain of the wave itself.
The effect was studied through the 1970s and 1980s, with contributions from Ya. B. Zel'dovich and A. G. Polnarev in 1974 and from V. B. Braginsky and K. S. Thorne in 1987. The standard formula for the memory strain Δh involves an integral over the angular distribution of the radiated energy. A simpler heuristic form is Δh = J(φ) · h_peak, where h_peak is the peak strain and J(φ) is a dimensionless fraction.
In Recognition Science, the framework models this fraction using its cost function. The framework's central object is the cost function, a measure of the price of recognition events, defined as J(x) = (x + 1/x)/2 − 1. For the golden ratio φ ≈ 1.618, the value J(φ) = (φ + 1/φ)/2 − 1 equals approximately 0.118, or 11.8 percent. The framework identifies this value with the canonical memory fraction, so that the memory strain is J(φ) times the peak strain.
The machine-checked library of formal theorems proves three general facts about this cost function. First, the cost vanishes when the two inputs are equal: J(1) = 0. Second, the cost is nonnegative for all positive inputs. Third, the threshold φ − 3/2 is positive, which is a small numerical fact about the golden ratio. These three facts are packaged into a certificate structure named GWMemory3Cert. The library proves that this certificate exists.
What the module does not do is connect these facts to gravitational waves. The definition of the cost uses a ratio m/e without specifying what m and e mean in this context. The library's own documentation states that the paragraph about memory is a research note recording where the idea was meant to go, not a result. The three proved facts are general properties of the cost function, true for any positive inputs, and they do not by themselves establish anything about gravitational wave memory.
The empirical check is separate. If one accepts the identification of the memory fraction with J(φ), the value 11.8 percent falls inside the 5 to 15 percent range quoted for canonical memory fractions. That agreement is a comparison against observation, not a theorem. The framework's contribution is a derivation of the number 11.8 percent from its cost function; the link from that cost function to the physics of gravitational waves remains an open target.
THEOREM domainCost_at_eq · domainCost_nonneg · canonicalThreshold_pos · IndisputableMonolith/Gravity/GravitationalWaveMemory3FromJCost.lean
theorem domainCost_at_eq (r : ℝ) (h : r ≠ 0) : domainCost r r = 0 := by
unfold domainCost; rw [div_self h]; exact Jcost_unit0
theorem domainCost_nonneg (m e : ℝ) (hm : 0 < m) (he : 0 < e) : 0 ≤ domainCost m e := by
unfold domainCost; exact Jcost_nonneg (div_pos hm he)
theorem canonicalThreshold_pos : 0 < canonicalThreshold := by
unfold canonicalThreshold; linarith [phi_gt_onePointFive]
THEOREM cert_inhabited · IndisputableMonolith/Gravity/GravitationalWaveMemory3FromJCost.lean
theorem cert_inhabited : Nonempty GWMemory3Cert := ⟨cert⟩
THEOREM domainCost · IndisputableMonolith/Gravity/GravitationalWaveMemory3FromJCost.lean
def domainCost (m e : ℝ) : ℝ := Jcost (m / e)
What this page does not claim
This module proves that gravitational wave memory equals 11.8 percent of peak strain. The cost function is derived from the physics of gravitational waves. The empirical agreement with the 5 to 15 percent range is a proved theorem.
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/Gravity/GravitationalWaveMemory3FromJCost.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 definitions of m and e would make the cost function a theorem about gravitational wave memory?
- How does the 11.8 percent fraction compare with the memory fraction computed from the full nonlinear formula in general relativity?
- Which observable events would provide the cleanest measurement of the memory fraction?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM domainCost_at_eq · domainCost_nonneg · canonicalThreshold_pos · IndisputableMonolith/Gravity/GravitationalWaveMemory3FromJCost.lean
theorem domainCost_at_eq (r : ℝ) (h : r ≠ 0) : domainCost r r = 0 := by unfold domainCost; rw [div_self h]; exact Jcost_unit0theorem domainCost_nonneg (m e : ℝ) (hm : 0 < m) (he : 0 < e) : 0 ≤ domainCost m e := by unfold domainCost; exact Jcost_nonneg (div_pos hm he)theorem canonicalThreshold_pos : 0 < canonicalThreshold := by unfold canonicalThreshold; linarith [phi_gt_onePointFive]The machine-checked library of formal theorems proves three general facts about this cost function. domainCost_at_eq · domainCost_nonneg · canonicalThreshold_pos · IndisputableMonolith/Gravity/GravitationalWaveMemory3FromJCost.leanTHEOREM cert_inhabited · IndisputableMonolith/Gravity/GravitationalWaveMemory3FromJCost.lean
theorem cert_inhabited : Nonempty GWMemory3Cert := ⟨cert⟩The library proves that this certificate exists. cert_inhabited · IndisputableMonolith/Gravity/GravitationalWaveMemory3FromJCost.leanTHEOREM domainCost · IndisputableMonolith/Gravity/GravitationalWaveMemory3FromJCost.lean
def domainCost (m e : ℝ) : ℝ := Jcost (m / e)The three proved facts are general properties of the cost function, true for any positive inputs, and they do not by themselves establish anything about gravitational wave memory. domainCost · IndisputableMonolith/Gravity/GravitationalWaveMemory3FromJCost.lean