Distributions from bounded functions #
In this module we define distributions from functions f : EuclideanSpace ℝ (Fin d.succ) → F
whose norm is bounded by c1 * ‖x‖ ^ (-d : ℝ) + c2 * ‖x‖ ^ n
for some constants c1
, c2
and n
.
This gives a convenient way to construct distributions from functions, without needing to reference the underlying Schwartz maps.
Key definition #
ofBounded
: Creates a distribution from a bounded functionf
.
Method of definition #
The ofBounded
function is defined through two measures invPowMeasure
and powMeasure n
,
the first is the measure with density 1/‖x‖ᵈ
and the second is the measure with density ‖x‖^n
.
Both these measures are proven to have temperate growth, and can be used to define a distribution
by intergration.
We also define a boundMeasure
which is a linear combination of these two measures.
The measures. #
The measure on EuclideanSpace ℝ (Fin 3)
weighted by 1 / ‖x‖ ^ 2
.
Equations
- Distribution.invPowMeasure = MeasureTheory.volume.withDensity fun (x : EuclideanSpace ℝ (Fin dm1.succ)) => ENNReal.ofReal (1 / ‖x‖ ^ dm1)
Instances For
The measure on EuclideanSpace ℝ (Fin 3)
weighted by ‖x‖ ^ n
.
Equations
- Distribution.powMeasure n = MeasureTheory.volume.withDensity fun (x : EuclideanSpace ℝ (Fin dm1.succ)) => ENNReal.ofReal (‖x‖ ^ n)
Instances For
The measure on EuclideanSpace ℝ (Fin 3)
given by C1 • invPowMeasure + C2 • powMeasure n
,
for constants C1
and C2
.
Equations
Instances For
Integrable conditions for the measures. #
Integrals with respect to the measures. #
HasTemperateGrowth of measures #
Bounded functions as distributions #
A distribution (EuclideanSpace ℝ (Fin 3)) →d[ℝ] F
from a function
f : EuclideanSpace ℝ (Fin 3) → F
bounded by c1 * ‖x‖ ^ (-2 : ℝ) + c2 * ‖x‖ ^ n
.
Equations
- Distribution.ofBounded f hf hae = SchwartzMap.mkCLMtoNormedSpace (fun (η : SchwartzMap (EuclideanSpace ℝ (Fin dm1.succ)) ℝ) => ∫ (x : EuclideanSpace ℝ (Fin dm1.succ)), η x • f x) ⋯ ⋯ ⋯