Sector Curve PV Computation (Lemma 3.1) #
Model sector-curve and PV integral computations for Laurent series terms.
This implements the key computation from Hungerbuhler-Wasem (arXiv:1808.00997v2)
Lemma 3.1: the principal value of dz/z along a sector curve equals i * alpha,
where alpha is the opening angle of the sector.
Main Definitions #
sectorCurve-- the model sector-curve parameterized on [0,3]
Main Results #
pv_sector_dz_over_z-- PV ofdz/zalong sector curve equalsI * alpha
See SectorCurveLemma.lean for higher-order results (pv_sector_higher_power,
cauchyPV_sectorCurve_simplePole, etc.).
Mathematical Overview #
The sector curve sigma_{r,alpha} is a closed curve from the origin, along the
positive real axis to radius r, then around an arc of angle alpha, then back
to the origin along the ray at angle alpha. Specifically:
- Segment 1 (
t in [0,1]): radial rayt |-> t * r(outgoing along real axis) - Segment 2 (
t in [1,2]): arct |-> r * exp(i * (t-1) * alpha)at radiusr - Segment 3 (
t in [2,3]): radial rayt |-> (3-t) * r * exp(i * alpha)(returning)
The PV of dz/z along this curve decomposes as:
- Segments 1 and 3 contribute symmetric logarithmic divergences that cancel
- Segment 2 contributes
int_0^alpha i d theta = i * alpha
Reference: Hungerbuhler-Wasem, arXiv:1808.00997v2, Lemma 3.1.
Definition of the sector curve #
The model sector curve parameterized on [0,3].
- [0,1]: radial ray from 0 to r along the positive real axis
- [1,2]: circular arc of radius r from angle 0 to angle alpha
- [2,3]: radial ray from rexp(ialpha) back to 0
Equations
Instances For
Basic properties of the sector curve #
The sector curve is a closed curve (starts and ends at 0).
The sector curve at t=1 is r (the transition from radial to arc).
The sector curve at t=2 is r * exp(i * alpha) (end of arc).
Segment 1: for t in [0,1], the sector curve is t * r.
Segment 2: for t in [1,2], the sector curve is r * exp(i*(t-1)*alpha).
Segment 3: for t in [2,3], the sector curve is (3-t)*r * exp(i*alpha).
The sector curve is continuous on [0,3].
The sector curve passes through the origin at t=0 and t=3.
Derivative of the sector curve #
Derivative on segment 1 (t in (0,1)): deriv (sectorCurve r alpha) t = r.
Derivative on segment 3 (t in (2,3)):
deriv (sectorCurve r alpha) t = -r * exp(I * alpha).
PV integrand analysis #
PV computation: Lemma 3.1 #
Lemma 3.1 (dz/z part): The principal value of dz/z along the sector curve
from 0 to 3 equals I * alpha.
The divergences from the radial segments cancel, leaving only the arc contribution.