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

RSHilbertSpace

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

open explainer

Read the cached plain-language explainer.

open lean source

IndisputableMonolith.Quantum.HilbertSpace on GitHub at line 14.

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

  11namespace IndisputableMonolith.Quantum
  12
  13/-- A separable Hilbert space structure -/
  14class RSHilbertSpace (H : Type*) extends
  15  SeminormedAddCommGroup H,
  16  InnerProductSpace ℂ H,
  17  CompleteSpace H,
  18  TopologicalSpace.SeparableSpace H
  19
  20/-- Normalized state (unit vector) -/
  21structure NormalizedState (H : Type*) [RSHilbertSpace H] where
  22  vec : H
  23  norm_one : ‖vec‖ = 1
  24
  25end IndisputableMonolith.Quantum