Documentation

Mathlib.MeasureTheory.Integral.CircleTransform

Circle integral transform #

In this file we define the circle integral transform of a function f with complex domain. This is defined as (2πi)1f(x)xw where x moves along a circle. We then prove some basic facts about these functions.

These results are useful for proving that the uniform limit of a sequence of holomorphic functions is holomorphic.

def Complex.circleTransform {E : Type u_1} [NormedAddCommGroup E] [NormedSpace E] (R : ) (z w : ) (f : E) (θ : ) :
E

Given a function f : ℂ → E, circleTransform R z w f is the function mapping θ to (2 * ↑π * I)⁻¹ • deriv (circleMap z R) θ • ((circleMap z R θ) - w)⁻¹ • f (circleMap z R θ).

If f is differentiable and w is in the interior of the ball, then the integral from 0 to 2 * π of this gives the value f(w).

Equations
def Complex.circleTransformDeriv {E : Type u_1} [NormedAddCommGroup E] [NormedSpace E] (R : ) (z w : ) (f : E) (θ : ) :
E

The derivative of circleTransform w.r.t w.

Equations
theorem Complex.circleTransformDeriv_eq {E : Type u_1} [NormedAddCommGroup E] [NormedSpace E] (R : ) (z w : ) (f : E) :
circleTransformDeriv R z w f = fun (θ : ) => (circleMap z R θ - w)⁻¹ circleTransform R z w f θ
theorem Complex.integral_circleTransform {E : Type u_1} [NormedAddCommGroup E] [NormedSpace E] (R : ) (z w : ) (f : E) :
(θ : ) in 0 ..2 * Real.pi, circleTransform R z w f θ = (2 * Real.pi * I)⁻¹ (z : ) in C(z, R), (z - w)⁻¹ f z
theorem Complex.continuous_circleTransform {E : Type u_1} [NormedAddCommGroup E] [NormedSpace E] {R : } (hR : 0 < R) {f : E} {z w : } (hf : ContinuousOn f (Metric.sphere z R)) (hw : w Metric.ball z R) :
theorem Complex.continuous_circleTransformDeriv {E : Type u_1} [NormedAddCommGroup E] [NormedSpace E] {R : } (hR : 0 < R) {f : E} {z w : } (hf : ContinuousOn f (Metric.sphere z R)) (hw : w Metric.ball z R) :

A useful bound for circle integrals (with complex codomain)

Equations
@[deprecated Complex.continuousOn_norm_circleTransformBoundingFunction (since := "2025-02-17")]

Alias of Complex.continuousOn_norm_circleTransformBoundingFunction.

@[deprecated Complex.norm_circleTransformBoundingFunction_le (since := "2025-02-17")]

Alias of Complex.norm_circleTransformBoundingFunction_le.

theorem Complex.circleTransformDeriv_bound {R : } (hR : 0 < R) {z x : } {f : } (hx : x Metric.ball z R) (hf : ContinuousOn f (Metric.sphere z R)) :
∃ (B : ) (ε : ), 0 < ε Metric.ball x ε Metric.ball z R ∀ (t : ), yMetric.ball x ε, circleTransformDeriv R z y f t B

The derivative of a circleTransform is locally bounded.