Support of distributions #
We define the support of a distribution, dsupport u, as the intersection of all closed sets for
which u vanishes on the complement.
For this we also define a predicate IsVanishingOn that asserts that a map f : F → V vanishes on
s : Set α if for all u : F with tsupport u ⊆ s it follows that f u = 0.
These definitions work independently of a specific class of distributions (classical, tempered, or
compactly supported) and all basic properties are proved in an abstract setting using FunLike.
Main definitions #
IsVanishingOn: A distribution vanishes on a set if it acts trivially on all test functions supported in that subset.dsupport: The support of a distribution is the intersection of all closed sets for which that distribution vanishes on the complement of the set.
Main statements #
TemperedDistribution.dsupport_delta: The support of the delta distribution is a single point.
Vanishing of distributions #
A distribution f vanishes on a set s if it vanishes for all test functions u with
tsupport u ⊆ s.
To make this definition work for all types of distributions, we define it for any function from
a FunLike type to a type with zero.
Equations
- Distribution.IsVanishingOn f s = ∀ (u : F), tsupport ⇑u ⊆ s → f u = 0
Instances For
Support #
The distributional support of f is the intersection of all closed sets s such that f
vanishes on the complement of s.
To make this definition work for all types of distributions, we define it for any function from
a FunLike type to a type with zero.
Instances For
The complement of the support is the largest open set on which f vanishes.
The complement of the support is given by all bounded open sets on which f vanishes.