Skip to content

Commit 57ae26a

Browse files
committed
Update CauchyIntegral.lean
1 parent 3926732 commit 57ae26a

1 file changed

Lines changed: 11 additions & 0 deletions

File tree

Mathlib/Analysis/Complex/CauchyIntegral.lean

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -694,6 +694,8 @@ end analyticity
694694
section derivatives
695695
/-!
696696
## Circle integrals for higher derivatives
697+
698+
TODO: add a version for `w ∈ Metric.ball c R`.
697699
-/
698700

699701
variable {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
716727
differentiable on its interior. -/
717728
lemma _root_.DiffContOnCl.circleIntegral_one_div_sub_center_pow_smul

0 commit comments

Comments
 (0)