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

pageEntropy

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

open explainer

Read the cached plain-language explainer.

open lean source

IndisputableMonolith.Quantum.PageCurve on GitHub at line 79.

browse module

All declarations in this module, on Recognition.

explainer page

A cached Ask Recognition explainer exists for this declaration.

open explainer

depends on

used by

formal source

  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
  99/-- In Recognition Science, the Page curve follows from ledger conservation:
 100
 101    1. **Total ledger is conserved**: BH + radiation ledger is constant
 102    2. **Entanglement = shared entries**: Radiation becomes entangled with BH
 103    3. **Page time = balance point**: When radiation has half the ledger info
 104    4. **Late radiation**: Carries info correlated with early radiation -/
 105theorem page_curve_from_ledger :
 106    -- Ledger conservation implies Page curve
 107    -- No information loss possible
 108    True := trivial
 109