The weak operator topology #
This file defines a type copy of E →L[𝕜] F
(where F
is a normed space) which is
endowed with the weak operator topology (WOT) rather than the topology induced by the operator norm.
The WOT is defined as the coarsest topology such that the functional fun A => y (A x)
is
continuous for any x : E
and y : NormedSpace.Dual 𝕜 F
. Equivalently, a function f
tends to
A : E →WOT[𝕜] F
along filter l
iff y (f a x)
tends to y (A x)
along the same filter.
Basic non-topological properties of E →L[𝕜] F
(such as the module structure) are copied over to
the type copy.
We also prove that the WOT is induced by the family of seminorms ‖y (A x)‖
for x : E
and
y : NormedSpace.Dual 𝕜 F
.
Main declarations #
ContinuousLinearMapWOT 𝕜 E F
: The type copy ofE →L[𝕜] F
endowed with the weak operator topology.ContinuousLinearMapWOT.tendsto_iff_forall_dual_apply_tendsto
: a functionf
tends toA : E →WOT[𝕜] F
along filterl
iffy ((f a) x)
tends toy (A x)
along the same filter.ContinuousLinearMap.toWOT
: the inclusion map fromE →L[𝕜] F
to the type copyContinuousLinearMap.continuous_toWOT
: the inclusion map is continuous, i.e. the WOT is coarser than the norm topology.ContinuousLinearMapWOT.withSeminorms
: the WOT is induced by the family of seminorms‖y (A x)‖
forx : E
andy : NormedSpace.Dual 𝕜 F
.
Notation #
- The type copy of
E →L[𝕜] F
endowed with the weak operator topology is denoted byE →WOT[𝕜] F
. - We locally use the notation
F⋆
forNormedSpace.Dual 𝕜 F
.
Implementation notes #
In the literature, the WOT is only defined on maps between Banach spaces. Here, we generalize this
a bit to E →L[𝕜] F
where F
is an normed space, and E
actually only needs to be a vector
space with some topology for most results in this file.
The type copy of E →L[𝕜] F
endowed with the weak operator topology, denoted as
E →WOT[𝕜] F
.
Instances For
The type copy of E →L[𝕜] F
endowed with the weak operator topology, denoted as
E →WOT[𝕜] F
.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Basic properties common with E →L[𝕜] F
#
The section copies basic non-topological properties of E →L[𝕜] F
over to E →WOT[𝕜] F
, such as
the module structure, FunLike
, etc.
Equations
- ContinuousLinearMapWOT.instAddCommGroup = inferInstanceAs (AddCommGroup (E →L[𝕜] F))
Equations
- ContinuousLinearMapWOT.instModule = inferInstanceAs (Module 𝕜 (E →L[𝕜] F))
The linear equivalence that sends a continuous linear map to the type copy endowed with the weak operator topology.
Equations
- ContinuousLinearMap.toWOT 𝕜 E F = LinearEquiv.refl 𝕜 (E →L[𝕜] F)
Instances For
Equations
- ContinuousLinearMapWOT.instFunLike = { coe := fun (f : E →WOT[𝕜]F) => ⇑((ContinuousLinearMap.toWOT 𝕜 E F).symm f), coe_injective' := ⋯ }
Equations
- ⋯ = ⋯
The topology of E →WOT[𝕜] F
#
The section endows E →WOT[𝕜] F
with the weak operator topology and shows the basic properties
of this topology. In particular, we show that it is a topological vector space.
The function that induces the topology on E →WOT[𝕜] F
, namely the function that takes
an A
and maps it to fun ⟨x, y⟩ => y (A x)
in E × F⋆ → 𝕜
, bundled as a linear map to make
it easier to prove that it is a TVS.
Equations
- ContinuousLinearMapWOT.inducingFn 𝕜 E F = { toFun := fun (A : E →WOT[𝕜]F) (x : E × NormedSpace.Dual 𝕜 F) => match x with | (x, y) => y (A x), map_add' := ⋯, map_smul' := ⋯ }
Instances For
The weak operator topology is the coarsest topology such that fun A => y (A x)
is
continuous for all x, y
.
Equations
- ContinuousLinearMapWOT.instTopologicalSpace = TopologicalSpace.induced (⇑(ContinuousLinearMapWOT.inducingFn 𝕜 E F)) Pi.topologicalSpace
The defining property of the weak operator topology: a function f
tends to
A : E →WOT[𝕜] F
along filter l
iff y (f a x)
tends to y (A x)
along the same filter.
Equations
- ⋯ = ⋯
Equations
- ⋯ = ⋯
Equations
- ⋯ = ⋯
Equations
- ⋯ = ⋯
Equations
- ⋯ = ⋯
Equations
- ContinuousLinearMapWOT.instUniformSpace = UniformSpace.comap (⇑(ContinuousLinearMapWOT.inducingFn 𝕜 E F)) inferInstance
Equations
- ⋯ = ⋯
The WOT is induced by a family of seminorms #
The family of seminorms that induce the weak operator topology, namely ‖y (A x)‖
for
all x
and y
.
Equations
Instances For
The family of seminorms that induce the weak operator topology, namely ‖y (A x)‖
for
all x
and y
.
Equations
- ContinuousLinearMapWOT.seminormFamily 𝕜 E F (x_1, y) = ContinuousLinearMapWOT.seminorm x_1 y
Instances For
Equations
- ⋯ = ⋯
The weak operator topology is coarser than the norm topology, i.e. the inclusion map is continuous.
The inclusion map from E →[𝕜] F
to E →WOT[𝕜] F
, bundled as a continuous linear map.
Equations
- ContinuousLinearMap.toWOTCLM = { toLinearMap := ↑(ContinuousLinearMap.toWOT 𝕜 E F), cont := ⋯ }