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

LawfulNormalizer

definition
show as:
view math explainer →
module
IndisputableMonolith.URCAdapters.LawfulNormalizer
domain
URCAdapters
line
5 · github
papers citing
none yet

open explainer

Generate a durable explainer page for this declaration.

open lean source

IndisputableMonolith.URCAdapters.LawfulNormalizer on GitHub at line 5.

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

   2
   3namespace URC
   4
   5structure LawfulNormalizer (x : ℝ) : Prop where
   6  fixed : x = 1
   7  EL    : IndisputableMonolith.URCAdapters.EL_prop
   8
   9def lambda_rec_unique : Prop := ExistsUnique (fun x : ℝ => LawfulNormalizer x)
  10
  11end URC
  12
  13namespace IndisputableMonolith
  14namespace URCAdapters
  15
  16/-- Prop-level witness: a trivial normalizer at λ=1 satisfies stationarity and scaling invariance
  17    under our current abstract obligations; this stands in for the concrete λ_rec bridge and will be
  18    refined when the ethics alignment hook is exposed. -/
  19lemma lawful_normalizer_exists_unique : URC.lambda_rec_unique := by
  20  refine ExistsUnique.intro 1 ?hex ?uniq
  21  · -- existence: provide a LawfulNormalizer at λ=1 using EL stationarity/minimality
  22    exact ⟨rfl, IndisputableMonolith.URCAdapters.EL_holds⟩
  23  · -- uniqueness: any lawful normalizer must equal 1 under these obligations
  24    intro x hx
  25    exact hx.fixed
  26
  27end URCAdapters
  28end IndisputableMonolith