Encyclopedia Cosmology Cosmology Gravitational Lensing From Rs Gravitational Lensing Cert
ARTICLE 3 claims 3 theorems
Cosmology Gravitational Lensing From Rs Gravitational Lensing Cert
A machine-checked certificate that organizes gravitational lensing into five regimes, each with deflection angles locked to the golden ratio.
The lensing certificate
Gravitational lensing is the bending of light from a distant source by the gravity of an intervening mass, the effect that lets astronomers map dark matter and measure distant galaxies. In the Recognition Science framework, a machine-checked library of formal theorems packages this phenomenon into a single structure called a lensing certificate. The certificate is not a new observation or a simulation; it is a compact set of formal claims about how the framework's own model of lensing is organized.
The certificate begins with a classification. It declares exactly five canonical lensing regimes: weak lensing, strong lensing, microlensing, cluster lensing, and time-delay lensing. A theorem in the library proves that this list has exactly five members, a fact that the certificate carries as its first field. This is a definitional choice about how to carve up the phenomena, not a claim that nature itself presents only these five categories.
The deeper content is a scaling law. The certificate defines a deflection angle for each regime as a power of the golden ratio φ, the number approximately 1.618 that satisfies φ² = φ + 1. Consecutive deflection angles differ by exactly this factor: the ratio of the angle at one step to the angle at the previous step is always φ. The certificate also records that every deflection angle is positive, a basic sanity condition. These are proved theorems in the library, meaning they follow from the framework's definitions with no unverified assumptions.
What the certificate does not do is connect these formal angles to any measured deflection of real light. It contains no comparison to telescope data, no prediction for a specific galaxy cluster, and no claim about the physical mechanism of lensing. The library proves a formal structure; whether that structure matches the observed universe is a separate empirical question that the certificate itself does not address.
THEOREM lensingRegime_count · IndisputableMonolith/Cosmology/GravitationalLensingFromRS.lean
theorem lensingRegime_count : Fintype.card LensingRegime = 5 := by decide
THEOREM deflection_ratio · IndisputableMonolith/Cosmology/GravitationalLensingFromRS.lean
theorem deflection_ratio (k : ℕ) :
deflectionAngle (k + 1) / deflectionAngle k = phi := by
unfold deflectionAngle
have hpos : (0 : ℝ) < phi ^ k := pow_pos phi_pos k
rw [div_eq_iff hpos.ne', pow_succ]
ring
THEOREM deflection_pos · IndisputableMonolith/Cosmology/GravitationalLensingFromRS.lean
theorem deflection_pos (k : ℕ) : 0 < deflectionAngle k := pow_pos phi_pos k
What this page does not claim
The certificate does not claim any agreement with measured gravitational lensing data. The certificate does not claim that the five regimes are the only possible way to classify lensing phenomena. The certificate does not claim that the golden ratio scaling is physically realized in nature.
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/Cosmology/GravitationalLensingFromRS.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 golden ratio as the unique scaling factor for deflection angles?
- What physical mechanism, if any, would connect these formal deflection angles to observed lensing events?
- Does the framework's five-regime classification correspond to a standard taxonomy in observational cosmology?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM lensingRegime_count · IndisputableMonolith/Cosmology/GravitationalLensingFromRS.lean
theorem lensingRegime_count : Fintype.card LensingRegime = 5 := by decideThe certificate declares exactly five canonical lensing regimes: weak lensing, strong lensing, microlensing, cluster lensing, and time-delay lensing. lensingRegime_count · IndisputableMonolith/Cosmology/GravitationalLensingFromRS.leanTHEOREM deflection_ratio · IndisputableMonolith/Cosmology/GravitationalLensingFromRS.lean
theorem deflection_ratio (k : ℕ) : deflectionAngle (k + 1) / deflectionAngle k = phi := by unfold deflectionAngle have hpos : (0 : ℝ) < phi ^ k := pow_pos phi_pos k rw [div_eq_iff hpos.ne', pow_succ] ringConsecutive deflection angles differ by exactly this factor: the ratio of the angle at one step to the angle at the previous step is always φ. deflection_ratio · IndisputableMonolith/Cosmology/GravitationalLensingFromRS.leanTHEOREM deflection_pos · IndisputableMonolith/Cosmology/GravitationalLensingFromRS.lean
theorem deflection_pos (k : ℕ) : 0 < deflectionAngle k := pow_pos phi_pos kThe certificate also records that every deflection angle is positive, a basic sanity condition. deflection_pos · IndisputableMonolith/Cosmology/GravitationalLensingFromRS.lean