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

blanketExternalSet

definition
show as:
view math explainer →
module
IndisputableMonolith.Information.NESSConditionalIndependenceMeasure
domain
Information
line
47 · github
papers citing
none yet

open explainer

Generate a durable explainer page for this declaration.

open lean source

IndisputableMonolith.Information.NESSConditionalIndependenceMeasure on GitHub at line 47.

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

  44  {ω | π.internal ω = i ∧ π.blanket ω = b}
  45
  46/-- Event where blanket and external coordinates take specified values. -/
  47def blanketExternalSet (π : BlanketProjection Ω Internal Blanket External)
  48    (b : Blanket) (e : External) : Set Ω :=
  49  {ω | π.blanket ω = b ∧ π.external ω = e}
  50
  51/-- Blanket event. -/
  52def blanketSet (π : BlanketProjection Ω Internal Blanket External)
  53    (b : Blanket) : Set Ω :=
  54  {ω | π.blanket ω = b}
  55
  56/-- Measure-theoretic conditional independence as blanket factorization. -/
  57def CondIndepGivenBlanket
  58    (P : ProbabilityMeasure Ω)
  59    (π : BlanketProjection Ω Internal Blanket External) : Prop :=
  60  ∀ (i : Internal) (b : Blanket) (e : External),
  61    (P : Measure Ω) (atomSet π i b e) * (P : Measure Ω) (blanketSet π b) =
  62    (P : Measure Ω) (internalBlanketSet π i b) *
  63      (P : Measure Ω) (blanketExternalSet π b e)
  64
  65/-- Ledger-boundary sparsity on the measure surface: the measure has the
  66blanket factorization. In later work this can be derived from a concrete
  67recognition-field generator; here it is the exact hypothesis needed for
  68conditional independence. -/
  69def LedgerBoundarySparsity
  70    (P : ProbabilityMeasure Ω)
  71    (π : BlanketProjection Ω Internal Blanket External) : Prop :=
  72  ∀ (i : Internal) (b : Blanket) (e : External),
  73    (P : Measure Ω) (atomSet π i b e) * (P : Measure Ω) (blanketSet π b) =
  74    (P : Measure Ω) (internalBlanketSet π i b) *
  75      (P : Measure Ω) (blanketExternalSet π b e)
  76
  77theorem ledger_sparsity_implies_measure_condIndep