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)^{-1}\frac{f(x)}{x-w}$ 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.
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
Instances For
The derivative of circleTransform
w.r.t w
.
Equations
Instances For
A useful bound for circle integrals (with complex codomain)
Equations
- Complex.circleTransformBoundingFunction R z w = Complex.circleTransformDeriv R z w.1 (fun (x : ℂ) => 1) w.2
Instances For
The derivative of a circleTransform
is locally bounded.