Definitions #
Convention: align with Mathlib #
We adopt Mathlib's conventions throughout:
- Circle:
AddCircle (2*π)with normalized Haar measure (probability measure). Fourier monomialsfourier nare orthonormal w.r.t. this measure. - Polar coordinates: Mathlib's
polarCoordwith angular range(-π, π). - Complex plane:
ℂ ≃ ℝ². Lebesgue measure onℂisvolume.
Def 1.2: Polynomial evaluation #
Def 1.3: Polynomial evaluation on a circle (via AddCircle) #
Restriction of the polynomial to |z| = r, viewed as a function on AddCircle T.
polyEvalCircle a r t = ∑_k a(k) * r^{k+1} * fourier(k+1)(t).