pith. machine review for the scientific record. sign in
def definition def or abbrev moderate

H_ShadowFringeObservable

show as:
view Lean formalization →

This definition encodes the predicate asserting existence of a positive spatial wavelength for the phase fringe induced by the eight-tick cycle on a black hole shadow of radius Rs viewed at distance dist. Observational astrophysicists forecasting EHT-class data on small shadows would cite it to obtain the predicted modulation scale. The predicate is realized by direct construction of the wavelength as eight times the fundamental tick duration multiplied by the speed of light and the angular size Rs over dist.

claimThe predicate $H(R_s, d, r)$ holds when there exists a positive real number $lambda$ satisfying $lambda = 8 tau_0 c (R_s / d)$, where $tau_0$ is the fundamental tick duration and $c$ is the speed of light in SI units.

background

The module formalizes ILG-corrected lensing predictions for black hole shadows, with the explicit objective of showing that the eight-tick cycle produces a detectable phase fringe at the event horizon. Local notation introduces Rs as shadow radius, dist as observer distance, and res as instrumental resolution, though the predicate itself does not reference res.

proof idea

The definition first sets theta_Rs to Rs divided by dist and f_fringe to the reciprocal of eight times tau0. It then asserts existence of a positive lambda_fringe equal to c_SI divided by f_fringe times theta_Rs. This is a direct constructive definition with no external lemmas invoked.

why it matters in Recognition Science

The declaration supplies the concrete empirical hypothesis for testing the eight-tick octave (T7) of the unified forcing chain through shadow observations. It supplies the wavelength scale referenced by sibling declarations such as shadow_fringe_wavelength_exists and fringe_frequency_grounded. The noted open question is the precise conversion from temporal frequency 1 over 8 tau0 to spatial wavelength, which requires further input from the geodesic structure near the horizon.

scope and limits

formal statement (Lean)

  90def H_ShadowFringeObservable (Rs dist res : ℝ) : Prop :=

proof body

Definition body.

  91  let theta_Rs := Rs / dist
  92  let f_fringe := 1 / (8 * tau0)
  93  -- The fringe is observable if the spatial wavelength exceeds resolution
  94  ∃ lambda_fringe : ℝ, lambda_fringe > 0 ∧
  95    -- Physical constraint: wavelength is related to fringe frequency and light travel time
  96    lambda_fringe = c_SI / f_fringe * theta_Rs
  97
  98/-- **THEOREM (RIGOROUS)**: Existence of a spatial wavelength.
  99
 100    This proves that a spatial wavelength CAN be defined for any finite tau0.
 101    Whether it exceeds the resolution is an empirical question. -/

depends on (20)

Lean names referenced from this declaration's body.