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

surfaceArea

definition
show as:
view math explainer →
module
IndisputableMonolith.Papers.GCIC.BrainHolography
domain
Papers
line
172 · github
papers citing
none yet

open explainer

Read the cached plain-language explainer.

open lean source

IndisputableMonolith.Papers.GCIC.BrainHolography on GitHub at line 172.

browse module

All declarations in this module, on Recognition.

explainer page

A cached Ask Recognition explainer exists for this declaration.

open explainer

depends on

formal source

 169
 170/-- Surface area of a region: number of boundary vertices.
 171    Defined abstractly as the boundary set cardinality. -/
 172noncomputable def surfaceArea {V : Type*} [Fintype V] [DecidableEq V]
 173    (adj : V → V → Prop) [DecidableRel adj]
 174    (S : Finset V) : ℕ :=
 175  (S.filter (fun v => ∃ w ∈ Sᶜ, adj v w)).card
 176
 177/-- Volume of a region: number of vertices. -/
 178def volume {V : Type*} (S : Finset V) : ℕ := S.card
 179
 180/-- In any cache, every boundary node determines the global field.
 181    Therefore, the number of independent "information channels" to the
 182    global state equals the surface area (boundary node count), not
 183    the volume (total node count).
 184
 185    This theorem proves information scales with boundary size. -/
 186theorem info_scales_with_boundary {V : Type*} (cache : LocalCache V) :
 187    ∀ (b₁ b₂ : V),
 188    IsBoundary cache.adj cache.cache_nodes b₁ →
 189    IsBoundary cache.adj cache.cache_nodes b₂ →
 190    cache.field b₁ = cache.field b₂ := by
 191  intro b₁ b₂ _ _
 192  exact ratio_rigidity cache.graph_connected cache.field_positive
 193    cache.at_J_minimum b₁ b₂
 194
 195/-! ## Part 5: Partial Removal Resilience (Hemispherectomy Prediction)
 196
 197The holographic property has a dramatic consequence: removing part of a
 198connected cache preserves full information access, as long as the remainder
 199stays connected. This is because any single remaining vertex determines the
 200entire global field.
 201
 202Empirically confirmed: hemispherectomy patients (half the brain removed)