Encyclopedia Cosmology Cosmology Gravitational Lensing From Rs
ARTICLE 3 claims 2 theorems 1 model
Cosmology Gravitational Lensing From Rs
Gravitational lensing bends light in five distinct ways, and in Recognition Science those five regimes form a single ladder where each step is a fixed multiple of the one before.
The five lensing regimes
Gravitational lensing is the bending of light from a distant source by the gravity of an intervening mass, such as a galaxy or black hole. Astronomers sort its effects into five canonical regimes: weak lensing, strong lensing, microlensing, cluster lensing, and time-delay lensing. Weak lensing slightly distorts the shapes of background galaxies, strong lensing produces multiple images or rings, microlensing causes brief brightenings of individual stars, cluster lensing acts on the scale of galaxy clusters, and time-delay lensing measures how long light takes along different paths. Each regime has its own characteristic deflection angle, the amount by which the light's path is bent.
In Recognition Science, a ledger, a discrete record of events, structures these five regimes as a single sequence. The framework's machine-checked library of formal theorems proves that the ratio of any regime's deflection angle to the previous one is exactly the golden ratio, about 1.618. If the weak-lensing angle is one unit, strong lensing is 1.618 units, microlensing is 2.618, and so on. The framework also proves every angle is positive, so no regime collapses to zero bending. These results are not fitted numbers; they follow from the framework's founding cost theorem, which forces the golden ratio as the unique self-similar scaling.
The framework models the five regimes as a single inductive type with exactly five members, and its certification structure bundles the three key facts: five regimes, the golden-ratio spacing, and positivity. This is a definitional choice, not a measurement. The framework's library proves the ratio theorem and the positivity theorem; the identification of real-world lensing observations with these ladder steps remains a physical bridge that is open, not established.
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
MODEL LensingRegime · lensingRegime_count · IndisputableMonolith/Cosmology/GravitationalLensingFromRS.lean
inductive LensingRegime where
| weakLensing
| strongLensing
| microlensing
| clusterLensing
| timeDelay
deriving DecidableEq, Repr, BEq, Fintype
theorem lensingRegime_count : Fintype.card LensingRegime = 5 := by decide
What this page does not claim
The framework does not derive the physical deflection angles of real lensing events; it only structures them on the golden-ratio ladder. This module does not prove that gravitational lensing exists; it assumes the standard five regimes as a definitional starting point. No claim is made that the golden-ratio spacing has been confirmed by observation; that remains an open empirical check.
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 each of the five lensing regimes map to specific observed astrophysical phenomena?
- What physical mechanism connects the golden-ratio ladder of deflection angles to actual light bending?
- Does the framework's five-regime taxonomy match the standard classification used in observational cosmology?
- What would a measurement of a deflection angle that breaks the golden-ratio sequence imply for the framework?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
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] ringThe framework's machine-checked library of formal theorems proves that the ratio of any regime's deflection angle to the previous one is exactly the golden ratio, about 1.618. deflection_ratio · IndisputableMonolith/Cosmology/GravitationalLensingFromRS.leanTHEOREM deflection_pos · IndisputableMonolith/Cosmology/GravitationalLensingFromRS.lean
theorem deflection_pos (k : ℕ) : 0 < deflectionAngle k := pow_pos phi_pos kThe framework also proves every angle is positive, so no regime collapses to zero bending. deflection_pos · IndisputableMonolith/Cosmology/GravitationalLensingFromRS.leanMODEL LensingRegime · lensingRegime_count · IndisputableMonolith/Cosmology/GravitationalLensingFromRS.lean
inductive LensingRegime where | weakLensing | strongLensing | microlensing | clusterLensing | timeDelay deriving DecidableEq, Repr, BEq, Fintypetheorem lensingRegime_count : Fintype.card LensingRegime = 5 := by decideThe framework models the five regimes as a single inductive type with exactly five members. LensingRegime · lensingRegime_count · IndisputableMonolith/Cosmology/GravitationalLensingFromRS.lean