Documentation

Mathlib.Analysis.Complex.Poisson

Poisson Integral Formula #

We present two versions of the Poisson Integral Formula for β„‚-differentiable functions on arbitrary disks in the complex plane, formulated with the real part of the Herglotz–Riesz kernel of integration and with the Poisson kernel, respectively.

Kernels of Integration #

For convenience, this preliminary section discussed the kernels on integration that appear in the various versions of the Poisson Formula.

noncomputable def herglotzRieszKernel (c w z : β„‚) :

The Herglotz-Riesz kernel of integration.

Instances For
    theorem herglotzRieszKernel_def (c w z : β„‚) :
    herglotzRieszKernel c w z = (z - c + (w - c)) / (z - c - (w - c))
    theorem herglotzRieszKernel_fun_def (c w : β„‚) :
    herglotzRieszKernel c w = fun (z : β„‚) => (z - c + (w - c)) / (z - c - (w - c))
    noncomputable def poissonKernel (c w z : β„‚) :

    The Poisson kernel of integration.

    Instances For
      theorem poissonKernel_def (c w z : β„‚) :
      poissonKernel c w z = (β€–z - cβ€– ^ 2 - β€–w - cβ€– ^ 2) / β€–z - c - (w - c)β€– ^ 2

      Companion theorem to the Poisson Integral Formula: The real part of the Herglotz–Riesz kernel and the Poisson kernel agree on the path of integration.

      theorem re_herglotzRieszKernel_le {R : ℝ} {w c z : β„‚} (hz : z ∈ Metric.sphere c R) (hw : w ∈ Metric.ball c R) :
      ((z - c + (w - c)) / (z - c - (w - c))).re ≀ (R + β€–w - cβ€–) / (R - β€–w - cβ€–)

      Companion theorem to the Poisson Integral Formula: Upper estimate for the real part of the Herglotz-Riesz kernel.

      theorem le_re_herglotzRieszKernel {R : ℝ} {w c z : β„‚} (hz : z ∈ Metric.sphere c R) (hw : w ∈ Metric.ball c R) :
      (R - β€–w - cβ€–) / (R + β€–w - cβ€–) ≀ ((z - c + (w - c)) / (z - c - (w - c))).re

      Companion theorem to the Poisson Integral Formula: Lower estimate for the real part of the Herglotz-Riesz kernel.

      Integral Formulas #

      theorem DiffContOnCl.circleAverage_re_herglotzRieszKernel_smul {E : Type u_1} [NormedAddCommGroup E] [NormedSpace β„‚ E] {f : β„‚ β†’ E} {R : ℝ} {w : β„‚} [CompleteSpace E] {c : β„‚} (hf : DiffContOnCl β„‚ f (Metric.ball c R)) (hw : w ∈ Metric.ball c R) :
      Real.circleAverage (Complex.re ∘ herglotzRieszKernel c w β€’ f) c R = f w

      Poisson integral formula for β„‚-differentiable functions on arbitrary disks in the complex plane, formulated with the real part of the Herglotz–Riesz kernel of integration.

      theorem DiffContOnCl.circleAverage_re_herglotzRieszKernel_smul' {E : Type u_1} [NormedAddCommGroup E] [NormedSpace β„‚ E] {f : β„‚ β†’ E} {R : ℝ} {w : β„‚} [CompleteSpace E] {c : β„‚} (hf : DiffContOnCl β„‚ f (Metric.ball c R)) (hw : w ∈ Metric.ball c R) :
      Real.circleAverage (fun (z : β„‚) => ((z - c + (w - c)) / (z - c - (w - c))).re β€’ f z) c R = f w

      Poisson integral formula for β„‚-differentiable functions on arbitrary disks in the complex plane, formulated with the real part of the Herglotz–Riesz kernel of integration expanded.

      theorem DiffContOnCl.circleAverage_poissonKernel_smul {E : Type u_1} [NormedAddCommGroup E] [NormedSpace β„‚ E] {f : β„‚ β†’ E} {R : ℝ} {w : β„‚} [CompleteSpace E] {c : β„‚} (hf : DiffContOnCl β„‚ f (Metric.ball c R)) (hw : w ∈ Metric.ball c R) :
      Real.circleAverage (poissonKernel c w β€’ f) c R = f w

      Poisson integral formula for β„‚-differentiable functions on arbitrary disks in the complex plane, formulated with the Poisson kernel of integration.

      theorem DiffContOnCl.circleAverage_poissonKernel_smul' {E : Type u_1} [NormedAddCommGroup E] [NormedSpace β„‚ E] {f : β„‚ β†’ E} {R : ℝ} {w : β„‚} [CompleteSpace E] {c : β„‚} (hf : DiffContOnCl β„‚ f (Metric.ball c R)) (hw : w ∈ Metric.ball c R) :
      Real.circleAverage (fun (z : β„‚) => ((β€–z - cβ€– ^ 2 - β€–w - cβ€– ^ 2) / β€–z - c - (w - c)β€– ^ 2) β€’ f z) c R = f w

      Poisson integral formula for β„‚-differentiable functions on arbitrary disks in the complex plane, formulated with the Poisson kernel of integration expanded.