The Herglotz–Riesz Representation Theorem #
This file proves the Herglotz–Riesz representation theorem for positive harmonic functions on the unit disc, as well as for analytic functions with positive real part on the unit disc.
Main Results #
Theorem HerglotzRiesz_representation_harmonic:
Every harmonic function u : ℂ → ℝ on the unit disc with u(0) = 1 and
u(z) > 0 for all z in the unit disc can be represented as
u z = ∫ (1 - ‖z‖^2) / ‖x - z‖^2 dμ(x)
where μ is a uniquely determined probability measure supported on the unit circle.
We also prove the analytic version, Theorem HerglotzRiesz_representation_analytic:
Every analytic function p on the unit disc with p(0) = 1 and
mapping the unit disc into the right half-plane can be represented as
p(z) = ∫ (x + z)/(x - z) dμ(x)
where μ is a uniquely determined probability measure supported on the unit circle.
Implementation Notes #
The proof proceeds by:
- The existence of μ is proven in
HerglotzRiesz_representation_existence. The construction uses the Banach-Alaoglu theorem and the Riesz-Markov-Kakutani representation theorem. Furthermore, we use the Poisson integral formulapoisson_formula_of_harmonicOn_scaled_unitDisc. - Uniqueness of μ is established via the identity principle in
Theorem
HerglotzRiesz_representation_uniqueness. - Finally, we combine the two parts to obtain
HerglotzRiesz_representation_analyticand derive the harmonic versionHerglotzRiesz_representation_harmonic.
References #
- G. Herglotz, "Über Potenzreihen mit positivem, reellen Teil im Einheitskreis", 1911, Ber. Sächs. Ges. Wiss. Leipzig, 63, 501–511.
- F. Riesz, "Sur certains systèmes singuliers d'équations intégrales", 1911, Ann. Sci. Éc. Norm. Supér., 28, 33–62.
Tags #
Herglotz theorem, Herglotz–Riesz theorem, Poisson integral, positive harmonic function, positive real part, unit disc
Properties of Herglotz–Riesz functions #
The Herglotz-Riesz kernel is integrable on the unit circle.
The Herglotz-Riesz representation produces a ℂ differentiable function.
Every Herglotz–Riesz representation is analytic, maps 0 to 1 and the unit disc into the right half-plane.
Existence of the Herglotz–Riesz measure #
u is the real part of p.
Equations
- LeanPool.LeanComplexAnalysis.u p z = (p z).re
Instances For
Equations
- LeanPool.LeanComplexAnalysis.uN p r n z = LeanPool.LeanComplexAnalysis.u p (↑(r n) * z)
Instances For
TODO.
Equations
Instances For
The Poisson kernel function for a fixed z in the unit disc, viewed as a continuous function on the unit circle.
Equations
- LeanPool.LeanComplexAnalysis.poissonKernelFunc z hz = { toFun := fun (w : ↑(Metric.sphere 0 1)) => ((↑w + z) / (↑w - z)).re, continuous_toFun := ⋯ }
Instances For
circleMap takes values on the unit circle.
The value of the functional ΛN on CUnitCircle.
Equations
Instances For
The linear map ΛNLinear.
Equations
- LeanPool.LeanComplexAnalysis.ΛNLinear p r n h = { toFun := fun (f : LeanPool.LeanComplexAnalysis.CUnitCircle) => LeanPool.LeanComplexAnalysis.ΛNVal p r n f, map_add' := ⋯, map_smul' := ⋯ }
Instances For
TODO.
Equations
- LeanPool.LeanComplexAnalysis.ΛN p r n h = (LeanPool.LeanComplexAnalysis.ΛNLinear p r n h).mkContinuous (LeanPool.LeanComplexAnalysis.ΛNBound p r n) ⋯
Instances For
TODO.
Equations
Instances For
TODO.
Equations
Instances For
TODO.
Instances For
The complex Poisson kernel is integrable on the unit circle with respect to any finite measure.
The integral of the Poisson kernel is the real part of the integral of the Herglotz–Riesz kernel.
The sequence u(p(r_n · z)) converges to u(p(z)) as r_n converges to 1.
The real part of an analytic function is harmonic.
The value of u at r_n * z is equal to the functional
ΛN applied to the Poisson kernel at z.
We apply the Banach-Alaoglu theorem to show that K is compact in the weak* topology.
TODO.
Equations
Instances For
The metrizability of the space KWeak.
|Λ f| ≤ 1 whenever ‖f‖ < 1.
The space KWeak is sequentially compact.
The sequence of functionals ΛN.
Equations
- LeanPool.LeanComplexAnalysis.ΛSeq p r hp_analytic hr n = LeanPool.LeanComplexAnalysis.ΛN p r n ⋯
Instances For
There exists a subsequence Λ_{n_k} converging to some Λ in the weak* topology.
Each ΛN is a positive functional.
We apply the Riesz–Markov–Kakutani representation theorem for Λ to obtain the measure μ.
Convergence of the subsequence of linear functionals.
The value of u at z is equal to the real part of the integral
of the Herglotz–Riesz kernel against the measure μ, under hypothesis of
weak* convergence of ΛSeq.
If two analytic functions on the unit disc have the same value at 0 and equal real parts, then they are equal on the unit disc.
Every analytic function p on the unit disc with p(0) = 1 and
mapping the unit disc to the right half-plane admits a Herglotz–Riesz representation.
Main results #
Every analytic function p on the unit disc with p(0) = 1 and
mapping the unit disc into the right half-plane admits a unique
Herglotz–Riesz representation.
Every harmonic function u on the unit disc with u(0) = 1 and
u(z) > 0 for all z admits a unique Herglotz–Riesz integral representation.