All proofs
Project-declaredLean 4.32.0 · mathlib@81a5d257c8e4

Is Closable of continuous

LinearPMap.isClosable_of_continuous

Plain-language statement

Continuous operators are closable.

Exact Lean statement

lemma isClosable_of_continuous (h : Continuous U) : U.IsClosable

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
lemma isClosable_of_continuous (h : Continuous U) : U.IsClosable := by  use U.graph.topologicalClosure.toLinearPMap  refine (toLinearPMap_graph_eq _ fun x hx hx₁  ?_).symm  obtain b, hb, hbx := mem_closure_iff_seq_limit.mp hx  rw [nhds_prod_eq] at hbx  refine norm_eq_zero.mp (tendsto_nhds_unique hbx.snd.norm ?_)  obtain M, hM, h_bound := LinearMap.continuous_iff_bounded.mp h  refine squeeze_zero (g := fun n  M * ‖(b n).1‖) (fun _  norm_nonneg _) (fun n  ?_) ?_  · obtain y, hy₁, hy₂ := (mem_graph_iff _).mp (hb n)    simp only [ hy₁,  hy₂]    exact h_bound y  · exact mul_zero M ▸ (norm_eq_zero.mpr hx₁) ▸ hbx.fst.norm.const_mul M
Project
Physlib
License
Apache-2.0
Commit
dd43e9e65791
Source
Physlib/QuantumMechanics/Operators/Unbounded.lean:419-430

Reuse this declaration

Bring the exact result into your workflow

The import identifies the source module. Your project still needs the pinned package dependency shown on this page.

What this badge means

This completion status comes from the project or community source. It has not yet been represented here as an independent rebuild and axiom audit.

Continue in this project

Related declarations

Project-declaredLean 4.32.0

Adiabatic relation log

adiabatic_relation_log

Plain-language statement

Adiabatic relation in logarithmic form: If S(Ua,Va,N) = S(Ub,Vb,N) with N fixed, then c * log (Ua/Ub) + log (Va/Vb) = 0.

physicsquantum field theoryrelativity

Source project: Physlib

Person-level attribution pending.

View proof record
Project-declaredLean 4.32.0

Adiabatic relation Ua Ub Va Vb

adiabatic_relation_UaUbVaVb

Plain-language statement

Adiabatic relation in product form: If S(Ua,Va,N) = S(Ub,Vb,N) with N fixed, then (Ua/Ub)^c * (Va/Vb) = 1.

physicsquantum field theoryrelativity

Source project: Physlib

Person-level attribution pending.

View proof record