The vector bundle of continuous (semi)linear maps #
We define the (topological) vector bundle of continuous (semi)linear maps between two vector bundles over the same base.
Given bundles E₁ E₂ : B → Type*
, normed spaces F₁
and F₂
, and a ring-homomorphism σ
between
their respective scalar fields, we define Bundle.ContinuousLinearMap σ F₁ E₁ F₂ E₂ x
to be a
type synonym for fun x ↦ E₁ x →SL[σ] E₂ x
. If the E₁
and E₂
are vector bundles with model
fibers F₁
and F₂
, then this will be a vector bundle with fiber F₁ →SL[σ] F₂
.
The topology on the total space is constructed from the trivializations for E₁
and E₂
and the
norm-topology on the model fiber F₁ →SL[𝕜] F₂
using the VectorPrebundle
construction. This is
a bit awkward because it introduces a dependence on the normed space structure of the model fibers,
rather than just their topological vector space structure; it is not clear whether this is
necessary.
Similar constructions should be possible (but are yet to be formalized) for tensor products of topological vector bundles, exterior algebras, and so on, where again the topology can be defined using a norm on the fiber model if this helps.
Main Definitions #
Bundle.ContinuousLinearMap.vectorBundle
: continuous semilinear maps between vector bundles form a vector bundle.
A reducible type synonym for the bundle of continuous (semi)linear maps. For some reason, it helps with instance search.
Porting note: after the port is done, we may want to remove this definition.
Equations
- Bundle.ContinuousLinearMap σ E₁ E₂ x = (E₁ x →SL[σ] E₂ x)
Instances For
Assume eᵢ
and eᵢ'
are trivializations of the bundles Eᵢ
over base B
with fiber Fᵢ
(i ∈ {1,2}
), then Pretrivialization.continuousLinearMapCoordChange σ e₁ e₁' e₂ e₂'
is the
coordinate change function between the two induced (pre)trivializations
Pretrivialization.continuousLinearMap σ e₁ e₂
and
Pretrivialization.continuousLinearMap σ e₁' e₂'
of Bundle.ContinuousLinearMap
.
Equations
- Pretrivialization.continuousLinearMapCoordChange σ e₁ e₁' e₂ e₂' b = ↑((Trivialization.coordChangeL 𝕜₁ e₁' e₁ b).symm.arrowCongrSL (Trivialization.coordChangeL 𝕜₂ e₂ e₂' b))
Instances For
Given trivializations e₁
, e₂
for vector bundles E₁
, E₂
over a base B
,
Pretrivialization.continuousLinearMap σ e₁ e₂
is the induced pretrivialization for the
continuous σ
-semilinear maps from E₁
to E₂
. That is, the map which will later become a
trivialization, after the bundle of continuous semilinear maps is equipped with the right
topological vector bundle structure.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- ⋯ = ⋯
The continuous σ
-semilinear maps between two topological vector bundles form a
VectorPrebundle
(this is an auxiliary construction for the
VectorBundle
instance, in which the pretrivializations are collated but no topology
on the total space is yet provided).
Equations
- One or more equations did not get rendered due to their size.
Instances For
Topology on the total space of the continuous σ
-semilinear maps between two "normable" vector
bundles over the same base.
Equations
- Bundle.ContinuousLinearMap.topologicalSpaceTotalSpace σ F₁ E₁ F₂ E₂ = (Bundle.ContinuousLinearMap.vectorPrebundle σ F₁ E₁ F₂ E₂).totalSpaceTopology
The continuous σ
-semilinear maps between two vector bundles form a fiber bundle.
Equations
- Bundle.ContinuousLinearMap.fiberBundle σ F₁ E₁ F₂ E₂ = (Bundle.ContinuousLinearMap.vectorPrebundle σ F₁ E₁ F₂ E₂).toFiberBundle
The continuous σ
-semilinear maps between two vector bundles form a vector bundle.
Equations
- ⋯ = ⋯
Given trivializations e₁
, e₂
in the atlas for vector bundles E₁
, E₂
over a base B
,
the induced trivialization for the continuous σ
-semilinear maps from E₁
to E₂
,
whose base set is e₁.baseSet ∩ e₂.baseSet
.
Equations
- Trivialization.continuousLinearMap σ e₁ e₂ = (Bundle.ContinuousLinearMap.vectorPrebundle σ F₁ E₁ F₂ E₂).trivializationOfMemPretrivializationAtlas ⋯
Instances For
Equations
- ⋯ = ⋯