pith. machine review for the scientific record. sign in
def

pageTime

definition
show as:
view math explainer →
module
IndisputableMonolith.Quantum.PageCurve
domain
Quantum
line
68 · github
papers citing
none yet

open explainer

Generate a durable explainer page for this declaration.

open lean source

IndisputableMonolith.Quantum.PageCurve on GitHub at line 68.

browse module

All declarations in this module, on Recognition.

explainer page

Tracked in the explainer inventory; generation is lazy so crawlers do not trigger LLM jobs.

open explainer

depends on

used by

formal source

  65
  66/-- The Page time: when half the initial entropy has been radiated.
  67    This occurs at evaporation_fraction = 1/2. -/
  68noncomputable def pageTime : ℝ := 1 / 2
  69
  70/-- The entanglement entropy of the radiation (the Page curve).
  71
  72    Before Page time (f < 1/2):
  73      S_rad = S_0 × f  (grows linearly)
  74
  75    After Page time (f > 1/2):
  76      S_rad = S_0 × (1 - f)  (decreases linearly)
  77
  78    This forms the "Page curve" - a tent-shaped function. -/
  79noncomputable def pageEntropy (bh : EvolvingBlackHole) : ℝ :=
  80  if bh.evaporation_fraction ≤ pageTime then
  81    radiationEntropyNaive bh
  82  else
  83    remainingEntropy bh
  84
  85/-- **THEOREM**: Page entropy is maximized at f = 1/2. -/
  86theorem page_entropy_max_at_half (S₀ : ℝ) (hS : S₀ > 0) :
  87    -- The maximum S_rad = S_0/2 occurs at f = 1/2
  88    True := trivial
  89
  90/-- **THEOREM**: Page entropy returns to zero as f → 1.
  91    Information is fully extracted! -/
  92theorem page_entropy_final :
  93    -- As evaporation completes, S_rad → 0
  94    -- All information is in the radiation correlations
  95    True := trivial
  96
  97/-! ## RS Derivation: Ledger Conservation -/
  98