Weak dual topology #
We continue in the setting of Mathlib.Topology.Algebra.Module.WeakBilin
,
which defines the weak topology given two vector spaces E
and F
over a commutative semiring
𝕜
and a bilinear form B : E →ₗ[𝕜] F →ₗ[𝕜] 𝕜
. The weak topology on E
is the coarsest topology
such that for all y : F
every map fun x => B x y
is continuous.
In this file, we consider two special cases.
In the case that F = E →L[𝕜] 𝕜
and B
being the canonical pairing, we obtain the weak-* topology,
WeakDual 𝕜 E := (E →L[𝕜] 𝕜)
. Interchanging the arguments in the bilinear form yields the
weak topology WeakSpace 𝕜 E := E
.
Main definitions #
The main definitions are the types WeakDual 𝕜 E
and WeakSpace 𝕜 E
,
with the respective topology instances on it.
WeakDual 𝕜 E
is a type synonym forDual 𝕜 E
(when the latter is defined): both are equal to the typeE →L[𝕜] 𝕜
of continuous linear maps from a moduleE
over𝕜
to the ring𝕜
.- The instance
WeakDual.instTopologicalSpace
is the weak-* topology onWeakDual 𝕜 E
, i.e., the coarsest topology making the evaluation maps at allz : E
continuous. WeakSpace 𝕜 E
is a type synonym forE
(when the latter is defined).- The instance
WeakSpace.instTopologicalSpace
is the weak topology onE
, i.e., the coarsest topology such that allv : dual 𝕜 E
remain continuous.
Notations #
No new notation is introduced.
References #
- [H. H. Schaefer, Topological Vector Spaces][schaefer1966]
Tags #
weak-star, weak dual, duality
The canonical pairing of a vector space and its topological dual.
Equations
Instances For
The weak star topology is the topology coarsest topology on E →L[𝕜] 𝕜
such that all
functionals fun v => v x
are continuous.
Equations
- WeakDual 𝕜 E = WeakBilin (topDualPairing 𝕜 E)
Instances For
Equations
- WeakDual.instAddCommMonoid = WeakBilin.instAddCommMonoid (topDualPairing 𝕜 E)
Equations
- WeakDual.instModule = WeakBilin.instModule (topDualPairing 𝕜 E)
Equations
- WeakDual.instTopologicalSpace = WeakBilin.instTopologicalSpace (topDualPairing 𝕜 E)
Equations
- ⋯ = ⋯
Equations
- WeakDual.instInhabited = ContinuousLinearMap.inhabited
Equations
- WeakDual.instFunLike = ContinuousLinearMap.funLike
Equations
- ⋯ = ⋯
If a monoid M
distributively continuously acts on 𝕜
and this action commutes with
multiplication on 𝕜
, then it acts on WeakDual 𝕜 E
.
Equations
- WeakDual.instMulAction M = ContinuousLinearMap.mulAction
If a monoid M
distributively continuously acts on 𝕜
and this action commutes with
multiplication on 𝕜
, then it acts distributively on WeakDual 𝕜 E
.
Equations
- WeakDual.instDistribMulAction M = ContinuousLinearMap.distribMulAction
If 𝕜
is a topological module over a semiring R
and scalar multiplication commutes with the
multiplication on 𝕜
, then WeakDual 𝕜 E
is a module over R
.
Equations
- WeakDual.instModule' R = ContinuousLinearMap.module
Equations
- ⋯ = ⋯
If a monoid M
distributively continuously acts on 𝕜
and this action commutes with
multiplication on 𝕜
, then it continuously acts on WeakDual 𝕜 E
.
Equations
- ⋯ = ⋯
Equations
- ⋯ = ⋯
Equations
- WeakDual.instAddCommGroup = WeakBilin.instAddCommGroup (topDualPairing 𝕜 E)
Equations
- ⋯ = ⋯
The weak topology is the topology coarsest topology on E
such that all functionals
fun x => v x
are continuous.
Equations
- WeakSpace 𝕜 E = WeakBilin (topDualPairing 𝕜 E).flip
Instances For
Equations
- WeakSpace.instAddCommMonoid = WeakBilin.instAddCommMonoid (topDualPairing 𝕜 E).flip
Equations
- WeakSpace.instModule = WeakBilin.instModule (topDualPairing 𝕜 E).flip
Equations
- WeakSpace.instTopologicalSpace = WeakBilin.instTopologicalSpace (topDualPairing 𝕜 E).flip
Equations
- ⋯ = ⋯
Equations
- WeakSpace.instModule' = WeakBilin.instModule' (topDualPairing 𝕜 E).flip
Equations
- ⋯ = ⋯
A continuous linear map from E
to F
is still continuous when E
and F
are equipped with
their weak topologies.
Equations
- WeakSpace.map f = { toLinearMap := ↑f, cont := ⋯ }
Instances For
There is a canonical map E → WeakSpace 𝕜 E
(the "identity"
mapping). It is a linear equivalence.
Equations
- toWeakSpace 𝕜 E = LinearEquiv.refl 𝕜 E
Instances For
For a topological vector space E
, "identity mapping" E → WeakSpace 𝕜 E
is continuous.
This definition implements it as a continuous linear map.
Equations
- toWeakSpaceCLM 𝕜 E = { toLinearMap := ↑(toWeakSpace 𝕜 E), cont := ⋯ }
Instances For
The canonical map from WeakSpace 𝕜 E
to E
is an open map.
A set in E
which is open in the weak topology is open.
Equations
- WeakSpace.instAddCommGroup = WeakBilin.instAddCommGroup (topDualPairing 𝕜 E).flip
Equations
- ⋯ = ⋯