Documentation

Mathlib.Topology.Algebra.Module.LinearPMap

Partially defined linear operators over topological vector spaces #

We define basic notions of partially defined linear operators, which we call unbounded operators for short. In this file we prove all elementary properties of unbounded operators that do not assume that the underlying spaces are normed.

Main definitions #

Main statements #

References #

Tags #

Unbounded operators, closed operators

Closed and closable operators #

def LinearPMap.IsClosed {R : Type u_1} {E : Type u_2} {F : Type u_3} [CommRing R] [AddCommGroup E] [AddCommGroup F] [Module R E] [Module R F] [TopologicalSpace E] [TopologicalSpace F] (f : E →ₗ.[R] F) :

An unbounded operator is closed iff its graph is closed.

Equations
Instances For

    An unbounded operator is closable iff the closure of its graph is a graph.

    Equations
    Instances For

      A closed operator is trivially closable.

      If g has a closable extension f, then g itself is closable.

      noncomputable def LinearPMap.closure {R : Type u_1} {E : Type u_2} {F : Type u_3} [CommRing R] [AddCommGroup E] [AddCommGroup F] [Module R E] [Module R F] [TopologicalSpace E] [TopologicalSpace F] [ContinuousAdd E] [ContinuousAdd F] [TopologicalSpace R] [ContinuousSMul R E] [ContinuousSMul R F] (f : E →ₗ.[R] F) :

      If f is closable, then f.closure is the closure. Otherwise it is defined as f.closure = f.

      Equations
      Instances For

        The closure (as a submodule) of the graph is equal to the graph of the closure (as a LinearPMap).

        A LinearPMap is contained in its closure.

        If f is closable, then the closure is closed.

        If f is closable, then the closure is closable.

        The core of a linear operator #

        structure LinearPMap.HasCore {R : Type u_1} {E : Type u_2} {F : Type u_3} [CommRing R] [AddCommGroup E] [AddCommGroup F] [Module R E] [Module R F] [TopologicalSpace E] [TopologicalSpace F] [ContinuousAdd E] [ContinuousAdd F] [TopologicalSpace R] [ContinuousSMul R E] [ContinuousSMul R F] (f : E →ₗ.[R] F) (S : Submodule R E) :

        A submodule S is a core of f if the closure of the restriction of f to S is again f.

        Instances For

          For every unbounded operator f the submodule f.domain is a core of its closure.

          Note that we don't require that f is closable, due to the definition of the closure.

          Topological properties of the inverse #

          If f is invertible and closable as well as its closure being invertible, then the graph of the inverse of the closure is given by the closure of the graph of the inverse.

          Assuming that f is invertible and closable, then the closure is invertible if and only if the inverse of f is closable.

          If f is invertible and closable, then taking the closure and the inverse commute.