Encyclopedia Astrophysics Astrophysics Gravitomagnetic Effect From Jcost Frame Dragging Cert

ARTICLE 3 claims 3 theorems

Astrophysics Gravitomagnetic Effect From Jcost Frame Dragging Cert

A machine-checked certificate about a cost function says nothing about frame dragging until its inputs are physically defined.

The certificate's scope

Frame dragging is the general relativity prediction that a rotating mass pulls surrounding spacetime around with it. The Lense-Thirring effect, named after Josef Lense and Hans Thirring in 1918, describes the slow precession this causes in the orbit of a nearby body. The Gravity Probe B mission measured the Earth's total frame-dragging precession at 37.2 milliarcseconds per year, close to the theoretical value near 39 milliarcseconds per year.

In the Recognition Science framework, the declaration FrameDraggingCert is a certificate, a structured collection of three proved facts about a function called domainCost. That function takes two real numbers, m and e, and returns Jcost(m/e), where Jcost is the framework's fundamental cost function. The three facts are: the cost is zero when m equals e, the cost is never negative when both inputs are positive, and the number phi minus 3/2 is positive. These are general properties of the cost function, proved in the machine-checked library of formal theorems.

The certificate proves nothing specific to frame dragging. The definition of domainCost uses the ratio m/e without any reference to angular momentum, rotation, or spacetime. The certificate's own documentation states this plainly: it proves three general facts and nothing about this subject, because the inputs are not defined in the subject's own terms. What would make the certificate a theorem about frame dragging is a definition of m and e using that subject's vocabulary, such as mass and distance from the rotating body.

The research note attached to the certificate records where the idea was meant to go. It sketches a comparison: the Lense-Thirring precession equals 2GJ/(c²r³) times a factor, and the framework's cost function J(phi) times a Newtonian value gives roughly 39 milliarcseconds per year, matching the theoretical value. This is a research aspiration, not a proved result. The note itself calls the paragraph above a research note recording where the idea was meant to go, not a result.

What the certificate does establish is a small, clean mathematical object: a cost function with three verified properties, packaged so other proofs can rely on them. That is the whole of its achievement. The leap from those properties to a physical prediction about frame dragging remains open, awaiting a definition that connects the cost function's inputs to the rotating-mass problem.

THEOREM domainCost · IndisputableMonolith/Astrophysics/GravitomagneticEffectFromJCost.lean
def domainCost (m e : ℝ) : ℝ := Jcost (m / e)
THEOREM domainCost_at_eq · domainCost_nonneg · canonicalThreshold_pos · IndisputableMonolith/Astrophysics/GravitomagneticEffectFromJCost.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 FrameDraggingCert · IndisputableMonolith/Astrophysics/GravitomagneticEffectFromJCost.lean
structure FrameDraggingCert where
  cost_at_eq : ∀ r : ℝ, r ≠ 0 → domainCost r r = 0
  cost_nonneg : ∀ m e : ℝ, 0 < m → 0 < e → 0 ≤ domainCost m e
  threshold_pos : 0 < canonicalThreshold

What this page does not claim

The certificate does not prove the Lense-Thirring effect or any frame-dragging prediction. The research note's numerical match is not a theorem; it is an unformalized aspiration. The certificate does not define m or e in physical terms.

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/GravitomagneticEffectFromJCost.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