File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -694,6 +694,8 @@ end analyticity
694694section derivatives
695695/-!
696696## Circle integrals for higher derivatives
697+
698+ TODO: add a version for `w ∈ Metric.ball c R`.
697699-/
698700
699701variable {R : ℝ} {f : ℂ → E} {c : ℂ} {s : Set ℂ}
@@ -712,6 +714,15 @@ lemma circleIntegral_one_div_sub_center_pow_smul_of_differentiable_on_off_counta
712714 div_mul_cancel₀ _ (mod_cast n.factorial_ne_zero), mul_inv_cancel₀ two_pi_I_ne_zero, one_smul]
713715 simp [← mul_smul, pow_succ, mul_comm]
714716
717+ /-- **Cauchy integral formula for the first order derivative** , assuming `f` is continuous on a
718+ closed ball and differentiable on its interior away from a countable set. -/
719+ lemma differentiable_on_off_countable_deriv_eq_smul_circleIntegral
720+ (h0 : 0 < R) (hs : s.Countable) (hc : ContinuousOn f (closedBall c R))
721+ (hd : ∀ z ∈ ball c R \ s, DifferentiableAt ℂ f z) :
722+ (∮ z in C(c, R), (1 / (z - c) ^ 2 ) • f z) = (2 * π * I) • deriv f c := by
723+ simpa using circleIntegral_one_div_sub_center_pow_smul_of_differentiable_on_off_countable
724+ h0 1 hs hc hd
725+
715726/-- **Cauchy integral formula for derivatives** , assuming `f` is continuous on a closed ball and
716727differentiable on its interior. -/
717728lemma _root_.DiffContOnCl.circleIntegral_one_div_sub_center_pow_smul
You can’t perform that action at this time.
0 commit comments