class
definition
RSHilbertSpace
show as:
view math explainer →
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
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