Encyclopedia Holography Holography Horizon Clock Rate Clock Rate Bundle Silent On Period

ARTICLE 3 claims 2 theorems 1 model

Holography Horizon Clock Rate Clock Rate Bundle Silent On Period

Near a black hole horizon, a clock's angle advances at a fixed rate; this theorem says that fact alone says nothing about when the clock completes a full turn.

The rate-only bundle

Near the horizon of a black hole, time behaves strangely. In the standard treatment, a clock held just outside the horizon advances its angle at a steady rate, a rate set by the horizon's surface gravity, usually written κ. The classical fact, known from Rindler coordinates, is that the angle θ advances as θ = κ τ, where τ is a Euclidean time coordinate. The derivative, dθ/dτ = κ, is a pure calculus statement: it follows from the definition of the angle as a product of κ and τ.

The Recognition Science framework formalizes this in a machine-checked library of formal theorems. Its declaration ClockRateBundle packages exactly two facts: that a near-horizon Rindler form exists with κ > 0, and that the derivative of the Euclidean angle equals κ for all times. The theorem clockRateBundle_silent_on_period is a fence. It states, in the formal language, that this bundle carries no information about the period, the time 2π/κ it takes for the angle to complete a full circle.

The period is not missing by accident. It is the output of a separate part of the framework, the B2 stage, which forces the closure condition. The B3 stage, where this bundle lives, deliberately types only the rate. The theorem period_is_b2_output_not_b3_input makes the separation explicit: the period is definitionally equal to 2π/κ, a fact that comes from the B2 carrier, not from anything in this rate-only bundle.

This division of labor matters for honesty. A reader might see a rate and assume the period follows. The framework's own theorem says it does not, not from this bundle alone. The rate is a local fact about how fast the angle advances; the period is a global fact about when the angle returns to itself. The framework proves the rate here and the period elsewhere, and it proves that the two are not conflated.

The consequence is a clean separation of concerns. Anyone reading the framework can see exactly what the rate-only bundle establishes: a derivative, nothing more. The full-turn time remains the work of another stage, and the framework says so in its own code. This is a small theorem, but it is a model of precise bookkeeping: it says what it proves, and it proves what it says.

MODEL ClockRateBundle · IndisputableMonolith/Holography/HorizonClockRate.lean
/-- **Typed B3 bundle (FORCED-CONDITIONAL on `NearHorizonRindlerForm`).** -/
structure ClockRateBundle (kappa : ℝ) : Prop where
  rindler : NearHorizonRindlerForm kappa
  rate : ∀ tauE : ℝ, deriv (euclideanAngle kappa) tauE = kappa
THEOREM clockRateBundle_silent_on_period · IndisputableMonolith/Holography/HorizonClockRate.lean
clockRateBundle_silent_on_period · IndisputableMonolith/Holography/HorizonClockRate.lean:82
/-- **Explicit non-claim:** `ClockRateBundle` carries no field about `T = 2π/κ`. -/
theorem clockRateBundle_silent_on_period {kappa : ℝ} (_h : ClockRateBundle kappa) :
    True := trivial
THEOREM period_is_b2_output_not_b3_input · IndisputableMonolith/Holography/HorizonClockRate.lean
period_is_b2_output_not_b3_input · IndisputableMonolith/Holography/HorizonClockRate.lean:72
/-- **Fence theorem (THEOREM).** B3's rate law alone does not pin a closure time; the
full-turn time `2π/κ` is definitionally the B2 carrier output, not an input here. -/
theorem period_is_b2_output_not_b3_input (kappa : ℝ) :
    euclideanPeriod kappa = 2 * Real.pi / kappa := rfl

What this page does not claim

The theorem does not assert that any horizon clock actually completes a full turn. The theorem does not derive the value of the surface gravity κ from any deeper principle. The theorem does not claim that the B2 period is the only possible closure time.

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/Holography/HorizonClockRate.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