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

commutation_structure

proved
show as:
view math explainer →
module
IndisputableMonolith.Quantum.CommutationStructure
domain
Quantum
line
12 · github
papers citing
none yet

open explainer

Generate a durable explainer page for this declaration.

open lean source

IndisputableMonolith.Quantum.CommutationStructure on GitHub at line 12.

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

formal source

   9def commutation_from_ledger : Prop :=
  10  ∀ (H : Type*) [RSHilbertSpace H], ∀ P : Projector H, P.op.comp P.op = P.op
  11
  12theorem commutation_structure : commutation_from_ledger := by
  13  intro H hH P
  14  exact P.idempotent
  15
  16/-- Universe-stable extractor for commutation structure. -/
  17theorem commutation_implies_projector_idempotent.{u}
  18    (h : @commutation_from_ledger.{u}) : @commutation_from_ledger.{u} :=
  19  h
  20
  21end CommutationStructure
  22end Quantum
  23end IndisputableMonolith