| author | wenzelm | 
| Sat, 27 Nov 2021 14:03:44 +0100 | |
| changeset 74853 | 7420a7ac1a4c | 
| parent 74513 | 67d87d224e00 | 
| child 75168 | ff60b4acd6dd | 
| permissions | -rw-r--r-- | 
| 56215 | 1 | (* Author: John Harrison, Marco Maggesi, Graziano Gentili, Gianni Ciolli, Valentina Bruno | 
| 2 | Ported from "hol_light/Multivariate/canal.ml" by L C Paulson (2014) | |
| 3 | *) | |
| 4 | ||
| 60420 | 5 | section \<open>Complex Analysis Basics\<close> | 
| 71167 
b4d409c65a76
Rearrangement of material in Complex_Analysis_Basics, which contained much that had nothing to do with complex analysis.
 paulson <lp15@cam.ac.uk> parents: 
71030diff
changeset | 6 | text \<open>Definitions of analytic and holomorphic functions, limit theorems, complex differentiation\<close> | 
| 56215 | 7 | |
| 8 | theory Complex_Analysis_Basics | |
| 71001 
3e374c65f96b
reorganisation to eliminate Brouwer_Fixpoint from complex analysis
 paulson <lp15@cam.ac.uk> parents: 
70817diff
changeset | 9 | imports Derivative "HOL-Library.Nonpos_Ints" | 
| 56215 | 10 | begin | 
| 11 | ||
| 70136 | 12 | subsection\<^marker>\<open>tag unimportant\<close>\<open>General lemmas\<close> | 
| 59730 
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
 paulson <lp15@cam.ac.uk> parents: 
59615diff
changeset | 13 | |
| 62131 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 14 | lemma nonneg_Reals_cmod_eq_Re: "z \<in> \<real>\<^sub>\<ge>\<^sub>0 \<Longrightarrow> norm z = Re z" | 
| 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 15 | by (simp add: complex_nonneg_Reals_iff cmod_eq_Re) | 
| 56370 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 16 | |
| 56238 
5d147e1e18d1
a few new lemmas and generalisations of old ones
 paulson <lp15@cam.ac.uk> parents: 
56223diff
changeset | 17 | lemma fact_cancel: | 
| 
5d147e1e18d1
a few new lemmas and generalisations of old ones
 paulson <lp15@cam.ac.uk> parents: 
56223diff
changeset | 18 | fixes c :: "'a::real_field" | 
| 59730 
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
 paulson <lp15@cam.ac.uk> parents: 
59615diff
changeset | 19 | shows "of_nat (Suc n) * c / (fact (Suc n)) = c / (fact n)" | 
| 68255 
009f783d1bac
small clean-up of Complex_Analysis_Basics
 paulson <lp15@cam.ac.uk> parents: 
68239diff
changeset | 20 | using of_nat_neq_0 by force | 
| 56889 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56479diff
changeset | 21 | |
| 68721 | 22 | lemma vector_derivative_cnj_within: | 
| 23 | assumes "at x within A \<noteq> bot" and "f differentiable at x within A" | |
| 24 | shows "vector_derivative (\<lambda>z. cnj (f z)) (at x within A) = | |
| 25 | cnj (vector_derivative f (at x within A))" (is "_ = cnj ?D") | |
| 26 | proof - | |
| 27 | let ?D = "vector_derivative f (at x within A)" | |
| 28 | from assms have "(f has_vector_derivative ?D) (at x within A)" | |
| 29 | by (subst (asm) vector_derivative_works) | |
| 30 | hence "((\<lambda>x. cnj (f x)) has_vector_derivative cnj ?D) (at x within A)" | |
| 31 | by (rule has_vector_derivative_cnj) | |
| 32 | thus ?thesis using assms by (auto dest: vector_derivative_within) | |
| 33 | qed | |
| 34 | ||
| 35 | lemma vector_derivative_cnj: | |
| 36 | assumes "f differentiable at x" | |
| 37 | shows "vector_derivative (\<lambda>z. cnj (f z)) (at x) = cnj (vector_derivative f (at x))" | |
| 38 | using assms by (intro vector_derivative_cnj_within) auto | |
| 39 | ||
| 56370 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 40 | lemma | 
| 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 41 |   shows open_halfspace_Re_lt: "open {z. Re(z) < b}"
 | 
| 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 42 |     and open_halfspace_Re_gt: "open {z. Re(z) > b}"
 | 
| 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 43 |     and closed_halfspace_Re_ge: "closed {z. Re(z) \<ge> b}"
 | 
| 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 44 |     and closed_halfspace_Re_le: "closed {z. Re(z) \<le> b}"
 | 
| 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 45 |     and closed_halfspace_Re_eq: "closed {z. Re(z) = b}"
 | 
| 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 46 |     and open_halfspace_Im_lt: "open {z. Im(z) < b}"
 | 
| 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 47 |     and open_halfspace_Im_gt: "open {z. Im(z) > b}"
 | 
| 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 48 |     and closed_halfspace_Im_ge: "closed {z. Im(z) \<ge> b}"
 | 
| 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 49 |     and closed_halfspace_Im_le: "closed {z. Im(z) \<le> b}"
 | 
| 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 50 |     and closed_halfspace_Im_eq: "closed {z. Im(z) = b}"
 | 
| 63332 | 51 | by (intro open_Collect_less closed_Collect_le closed_Collect_eq continuous_on_Re | 
| 52 | continuous_on_Im continuous_on_id continuous_on_const)+ | |
| 56370 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 53 | |
| 61070 | 54 | lemma closed_complex_Reals: "closed (\<real> :: complex set)" | 
| 56370 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 55 | proof - | 
| 61070 | 56 |   have "(\<real> :: complex set) = {z. Im z = 0}"
 | 
| 56370 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 57 | by (auto simp: complex_is_Real_iff) | 
| 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 58 | then show ?thesis | 
| 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 59 | by (metis closed_halfspace_Im_eq) | 
| 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 60 | qed | 
| 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 61 | |
| 60017 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59730diff
changeset | 62 | lemma closed_Real_halfspace_Re_le: "closed (\<real> \<inter> {w. Re w \<le> x})"
 | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59730diff
changeset | 63 | by (simp add: closed_Int closed_complex_Reals closed_halfspace_Re_le) | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59730diff
changeset | 64 | |
| 69180 
922833cc6839
Tagged some theories in HOL-Analysis
 Manuel Eberl <eberlm@in.tum.de> parents: 
69064diff
changeset | 65 | lemma closed_nonpos_Reals_complex [simp]: "closed (\<real>\<^sub>\<le>\<^sub>0 :: complex set)" | 
| 62131 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 66 | proof - | 
| 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 67 |   have "\<real>\<^sub>\<le>\<^sub>0 = \<real> \<inter> {z. Re(z) \<le> 0}"
 | 
| 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 68 | using complex_nonpos_Reals_iff complex_is_Real_iff by auto | 
| 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 69 | then show ?thesis | 
| 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 70 | by (metis closed_Real_halfspace_Re_le) | 
| 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 71 | qed | 
| 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 72 | |
| 60017 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59730diff
changeset | 73 | lemma closed_Real_halfspace_Re_ge: "closed (\<real> \<inter> {w. x \<le> Re(w)})"
 | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59730diff
changeset | 74 | using closed_halfspace_Re_ge | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59730diff
changeset | 75 | by (simp add: closed_Int closed_complex_Reals) | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59730diff
changeset | 76 | |
| 69180 
922833cc6839
Tagged some theories in HOL-Analysis
 Manuel Eberl <eberlm@in.tum.de> parents: 
69064diff
changeset | 77 | lemma closed_nonneg_Reals_complex [simp]: "closed (\<real>\<^sub>\<ge>\<^sub>0 :: complex set)" | 
| 62131 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 78 | proof - | 
| 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 79 |   have "\<real>\<^sub>\<ge>\<^sub>0 = \<real> \<inter> {z. Re(z) \<ge> 0}"
 | 
| 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 80 | using complex_nonneg_Reals_iff complex_is_Real_iff by auto | 
| 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 81 | then show ?thesis | 
| 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 82 | by (metis closed_Real_halfspace_Re_ge) | 
| 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 83 | qed | 
| 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 84 | |
| 60017 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59730diff
changeset | 85 | lemma closed_real_abs_le: "closed {w \<in> \<real>. \<bar>Re w\<bar> \<le> r}"
 | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59730diff
changeset | 86 | proof - | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59730diff
changeset | 87 |   have "{w \<in> \<real>. \<bar>Re w\<bar> \<le> r} = (\<real> \<inter> {w. Re w \<le> r}) \<inter> (\<real> \<inter> {w. Re w \<ge> -r})"
 | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59730diff
changeset | 88 | by auto | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59730diff
changeset | 89 |   then show "closed {w \<in> \<real>. \<bar>Re w\<bar> \<le> r}"
 | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59730diff
changeset | 90 | by (simp add: closed_Int closed_Real_halfspace_Re_ge closed_Real_halfspace_Re_le) | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59730diff
changeset | 91 | qed | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59730diff
changeset | 92 | |
| 56370 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 93 | lemma real_lim: | 
| 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 94 | fixes l::complex | 
| 69508 | 95 | assumes "(f \<longlongrightarrow> l) F" and "\<not> trivial_limit F" and "eventually P F" and "\<And>a. P a \<Longrightarrow> f a \<in> \<real>" | 
| 56370 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 96 | shows "l \<in> \<real>" | 
| 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 97 | proof (rule Lim_in_closed_set[OF closed_complex_Reals _ assms(2,1)]) | 
| 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 98 | show "eventually (\<lambda>x. f x \<in> \<real>) F" | 
| 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 99 | using assms(3, 4) by (auto intro: eventually_mono) | 
| 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 100 | qed | 
| 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 101 | |
| 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 102 | lemma real_lim_sequentially: | 
| 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 103 | fixes l::complex | 
| 61973 | 104 | shows "(f \<longlongrightarrow> l) sequentially \<Longrightarrow> (\<exists>N. \<forall>n\<ge>N. f n \<in> \<real>) \<Longrightarrow> l \<in> \<real>" | 
| 56370 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 105 | by (rule real_lim [where F=sequentially]) (auto simp: eventually_sequentially) | 
| 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 106 | |
| 61609 
77b453bd616f
Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
 paulson <lp15@cam.ac.uk> parents: 
61531diff
changeset | 107 | lemma real_series: | 
| 56370 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 108 | fixes l::complex | 
| 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 109 | shows "f sums l \<Longrightarrow> (\<And>n. f n \<in> \<real>) \<Longrightarrow> l \<in> \<real>" | 
| 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 110 | unfolding sums_def | 
| 64267 | 111 | by (metis real_lim_sequentially sum_in_Reals) | 
| 56370 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 112 | |
| 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 113 | lemma Lim_null_comparison_Re: | 
| 61973 | 114 | assumes "eventually (\<lambda>x. norm(f x) \<le> Re(g x)) F" "(g \<longlongrightarrow> 0) F" shows "(f \<longlongrightarrow> 0) F" | 
| 56889 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56479diff
changeset | 115 | by (rule Lim_null_comparison[OF assms(1)] tendsto_eq_intros assms(2))+ simp | 
| 56215 | 116 | |
| 60420 | 117 | subsection\<open>Holomorphic functions\<close> | 
| 56215 | 118 | |
| 70136 | 119 | definition\<^marker>\<open>tag important\<close> holomorphic_on :: "[complex \<Rightarrow> complex, complex set] \<Rightarrow> bool" | 
| 56370 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 120 | (infixl "(holomorphic'_on)" 50) | 
| 62534 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 121 | where "f holomorphic_on s \<equiv> \<forall>x\<in>s. f field_differentiable (at x within s)" | 
| 61609 
77b453bd616f
Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
 paulson <lp15@cam.ac.uk> parents: 
61531diff
changeset | 122 | |
| 70136 | 123 | named_theorems\<^marker>\<open>tag important\<close> holomorphic_intros "structural introduction rules for holomorphic_on" | 
| 61520 
8f85bb443d33
Cauchy's integral formula, required lemmas, and a bit of reorganisation
 paulson <lp15@cam.ac.uk> parents: 
61518diff
changeset | 124 | |
| 62534 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 125 | lemma holomorphic_onI [intro?]: "(\<And>x. x \<in> s \<Longrightarrow> f field_differentiable (at x within s)) \<Longrightarrow> f holomorphic_on s" | 
| 62131 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 126 | by (simp add: holomorphic_on_def) | 
| 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 127 | |
| 62534 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 128 | lemma holomorphic_onD [dest?]: "\<lbrakk>f holomorphic_on s; x \<in> s\<rbrakk> \<Longrightarrow> f field_differentiable (at x within s)" | 
| 62131 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 129 | by (simp add: holomorphic_on_def) | 
| 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 130 | |
| 64394 | 131 | lemma holomorphic_on_imp_differentiable_on: | 
| 132 | "f holomorphic_on s \<Longrightarrow> f differentiable_on s" | |
| 133 | unfolding holomorphic_on_def differentiable_on_def | |
| 134 | by (simp add: field_differentiable_imp_differentiable) | |
| 135 | ||
| 62131 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 136 | lemma holomorphic_on_imp_differentiable_at: | 
| 62534 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 137 | "\<lbrakk>f holomorphic_on s; open s; x \<in> s\<rbrakk> \<Longrightarrow> f field_differentiable (at x)" | 
| 62131 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 138 | using at_within_open holomorphic_on_def by fastforce | 
| 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 139 | |
| 61520 
8f85bb443d33
Cauchy's integral formula, required lemmas, and a bit of reorganisation
 paulson <lp15@cam.ac.uk> parents: 
61518diff
changeset | 140 | lemma holomorphic_on_empty [holomorphic_intros]: "f holomorphic_on {}"
 | 
| 56370 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 141 | by (simp add: holomorphic_on_def) | 
| 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 142 | |
| 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 143 | lemma holomorphic_on_open: | 
| 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 144 | "open s \<Longrightarrow> f holomorphic_on s \<longleftrightarrow> (\<forall>x \<in> s. \<exists>f'. DERIV f x :> f')" | 
| 62534 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 145 | by (auto simp: holomorphic_on_def field_differentiable_def has_field_derivative_def at_within_open [of _ s]) | 
| 56370 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 146 | |
| 74513 
67d87d224e00
A few new lemmas plus some refinements
 paulson <lp15@cam.ac.uk> parents: 
73885diff
changeset | 147 | lemma holomorphic_on_UN_open: | 
| 
67d87d224e00
A few new lemmas plus some refinements
 paulson <lp15@cam.ac.uk> parents: 
73885diff
changeset | 148 | assumes "\<And>n. n \<in> I \<Longrightarrow> f holomorphic_on A n" "\<And>n. n \<in> I \<Longrightarrow> open (A n)" | 
| 
67d87d224e00
A few new lemmas plus some refinements
 paulson <lp15@cam.ac.uk> parents: 
73885diff
changeset | 149 | shows "f holomorphic_on (\<Union>n\<in>I. A n)" | 
| 
67d87d224e00
A few new lemmas plus some refinements
 paulson <lp15@cam.ac.uk> parents: 
73885diff
changeset | 150 | proof - | 
| 
67d87d224e00
A few new lemmas plus some refinements
 paulson <lp15@cam.ac.uk> parents: 
73885diff
changeset | 151 | have "f field_differentiable at z within (\<Union>n\<in>I. A n)" if "z \<in> (\<Union>n\<in>I. A n)" for z | 
| 
67d87d224e00
A few new lemmas plus some refinements
 paulson <lp15@cam.ac.uk> parents: 
73885diff
changeset | 152 | proof - | 
| 
67d87d224e00
A few new lemmas plus some refinements
 paulson <lp15@cam.ac.uk> parents: 
73885diff
changeset | 153 | from that obtain n where "n \<in> I" "z \<in> A n" | 
| 
67d87d224e00
A few new lemmas plus some refinements
 paulson <lp15@cam.ac.uk> parents: 
73885diff
changeset | 154 | by blast | 
| 
67d87d224e00
A few new lemmas plus some refinements
 paulson <lp15@cam.ac.uk> parents: 
73885diff
changeset | 155 | hence "f holomorphic_on A n" "open (A n)" | 
| 
67d87d224e00
A few new lemmas plus some refinements
 paulson <lp15@cam.ac.uk> parents: 
73885diff
changeset | 156 | by (simp add: assms)+ | 
| 
67d87d224e00
A few new lemmas plus some refinements
 paulson <lp15@cam.ac.uk> parents: 
73885diff
changeset | 157 | with \<open>z \<in> A n\<close> have "f field_differentiable at z" | 
| 
67d87d224e00
A few new lemmas plus some refinements
 paulson <lp15@cam.ac.uk> parents: 
73885diff
changeset | 158 | by (auto simp: holomorphic_on_open field_differentiable_def) | 
| 
67d87d224e00
A few new lemmas plus some refinements
 paulson <lp15@cam.ac.uk> parents: 
73885diff
changeset | 159 | thus ?thesis | 
| 
67d87d224e00
A few new lemmas plus some refinements
 paulson <lp15@cam.ac.uk> parents: 
73885diff
changeset | 160 | by (meson field_differentiable_at_within) | 
| 
67d87d224e00
A few new lemmas plus some refinements
 paulson <lp15@cam.ac.uk> parents: 
73885diff
changeset | 161 | qed | 
| 
67d87d224e00
A few new lemmas plus some refinements
 paulson <lp15@cam.ac.uk> parents: 
73885diff
changeset | 162 | thus ?thesis | 
| 
67d87d224e00
A few new lemmas plus some refinements
 paulson <lp15@cam.ac.uk> parents: 
73885diff
changeset | 163 | by (auto simp: holomorphic_on_def) | 
| 
67d87d224e00
A few new lemmas plus some refinements
 paulson <lp15@cam.ac.uk> parents: 
73885diff
changeset | 164 | qed | 
| 
67d87d224e00
A few new lemmas plus some refinements
 paulson <lp15@cam.ac.uk> parents: 
73885diff
changeset | 165 | |
| 61609 
77b453bd616f
Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
 paulson <lp15@cam.ac.uk> parents: 
61531diff
changeset | 166 | lemma holomorphic_on_imp_continuous_on: | 
| 56370 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 167 | "f holomorphic_on s \<Longrightarrow> continuous_on s f" | 
| 62534 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 168 | by (metis field_differentiable_imp_continuous_at continuous_on_eq_continuous_within holomorphic_on_def) | 
| 56370 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 169 | |
| 73885 
26171a89466a
A few useful lemmas about derivatives, colinearity and other topics
 paulson <lp15@cam.ac.uk> parents: 
71633diff
changeset | 170 | lemma holomorphic_closedin_preimage_constant: | 
| 
26171a89466a
A few useful lemmas about derivatives, colinearity and other topics
 paulson <lp15@cam.ac.uk> parents: 
71633diff
changeset | 171 | assumes "f holomorphic_on D" | 
| 
26171a89466a
A few useful lemmas about derivatives, colinearity and other topics
 paulson <lp15@cam.ac.uk> parents: 
71633diff
changeset | 172 |   shows "closedin (top_of_set D) {z\<in>D. f z = a}"
 | 
| 
26171a89466a
A few useful lemmas about derivatives, colinearity and other topics
 paulson <lp15@cam.ac.uk> parents: 
71633diff
changeset | 173 | by (simp add: assms continuous_closedin_preimage_constant holomorphic_on_imp_continuous_on) | 
| 
26171a89466a
A few useful lemmas about derivatives, colinearity and other topics
 paulson <lp15@cam.ac.uk> parents: 
71633diff
changeset | 174 | |
| 
26171a89466a
A few useful lemmas about derivatives, colinearity and other topics
 paulson <lp15@cam.ac.uk> parents: 
71633diff
changeset | 175 | lemma holomorphic_closed_preimage_constant: | 
| 
26171a89466a
A few useful lemmas about derivatives, colinearity and other topics
 paulson <lp15@cam.ac.uk> parents: 
71633diff
changeset | 176 | assumes "f holomorphic_on UNIV" | 
| 
26171a89466a
A few useful lemmas about derivatives, colinearity and other topics
 paulson <lp15@cam.ac.uk> parents: 
71633diff
changeset | 177 |   shows "closed {z. f z = a}"
 | 
| 
26171a89466a
A few useful lemmas about derivatives, colinearity and other topics
 paulson <lp15@cam.ac.uk> parents: 
71633diff
changeset | 178 | using holomorphic_closedin_preimage_constant [OF assms] by simp | 
| 
26171a89466a
A few useful lemmas about derivatives, colinearity and other topics
 paulson <lp15@cam.ac.uk> parents: 
71633diff
changeset | 179 | |
| 62540 
f2fc5485e3b0
Wenda Li's new material: residue theorem, argument_principle, Rouche_theorem
 paulson <lp15@cam.ac.uk> parents: 
62534diff
changeset | 180 | lemma holomorphic_on_subset [elim]: | 
| 56370 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 181 | "f holomorphic_on s \<Longrightarrow> t \<subseteq> s \<Longrightarrow> f holomorphic_on t" | 
| 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 182 | unfolding holomorphic_on_def | 
| 62534 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 183 | by (metis field_differentiable_within_subset subsetD) | 
| 56370 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 184 | |
| 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 185 | lemma holomorphic_transform: "\<lbrakk>f holomorphic_on s; \<And>x. x \<in> s \<Longrightarrow> f x = g x\<rbrakk> \<Longrightarrow> g holomorphic_on s" | 
| 62534 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 186 | by (metis field_differentiable_transform_within linordered_field_no_ub holomorphic_on_def) | 
| 56370 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 187 | |
| 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 188 | lemma holomorphic_cong: "s = t ==> (\<And>x. x \<in> s \<Longrightarrow> f x = g x) \<Longrightarrow> f holomorphic_on s \<longleftrightarrow> g holomorphic_on t" | 
| 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 189 | by (metis holomorphic_transform) | 
| 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 190 | |
| 69064 
5840724b1d71
Prefix form of infix with * on either side no longer needs special treatment
 nipkow parents: 
68721diff
changeset | 191 | lemma holomorphic_on_linear [simp, holomorphic_intros]: "((*) c) holomorphic_on s" | 
| 62534 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 192 | unfolding holomorphic_on_def by (metis field_differentiable_linear) | 
| 56370 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 193 | |
| 62217 | 194 | lemma holomorphic_on_const [simp, holomorphic_intros]: "(\<lambda>z. c) holomorphic_on s" | 
| 62534 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 195 | unfolding holomorphic_on_def by (metis field_differentiable_const) | 
| 56370 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 196 | |
| 62217 | 197 | lemma holomorphic_on_ident [simp, holomorphic_intros]: "(\<lambda>x. x) holomorphic_on s" | 
| 62534 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 198 | unfolding holomorphic_on_def by (metis field_differentiable_ident) | 
| 56370 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 199 | |
| 62217 | 200 | lemma holomorphic_on_id [simp, holomorphic_intros]: "id holomorphic_on s" | 
| 56370 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 201 | unfolding id_def by (rule holomorphic_on_ident) | 
| 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 202 | |
| 74513 
67d87d224e00
A few new lemmas plus some refinements
 paulson <lp15@cam.ac.uk> parents: 
73885diff
changeset | 203 | lemma constant_on_imp_holomorphic_on: | 
| 
67d87d224e00
A few new lemmas plus some refinements
 paulson <lp15@cam.ac.uk> parents: 
73885diff
changeset | 204 | assumes "f constant_on A" | 
| 
67d87d224e00
A few new lemmas plus some refinements
 paulson <lp15@cam.ac.uk> parents: 
73885diff
changeset | 205 | shows "f holomorphic_on A" | 
| 
67d87d224e00
A few new lemmas plus some refinements
 paulson <lp15@cam.ac.uk> parents: 
73885diff
changeset | 206 | proof - | 
| 
67d87d224e00
A few new lemmas plus some refinements
 paulson <lp15@cam.ac.uk> parents: 
73885diff
changeset | 207 | from assms obtain c where c: "\<forall>x\<in>A. f x = c" | 
| 
67d87d224e00
A few new lemmas plus some refinements
 paulson <lp15@cam.ac.uk> parents: 
73885diff
changeset | 208 | unfolding constant_on_def by blast | 
| 
67d87d224e00
A few new lemmas plus some refinements
 paulson <lp15@cam.ac.uk> parents: 
73885diff
changeset | 209 | have "f holomorphic_on A \<longleftrightarrow> (\<lambda>_. c) holomorphic_on A" | 
| 
67d87d224e00
A few new lemmas plus some refinements
 paulson <lp15@cam.ac.uk> parents: 
73885diff
changeset | 210 | by (intro holomorphic_cong) (use c in auto) | 
| 
67d87d224e00
A few new lemmas plus some refinements
 paulson <lp15@cam.ac.uk> parents: 
73885diff
changeset | 211 | thus ?thesis | 
| 
67d87d224e00
A few new lemmas plus some refinements
 paulson <lp15@cam.ac.uk> parents: 
73885diff
changeset | 212 | by simp | 
| 
67d87d224e00
A few new lemmas plus some refinements
 paulson <lp15@cam.ac.uk> parents: 
73885diff
changeset | 213 | qed | 
| 
67d87d224e00
A few new lemmas plus some refinements
 paulson <lp15@cam.ac.uk> parents: 
73885diff
changeset | 214 | |
| 56370 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 215 | lemma holomorphic_on_compose: | 
| 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 216 | "f holomorphic_on s \<Longrightarrow> g holomorphic_on (f ` s) \<Longrightarrow> (g o f) holomorphic_on s" | 
| 62534 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 217 | using field_differentiable_compose_within[of f _ s g] | 
| 56370 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 218 | by (auto simp: holomorphic_on_def) | 
| 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 219 | |
| 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 220 | lemma holomorphic_on_compose_gen: | 
| 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 221 | "f holomorphic_on s \<Longrightarrow> g holomorphic_on t \<Longrightarrow> f ` s \<subseteq> t \<Longrightarrow> (g o f) holomorphic_on s" | 
| 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 222 | by (metis holomorphic_on_compose holomorphic_on_subset) | 
| 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 223 | |
| 68721 | 224 | lemma holomorphic_on_balls_imp_entire: | 
| 225 | assumes "\<not>bdd_above A" "\<And>r. r \<in> A \<Longrightarrow> f holomorphic_on ball c r" | |
| 226 | shows "f holomorphic_on B" | |
| 227 | proof (rule holomorphic_on_subset) | |
| 228 | show "f holomorphic_on UNIV" unfolding holomorphic_on_def | |
| 229 | proof | |
| 230 | fix z :: complex | |
| 231 | from \<open>\<not>bdd_above A\<close> obtain r where r: "r \<in> A" "r > norm (z - c)" | |
| 232 | by (meson bdd_aboveI not_le) | |
| 233 | with assms(2) have "f holomorphic_on ball c r" by blast | |
| 234 | moreover from r have "z \<in> ball c r" by (auto simp: dist_norm norm_minus_commute) | |
| 235 | ultimately show "f field_differentiable at z" | |
| 236 | by (auto simp: holomorphic_on_def at_within_open[of _ "ball c r"]) | |
| 237 | qed | |
| 238 | qed auto | |
| 239 | ||
| 240 | lemma holomorphic_on_balls_imp_entire': | |
| 241 | assumes "\<And>r. r > 0 \<Longrightarrow> f holomorphic_on ball c r" | |
| 242 | shows "f holomorphic_on B" | |
| 243 | proof (rule holomorphic_on_balls_imp_entire) | |
| 244 |   {
 | |
| 245 | fix M :: real | |
| 246 | have "\<exists>x. x > max M 0" by (intro gt_ex) | |
| 247 | hence "\<exists>x>0. x > M" by auto | |
| 248 | } | |
| 249 |   thus "\<not>bdd_above {(0::real)<..}" unfolding bdd_above_def
 | |
| 250 | by (auto simp: not_le) | |
| 251 | qed (insert assms, auto) | |
| 252 | ||
| 61520 
8f85bb443d33
Cauchy's integral formula, required lemmas, and a bit of reorganisation
 paulson <lp15@cam.ac.uk> parents: 
61518diff
changeset | 253 | lemma holomorphic_on_minus [holomorphic_intros]: "f holomorphic_on s \<Longrightarrow> (\<lambda>z. -(f z)) holomorphic_on s" | 
| 62534 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 254 | by (metis field_differentiable_minus holomorphic_on_def) | 
| 56370 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 255 | |
| 61520 
8f85bb443d33
Cauchy's integral formula, required lemmas, and a bit of reorganisation
 paulson <lp15@cam.ac.uk> parents: 
61518diff
changeset | 256 | lemma holomorphic_on_add [holomorphic_intros]: | 
| 56370 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 257 | "\<lbrakk>f holomorphic_on s; g holomorphic_on s\<rbrakk> \<Longrightarrow> (\<lambda>z. f z + g z) holomorphic_on s" | 
| 62534 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 258 | unfolding holomorphic_on_def by (metis field_differentiable_add) | 
| 56370 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 259 | |
| 61520 
8f85bb443d33
Cauchy's integral formula, required lemmas, and a bit of reorganisation
 paulson <lp15@cam.ac.uk> parents: 
61518diff
changeset | 260 | lemma holomorphic_on_diff [holomorphic_intros]: | 
| 56370 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 261 | "\<lbrakk>f holomorphic_on s; g holomorphic_on s\<rbrakk> \<Longrightarrow> (\<lambda>z. f z - g z) holomorphic_on s" | 
| 62534 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 262 | unfolding holomorphic_on_def by (metis field_differentiable_diff) | 
| 56370 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 263 | |
| 61520 
8f85bb443d33
Cauchy's integral formula, required lemmas, and a bit of reorganisation
 paulson <lp15@cam.ac.uk> parents: 
61518diff
changeset | 264 | lemma holomorphic_on_mult [holomorphic_intros]: | 
| 56370 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 265 | "\<lbrakk>f holomorphic_on s; g holomorphic_on s\<rbrakk> \<Longrightarrow> (\<lambda>z. f z * g z) holomorphic_on s" | 
| 62534 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 266 | unfolding holomorphic_on_def by (metis field_differentiable_mult) | 
| 56370 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 267 | |
| 61520 
8f85bb443d33
Cauchy's integral formula, required lemmas, and a bit of reorganisation
 paulson <lp15@cam.ac.uk> parents: 
61518diff
changeset | 268 | lemma holomorphic_on_inverse [holomorphic_intros]: | 
| 56370 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 269 | "\<lbrakk>f holomorphic_on s; \<And>z. z \<in> s \<Longrightarrow> f z \<noteq> 0\<rbrakk> \<Longrightarrow> (\<lambda>z. inverse (f z)) holomorphic_on s" | 
| 62534 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 270 | unfolding holomorphic_on_def by (metis field_differentiable_inverse) | 
| 56370 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 271 | |
| 61520 
8f85bb443d33
Cauchy's integral formula, required lemmas, and a bit of reorganisation
 paulson <lp15@cam.ac.uk> parents: 
61518diff
changeset | 272 | lemma holomorphic_on_divide [holomorphic_intros]: | 
| 56370 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 273 | "\<lbrakk>f holomorphic_on s; g holomorphic_on s; \<And>z. z \<in> s \<Longrightarrow> g z \<noteq> 0\<rbrakk> \<Longrightarrow> (\<lambda>z. f z / g z) holomorphic_on s" | 
| 62534 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 274 | unfolding holomorphic_on_def by (metis field_differentiable_divide) | 
| 56370 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 275 | |
| 61520 
8f85bb443d33
Cauchy's integral formula, required lemmas, and a bit of reorganisation
 paulson <lp15@cam.ac.uk> parents: 
61518diff
changeset | 276 | lemma holomorphic_on_power [holomorphic_intros]: | 
| 56370 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 277 | "f holomorphic_on s \<Longrightarrow> (\<lambda>z. (f z)^n) holomorphic_on s" | 
| 62534 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 278 | unfolding holomorphic_on_def by (metis field_differentiable_power) | 
| 56370 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 279 | |
| 64267 | 280 | lemma holomorphic_on_sum [holomorphic_intros]: | 
| 281 | "(\<And>i. i \<in> I \<Longrightarrow> (f i) holomorphic_on s) \<Longrightarrow> (\<lambda>x. sum (\<lambda>i. f i x) I) holomorphic_on s" | |
| 282 | unfolding holomorphic_on_def by (metis field_differentiable_sum) | |
| 56370 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 283 | |
| 67135 
1a94352812f4
Moved material from AFP to Analysis/Number_Theory
 Manuel Eberl <eberlm@in.tum.de> parents: 
66827diff
changeset | 284 | lemma holomorphic_on_prod [holomorphic_intros]: | 
| 
1a94352812f4
Moved material from AFP to Analysis/Number_Theory
 Manuel Eberl <eberlm@in.tum.de> parents: 
66827diff
changeset | 285 | "(\<And>i. i \<in> I \<Longrightarrow> (f i) holomorphic_on s) \<Longrightarrow> (\<lambda>x. prod (\<lambda>i. f i x) I) holomorphic_on s" | 
| 
1a94352812f4
Moved material from AFP to Analysis/Number_Theory
 Manuel Eberl <eberlm@in.tum.de> parents: 
66827diff
changeset | 286 | by (induction I rule: infinite_finite_induct) (auto intro: holomorphic_intros) | 
| 
1a94352812f4
Moved material from AFP to Analysis/Number_Theory
 Manuel Eberl <eberlm@in.tum.de> parents: 
66827diff
changeset | 287 | |
| 66486 
ffaaa83543b2
Lemmas about analysis and permutations
 Manuel Eberl <eberlm@in.tum.de> parents: 
66453diff
changeset | 288 | lemma holomorphic_pochhammer [holomorphic_intros]: | 
| 
ffaaa83543b2
Lemmas about analysis and permutations
 Manuel Eberl <eberlm@in.tum.de> parents: 
66453diff
changeset | 289 | "f holomorphic_on A \<Longrightarrow> (\<lambda>s. pochhammer (f s) n) holomorphic_on A" | 
| 
ffaaa83543b2
Lemmas about analysis and permutations
 Manuel Eberl <eberlm@in.tum.de> parents: 
66453diff
changeset | 290 | by (induction n) (auto intro!: holomorphic_intros simp: pochhammer_Suc) | 
| 
ffaaa83543b2
Lemmas about analysis and permutations
 Manuel Eberl <eberlm@in.tum.de> parents: 
66453diff
changeset | 291 | |
| 
ffaaa83543b2
Lemmas about analysis and permutations
 Manuel Eberl <eberlm@in.tum.de> parents: 
66453diff
changeset | 292 | lemma holomorphic_on_scaleR [holomorphic_intros]: | 
| 
ffaaa83543b2
Lemmas about analysis and permutations
 Manuel Eberl <eberlm@in.tum.de> parents: 
66453diff
changeset | 293 | "f holomorphic_on A \<Longrightarrow> (\<lambda>x. c *\<^sub>R f x) holomorphic_on A" | 
| 
ffaaa83543b2
Lemmas about analysis and permutations
 Manuel Eberl <eberlm@in.tum.de> parents: 
66453diff
changeset | 294 | by (auto simp: scaleR_conv_of_real intro!: holomorphic_intros) | 
| 
ffaaa83543b2
Lemmas about analysis and permutations
 Manuel Eberl <eberlm@in.tum.de> parents: 
66453diff
changeset | 295 | |
| 67167 
88d1c9d86f48
Moved analysis material from AFP
 Manuel Eberl <eberlm@in.tum.de> parents: 
67135diff
changeset | 296 | lemma holomorphic_on_Un [holomorphic_intros]: | 
| 
88d1c9d86f48
Moved analysis material from AFP
 Manuel Eberl <eberlm@in.tum.de> parents: 
67135diff
changeset | 297 | assumes "f holomorphic_on A" "f holomorphic_on B" "open A" "open B" | 
| 
88d1c9d86f48
Moved analysis material from AFP
 Manuel Eberl <eberlm@in.tum.de> parents: 
67135diff
changeset | 298 | shows "f holomorphic_on (A \<union> B)" | 
| 68239 | 299 | using assms by (auto simp: holomorphic_on_def at_within_open[of _ A] | 
| 67167 
88d1c9d86f48
Moved analysis material from AFP
 Manuel Eberl <eberlm@in.tum.de> parents: 
67135diff
changeset | 300 | at_within_open[of _ B] at_within_open[of _ "A \<union> B"] open_Un) | 
| 
88d1c9d86f48
Moved analysis material from AFP
 Manuel Eberl <eberlm@in.tum.de> parents: 
67135diff
changeset | 301 | |
| 
88d1c9d86f48
Moved analysis material from AFP
 Manuel Eberl <eberlm@in.tum.de> parents: 
67135diff
changeset | 302 | lemma holomorphic_on_If_Un [holomorphic_intros]: | 
| 
88d1c9d86f48
Moved analysis material from AFP
 Manuel Eberl <eberlm@in.tum.de> parents: 
67135diff
changeset | 303 | assumes "f holomorphic_on A" "g holomorphic_on B" "open A" "open B" | 
| 
88d1c9d86f48
Moved analysis material from AFP
 Manuel Eberl <eberlm@in.tum.de> parents: 
67135diff
changeset | 304 | assumes "\<And>z. z \<in> A \<Longrightarrow> z \<in> B \<Longrightarrow> f z = g z" | 
| 
88d1c9d86f48
Moved analysis material from AFP
 Manuel Eberl <eberlm@in.tum.de> parents: 
67135diff
changeset | 305 | shows "(\<lambda>z. if z \<in> A then f z else g z) holomorphic_on (A \<union> B)" (is "?h holomorphic_on _") | 
| 
88d1c9d86f48
Moved analysis material from AFP
 Manuel Eberl <eberlm@in.tum.de> parents: 
67135diff
changeset | 306 | proof (intro holomorphic_on_Un) | 
| 
88d1c9d86f48
Moved analysis material from AFP
 Manuel Eberl <eberlm@in.tum.de> parents: 
67135diff
changeset | 307 | note \<open>f holomorphic_on A\<close> | 
| 
88d1c9d86f48
Moved analysis material from AFP
 Manuel Eberl <eberlm@in.tum.de> parents: 
67135diff
changeset | 308 | also have "f holomorphic_on A \<longleftrightarrow> ?h holomorphic_on A" | 
| 
88d1c9d86f48
Moved analysis material from AFP
 Manuel Eberl <eberlm@in.tum.de> parents: 
67135diff
changeset | 309 | by (intro holomorphic_cong) auto | 
| 
88d1c9d86f48
Moved analysis material from AFP
 Manuel Eberl <eberlm@in.tum.de> parents: 
67135diff
changeset | 310 | finally show \<dots> . | 
| 
88d1c9d86f48
Moved analysis material from AFP
 Manuel Eberl <eberlm@in.tum.de> parents: 
67135diff
changeset | 311 | next | 
| 
88d1c9d86f48
Moved analysis material from AFP
 Manuel Eberl <eberlm@in.tum.de> parents: 
67135diff
changeset | 312 | note \<open>g holomorphic_on B\<close> | 
| 
88d1c9d86f48
Moved analysis material from AFP
 Manuel Eberl <eberlm@in.tum.de> parents: 
67135diff
changeset | 313 | also have "g holomorphic_on B \<longleftrightarrow> ?h holomorphic_on B" | 
| 
88d1c9d86f48
Moved analysis material from AFP
 Manuel Eberl <eberlm@in.tum.de> parents: 
67135diff
changeset | 314 | using assms by (intro holomorphic_cong) auto | 
| 
88d1c9d86f48
Moved analysis material from AFP
 Manuel Eberl <eberlm@in.tum.de> parents: 
67135diff
changeset | 315 | finally show \<dots> . | 
| 
88d1c9d86f48
Moved analysis material from AFP
 Manuel Eberl <eberlm@in.tum.de> parents: 
67135diff
changeset | 316 | qed (insert assms, auto) | 
| 
88d1c9d86f48
Moved analysis material from AFP
 Manuel Eberl <eberlm@in.tum.de> parents: 
67135diff
changeset | 317 | |
| 62533 
bc25f3916a99
new material to Blochj's theorem, as well as supporting lemmas
 paulson <lp15@cam.ac.uk> parents: 
62408diff
changeset | 318 | lemma holomorphic_derivI: | 
| 
bc25f3916a99
new material to Blochj's theorem, as well as supporting lemmas
 paulson <lp15@cam.ac.uk> parents: 
62408diff
changeset | 319 | "\<lbrakk>f holomorphic_on S; open S; x \<in> S\<rbrakk> | 
| 
bc25f3916a99
new material to Blochj's theorem, as well as supporting lemmas
 paulson <lp15@cam.ac.uk> parents: 
62408diff
changeset | 320 | \<Longrightarrow> (f has_field_derivative deriv f x) (at x within T)" | 
| 62534 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 321 | by (metis DERIV_deriv_iff_field_differentiable at_within_open holomorphic_on_def has_field_derivative_at_within) | 
| 62533 
bc25f3916a99
new material to Blochj's theorem, as well as supporting lemmas
 paulson <lp15@cam.ac.uk> parents: 
62408diff
changeset | 322 | |
| 56370 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 323 | lemma complex_derivative_transform_within_open: | 
| 61609 
77b453bd616f
Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
 paulson <lp15@cam.ac.uk> parents: 
61531diff
changeset | 324 | "\<lbrakk>f holomorphic_on s; g holomorphic_on s; open s; z \<in> s; \<And>w. w \<in> s \<Longrightarrow> f w = g w\<rbrakk> | 
| 56370 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 325 | \<Longrightarrow> deriv f z = deriv g z" | 
| 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 326 | unfolding holomorphic_on_def | 
| 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 327 | by (rule DERIV_imp_deriv) | 
| 71029 
934e0044e94b
Moved or deleted some out of place material, also eliminating obsolete naming conventions
 paulson <lp15@cam.ac.uk> parents: 
71001diff
changeset | 328 | (metis DERIV_deriv_iff_field_differentiable has_field_derivative_transform_within_open at_within_open) | 
| 56370 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 329 | |
| 62533 
bc25f3916a99
new material to Blochj's theorem, as well as supporting lemmas
 paulson <lp15@cam.ac.uk> parents: 
62408diff
changeset | 330 | lemma holomorphic_nonconstant: | 
| 
bc25f3916a99
new material to Blochj's theorem, as well as supporting lemmas
 paulson <lp15@cam.ac.uk> parents: 
62408diff
changeset | 331 | assumes holf: "f holomorphic_on S" and "open S" "\<xi> \<in> S" "deriv f \<xi> \<noteq> 0" | 
| 
bc25f3916a99
new material to Blochj's theorem, as well as supporting lemmas
 paulson <lp15@cam.ac.uk> parents: 
62408diff
changeset | 332 | shows "\<not> f constant_on S" | 
| 68255 
009f783d1bac
small clean-up of Complex_Analysis_Basics
 paulson <lp15@cam.ac.uk> parents: 
68239diff
changeset | 333 | by (rule nonzero_deriv_nonconstant [of f "deriv f \<xi>" \<xi> S]) | 
| 
009f783d1bac
small clean-up of Complex_Analysis_Basics
 paulson <lp15@cam.ac.uk> parents: 
68239diff
changeset | 334 | (use assms in \<open>auto simp: holomorphic_derivI\<close>) | 
| 62533 
bc25f3916a99
new material to Blochj's theorem, as well as supporting lemmas
 paulson <lp15@cam.ac.uk> parents: 
62408diff
changeset | 335 | |
| 60420 | 336 | subsection\<open>Analyticity on a set\<close> | 
| 56215 | 337 | |
| 70136 | 338 | definition\<^marker>\<open>tag important\<close> analytic_on (infixl "(analytic'_on)" 50) | 
| 68255 
009f783d1bac
small clean-up of Complex_Analysis_Basics
 paulson <lp15@cam.ac.uk> parents: 
68239diff
changeset | 339 | where "f analytic_on S \<equiv> \<forall>x \<in> S. \<exists>e. 0 < e \<and> f holomorphic_on (ball x e)" | 
| 56215 | 340 | |
| 70136 | 341 | named_theorems\<^marker>\<open>tag important\<close> analytic_intros "introduction rules for proving analyticity" | 
| 65587 
16a8991ab398
New material (and some tidying) purely in the Analysis directory
 paulson <lp15@cam.ac.uk> parents: 
64394diff
changeset | 342 | |
| 68255 
009f783d1bac
small clean-up of Complex_Analysis_Basics
 paulson <lp15@cam.ac.uk> parents: 
68239diff
changeset | 343 | lemma analytic_imp_holomorphic: "f analytic_on S \<Longrightarrow> f holomorphic_on S" | 
| 56370 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 344 | by (simp add: at_within_open [OF _ open_ball] analytic_on_def holomorphic_on_def) | 
| 62534 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 345 | (metis centre_in_ball field_differentiable_at_within) | 
| 56215 | 346 | |
| 68255 
009f783d1bac
small clean-up of Complex_Analysis_Basics
 paulson <lp15@cam.ac.uk> parents: 
68239diff
changeset | 347 | lemma analytic_on_open: "open S \<Longrightarrow> f analytic_on S \<longleftrightarrow> f holomorphic_on S" | 
| 56215 | 348 | apply (auto simp: analytic_imp_holomorphic) | 
| 349 | apply (auto simp: analytic_on_def holomorphic_on_def) | |
| 350 | by (metis holomorphic_on_def holomorphic_on_subset open_contains_ball) | |
| 351 | ||
| 352 | lemma analytic_on_imp_differentiable_at: | |
| 68255 
009f783d1bac
small clean-up of Complex_Analysis_Basics
 paulson <lp15@cam.ac.uk> parents: 
68239diff
changeset | 353 | "f analytic_on S \<Longrightarrow> x \<in> S \<Longrightarrow> f field_differentiable (at x)" | 
| 56370 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 354 | apply (auto simp: analytic_on_def holomorphic_on_def) | 
| 66827 
c94531b5007d
Divided Topology_Euclidean_Space in two, creating new theory Connected. Also deleted some duplicate / variant theorems
 paulson <lp15@cam.ac.uk> parents: 
66486diff
changeset | 355 | by (metis open_ball centre_in_ball field_differentiable_within_open) | 
| 56215 | 356 | |
| 68255 
009f783d1bac
small clean-up of Complex_Analysis_Basics
 paulson <lp15@cam.ac.uk> parents: 
68239diff
changeset | 357 | lemma analytic_on_subset: "f analytic_on S \<Longrightarrow> T \<subseteq> S \<Longrightarrow> f analytic_on T" | 
| 56215 | 358 | by (auto simp: analytic_on_def) | 
| 359 | ||
| 68255 
009f783d1bac
small clean-up of Complex_Analysis_Basics
 paulson <lp15@cam.ac.uk> parents: 
68239diff
changeset | 360 | lemma analytic_on_Un: "f analytic_on (S \<union> T) \<longleftrightarrow> f analytic_on S \<and> f analytic_on T" | 
| 56215 | 361 | by (auto simp: analytic_on_def) | 
| 362 | ||
| 68255 
009f783d1bac
small clean-up of Complex_Analysis_Basics
 paulson <lp15@cam.ac.uk> parents: 
68239diff
changeset | 363 | lemma analytic_on_Union: "f analytic_on (\<Union>\<T>) \<longleftrightarrow> (\<forall>T \<in> \<T>. f analytic_on T)" | 
| 56370 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 364 | by (auto simp: analytic_on_def) | 
| 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 365 | |
| 68255 
009f783d1bac
small clean-up of Complex_Analysis_Basics
 paulson <lp15@cam.ac.uk> parents: 
68239diff
changeset | 366 | lemma analytic_on_UN: "f analytic_on (\<Union>i\<in>I. S i) \<longleftrightarrow> (\<forall>i\<in>I. f analytic_on (S i))" | 
| 56215 | 367 | by (auto simp: analytic_on_def) | 
| 61609 
77b453bd616f
Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
 paulson <lp15@cam.ac.uk> parents: 
61531diff
changeset | 368 | |
| 56215 | 369 | lemma analytic_on_holomorphic: | 
| 68255 
009f783d1bac
small clean-up of Complex_Analysis_Basics
 paulson <lp15@cam.ac.uk> parents: 
68239diff
changeset | 370 | "f analytic_on S \<longleftrightarrow> (\<exists>T. open T \<and> S \<subseteq> T \<and> f holomorphic_on T)" | 
| 56215 | 371 | (is "?lhs = ?rhs") | 
| 372 | proof - | |
| 68255 
009f783d1bac
small clean-up of Complex_Analysis_Basics
 paulson <lp15@cam.ac.uk> parents: 
68239diff
changeset | 373 | have "?lhs \<longleftrightarrow> (\<exists>T. open T \<and> S \<subseteq> T \<and> f analytic_on T)" | 
| 56215 | 374 | proof safe | 
| 68255 
009f783d1bac
small clean-up of Complex_Analysis_Basics
 paulson <lp15@cam.ac.uk> parents: 
68239diff
changeset | 375 | assume "f analytic_on S" | 
| 
009f783d1bac
small clean-up of Complex_Analysis_Basics
 paulson <lp15@cam.ac.uk> parents: 
68239diff
changeset | 376 | then show "\<exists>T. open T \<and> S \<subseteq> T \<and> f analytic_on T" | 
| 56215 | 377 | apply (simp add: analytic_on_def) | 
| 68255 
009f783d1bac
small clean-up of Complex_Analysis_Basics
 paulson <lp15@cam.ac.uk> parents: 
68239diff
changeset | 378 |       apply (rule exI [where x="\<Union>{U. open U \<and> f analytic_on U}"], auto)
 | 
| 66827 
c94531b5007d
Divided Topology_Euclidean_Space in two, creating new theory Connected. Also deleted some duplicate / variant theorems
 paulson <lp15@cam.ac.uk> parents: 
66486diff
changeset | 379 | apply (metis open_ball analytic_on_open centre_in_ball) | 
| 56215 | 380 | by (metis analytic_on_def) | 
| 381 | next | |
| 68255 
009f783d1bac
small clean-up of Complex_Analysis_Basics
 paulson <lp15@cam.ac.uk> parents: 
68239diff
changeset | 382 | fix T | 
| 
009f783d1bac
small clean-up of Complex_Analysis_Basics
 paulson <lp15@cam.ac.uk> parents: 
68239diff
changeset | 383 | assume "open T" "S \<subseteq> T" "f analytic_on T" | 
| 
009f783d1bac
small clean-up of Complex_Analysis_Basics
 paulson <lp15@cam.ac.uk> parents: 
68239diff
changeset | 384 | then show "f analytic_on S" | 
| 56215 | 385 | by (metis analytic_on_subset) | 
| 386 | qed | |
| 387 | also have "... \<longleftrightarrow> ?rhs" | |
| 388 | by (auto simp: analytic_on_open) | |
| 389 | finally show ?thesis . | |
| 390 | qed | |
| 391 | ||
| 69064 
5840724b1d71
Prefix form of infix with * on either side no longer needs special treatment
 nipkow parents: 
68721diff
changeset | 392 | lemma analytic_on_linear [analytic_intros,simp]: "((*) c) analytic_on S" | 
| 65587 
16a8991ab398
New material (and some tidying) purely in the Analysis directory
 paulson <lp15@cam.ac.uk> parents: 
64394diff
changeset | 393 | by (auto simp add: analytic_on_holomorphic) | 
| 56215 | 394 | |
| 68255 
009f783d1bac
small clean-up of Complex_Analysis_Basics
 paulson <lp15@cam.ac.uk> parents: 
68239diff
changeset | 395 | lemma analytic_on_const [analytic_intros,simp]: "(\<lambda>z. c) analytic_on S" | 
| 56370 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 396 | by (metis analytic_on_def holomorphic_on_const zero_less_one) | 
| 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 397 | |
| 68255 
009f783d1bac
small clean-up of Complex_Analysis_Basics
 paulson <lp15@cam.ac.uk> parents: 
68239diff
changeset | 398 | lemma analytic_on_ident [analytic_intros,simp]: "(\<lambda>x. x) analytic_on S" | 
| 65587 
16a8991ab398
New material (and some tidying) purely in the Analysis directory
 paulson <lp15@cam.ac.uk> parents: 
64394diff
changeset | 399 | by (simp add: analytic_on_def gt_ex) | 
| 56215 | 400 | |
| 68255 
009f783d1bac
small clean-up of Complex_Analysis_Basics
 paulson <lp15@cam.ac.uk> parents: 
68239diff
changeset | 401 | lemma analytic_on_id [analytic_intros]: "id analytic_on S" | 
| 56370 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 402 | unfolding id_def by (rule analytic_on_ident) | 
| 56215 | 403 | |
| 404 | lemma analytic_on_compose: | |
| 68255 
009f783d1bac
small clean-up of Complex_Analysis_Basics
 paulson <lp15@cam.ac.uk> parents: 
68239diff
changeset | 405 | assumes f: "f analytic_on S" | 
| 
009f783d1bac
small clean-up of Complex_Analysis_Basics
 paulson <lp15@cam.ac.uk> parents: 
68239diff
changeset | 406 | and g: "g analytic_on (f ` S)" | 
| 
009f783d1bac
small clean-up of Complex_Analysis_Basics
 paulson <lp15@cam.ac.uk> parents: 
68239diff
changeset | 407 | shows "(g o f) analytic_on S" | 
| 56215 | 408 | unfolding analytic_on_def | 
| 409 | proof (intro ballI) | |
| 410 | fix x | |
| 68255 
009f783d1bac
small clean-up of Complex_Analysis_Basics
 paulson <lp15@cam.ac.uk> parents: 
68239diff
changeset | 411 | assume x: "x \<in> S" | 
| 56215 | 412 | then obtain e where e: "0 < e" and fh: "f holomorphic_on ball x e" using f | 
| 413 | by (metis analytic_on_def) | |
| 414 | obtain e' where e': "0 < e'" and gh: "g holomorphic_on ball (f x) e'" using g | |
| 61609 
77b453bd616f
Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
 paulson <lp15@cam.ac.uk> parents: 
61531diff
changeset | 415 | by (metis analytic_on_def g image_eqI x) | 
| 56215 | 416 | have "isCont f x" | 
| 62534 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 417 | by (metis analytic_on_imp_differentiable_at field_differentiable_imp_continuous_at f x) | 
| 56215 | 418 | with e' obtain d where d: "0 < d" and fd: "f ` ball x d \<subseteq> ball (f x) e'" | 
| 419 | by (auto simp: continuous_at_ball) | |
| 61609 
77b453bd616f
Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
 paulson <lp15@cam.ac.uk> parents: 
61531diff
changeset | 420 | have "g \<circ> f holomorphic_on ball x (min d e)" | 
| 56215 | 421 | apply (rule holomorphic_on_compose) | 
| 422 | apply (metis fh holomorphic_on_subset min.bounded_iff order_refl subset_ball) | |
| 423 | by (metis fd gh holomorphic_on_subset image_mono min.cobounded1 subset_ball) | |
| 424 | then show "\<exists>e>0. g \<circ> f holomorphic_on ball x e" | |
| 61609 
77b453bd616f
Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
 paulson <lp15@cam.ac.uk> parents: 
61531diff
changeset | 425 | by (metis d e min_less_iff_conj) | 
| 56215 | 426 | qed | 
| 427 | ||
| 428 | lemma analytic_on_compose_gen: | |
| 68255 
009f783d1bac
small clean-up of Complex_Analysis_Basics
 paulson <lp15@cam.ac.uk> parents: 
68239diff
changeset | 429 | "f analytic_on S \<Longrightarrow> g analytic_on T \<Longrightarrow> (\<And>z. z \<in> S \<Longrightarrow> f z \<in> T) | 
| 
009f783d1bac
small clean-up of Complex_Analysis_Basics
 paulson <lp15@cam.ac.uk> parents: 
68239diff
changeset | 430 | \<Longrightarrow> g o f analytic_on S" | 
| 56215 | 431 | by (metis analytic_on_compose analytic_on_subset image_subset_iff) | 
| 432 | ||
| 65587 
16a8991ab398
New material (and some tidying) purely in the Analysis directory
 paulson <lp15@cam.ac.uk> parents: 
64394diff
changeset | 433 | lemma analytic_on_neg [analytic_intros]: | 
| 68255 
009f783d1bac
small clean-up of Complex_Analysis_Basics
 paulson <lp15@cam.ac.uk> parents: 
68239diff
changeset | 434 | "f analytic_on S \<Longrightarrow> (\<lambda>z. -(f z)) analytic_on S" | 
| 56215 | 435 | by (metis analytic_on_holomorphic holomorphic_on_minus) | 
| 436 | ||
| 65587 
16a8991ab398
New material (and some tidying) purely in the Analysis directory
 paulson <lp15@cam.ac.uk> parents: 
64394diff
changeset | 437 | lemma analytic_on_add [analytic_intros]: | 
| 68255 
009f783d1bac
small clean-up of Complex_Analysis_Basics
 paulson <lp15@cam.ac.uk> parents: 
68239diff
changeset | 438 | assumes f: "f analytic_on S" | 
| 
009f783d1bac
small clean-up of Complex_Analysis_Basics
 paulson <lp15@cam.ac.uk> parents: 
68239diff
changeset | 439 | and g: "g analytic_on S" | 
| 
009f783d1bac
small clean-up of Complex_Analysis_Basics
 paulson <lp15@cam.ac.uk> parents: 
68239diff
changeset | 440 | shows "(\<lambda>z. f z + g z) analytic_on S" | 
| 56215 | 441 | unfolding analytic_on_def | 
| 442 | proof (intro ballI) | |
| 443 | fix z | |
| 68255 
009f783d1bac
small clean-up of Complex_Analysis_Basics
 paulson <lp15@cam.ac.uk> parents: 
68239diff
changeset | 444 | assume z: "z \<in> S" | 
| 56215 | 445 | then obtain e where e: "0 < e" and fh: "f holomorphic_on ball z e" using f | 
| 446 | by (metis analytic_on_def) | |
| 447 | obtain e' where e': "0 < e'" and gh: "g holomorphic_on ball z e'" using g | |
| 61609 
77b453bd616f
Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
 paulson <lp15@cam.ac.uk> parents: 
61531diff
changeset | 448 | by (metis analytic_on_def g z) | 
| 
77b453bd616f
Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
 paulson <lp15@cam.ac.uk> parents: 
61531diff
changeset | 449 | have "(\<lambda>z. f z + g z) holomorphic_on ball z (min e e')" | 
| 
77b453bd616f
Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
 paulson <lp15@cam.ac.uk> parents: 
61531diff
changeset | 450 | apply (rule holomorphic_on_add) | 
| 56215 | 451 | apply (metis fh holomorphic_on_subset min.bounded_iff order_refl subset_ball) | 
| 452 | by (metis gh holomorphic_on_subset min.bounded_iff order_refl subset_ball) | |
| 453 | then show "\<exists>e>0. (\<lambda>z. f z + g z) holomorphic_on ball z e" | |
| 454 | by (metis e e' min_less_iff_conj) | |
| 455 | qed | |
| 456 | ||
| 65587 
16a8991ab398
New material (and some tidying) purely in the Analysis directory
 paulson <lp15@cam.ac.uk> parents: 
64394diff
changeset | 457 | lemma analytic_on_diff [analytic_intros]: | 
| 68255 
009f783d1bac
small clean-up of Complex_Analysis_Basics
 paulson <lp15@cam.ac.uk> parents: 
68239diff
changeset | 458 | assumes f: "f analytic_on S" | 
| 
009f783d1bac
small clean-up of Complex_Analysis_Basics
 paulson <lp15@cam.ac.uk> parents: 
68239diff
changeset | 459 | and g: "g analytic_on S" | 
| 
009f783d1bac
small clean-up of Complex_Analysis_Basics
 paulson <lp15@cam.ac.uk> parents: 
68239diff
changeset | 460 | shows "(\<lambda>z. f z - g z) analytic_on S" | 
| 56215 | 461 | unfolding analytic_on_def | 
| 462 | proof (intro ballI) | |
| 463 | fix z | |
| 68255 
009f783d1bac
small clean-up of Complex_Analysis_Basics
 paulson <lp15@cam.ac.uk> parents: 
68239diff
changeset | 464 | assume z: "z \<in> S" | 
| 56215 | 465 | then obtain e where e: "0 < e" and fh: "f holomorphic_on ball z e" using f | 
| 466 | by (metis analytic_on_def) | |
| 467 | obtain e' where e': "0 < e'" and gh: "g holomorphic_on ball z e'" using g | |
| 61609 
77b453bd616f
Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
 paulson <lp15@cam.ac.uk> parents: 
61531diff
changeset | 468 | by (metis analytic_on_def g z) | 
| 
77b453bd616f
Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
 paulson <lp15@cam.ac.uk> parents: 
61531diff
changeset | 469 | have "(\<lambda>z. f z - g z) holomorphic_on ball z (min e e')" | 
| 
77b453bd616f
Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
 paulson <lp15@cam.ac.uk> parents: 
61531diff
changeset | 470 | apply (rule holomorphic_on_diff) | 
| 56215 | 471 | apply (metis fh holomorphic_on_subset min.bounded_iff order_refl subset_ball) | 
| 472 | by (metis gh holomorphic_on_subset min.bounded_iff order_refl subset_ball) | |
| 473 | then show "\<exists>e>0. (\<lambda>z. f z - g z) holomorphic_on ball z e" | |
| 474 | by (metis e e' min_less_iff_conj) | |
| 475 | qed | |
| 476 | ||
| 65587 
16a8991ab398
New material (and some tidying) purely in the Analysis directory
 paulson <lp15@cam.ac.uk> parents: 
64394diff
changeset | 477 | lemma analytic_on_mult [analytic_intros]: | 
| 68255 
009f783d1bac
small clean-up of Complex_Analysis_Basics
 paulson <lp15@cam.ac.uk> parents: 
68239diff
changeset | 478 | assumes f: "f analytic_on S" | 
| 
009f783d1bac
small clean-up of Complex_Analysis_Basics
 paulson <lp15@cam.ac.uk> parents: 
68239diff
changeset | 479 | and g: "g analytic_on S" | 
| 
009f783d1bac
small clean-up of Complex_Analysis_Basics
 paulson <lp15@cam.ac.uk> parents: 
68239diff
changeset | 480 | shows "(\<lambda>z. f z * g z) analytic_on S" | 
| 56215 | 481 | unfolding analytic_on_def | 
| 482 | proof (intro ballI) | |
| 483 | fix z | |
| 68255 
009f783d1bac
small clean-up of Complex_Analysis_Basics
 paulson <lp15@cam.ac.uk> parents: 
68239diff
changeset | 484 | assume z: "z \<in> S" | 
| 56215 | 485 | then obtain e where e: "0 < e" and fh: "f holomorphic_on ball z e" using f | 
| 486 | by (metis analytic_on_def) | |
| 487 | obtain e' where e': "0 < e'" and gh: "g holomorphic_on ball z e'" using g | |
| 61609 
77b453bd616f
Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
 paulson <lp15@cam.ac.uk> parents: 
61531diff
changeset | 488 | by (metis analytic_on_def g z) | 
| 
77b453bd616f
Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
 paulson <lp15@cam.ac.uk> parents: 
61531diff
changeset | 489 | have "(\<lambda>z. f z * g z) holomorphic_on ball z (min e e')" | 
| 
77b453bd616f
Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
 paulson <lp15@cam.ac.uk> parents: 
61531diff
changeset | 490 | apply (rule holomorphic_on_mult) | 
| 56215 | 491 | apply (metis fh holomorphic_on_subset min.bounded_iff order_refl subset_ball) | 
| 492 | by (metis gh holomorphic_on_subset min.bounded_iff order_refl subset_ball) | |
| 493 | then show "\<exists>e>0. (\<lambda>z. f z * g z) holomorphic_on ball z e" | |
| 494 | by (metis e e' min_less_iff_conj) | |
| 495 | qed | |
| 496 | ||
| 65587 
16a8991ab398
New material (and some tidying) purely in the Analysis directory
 paulson <lp15@cam.ac.uk> parents: 
64394diff
changeset | 497 | lemma analytic_on_inverse [analytic_intros]: | 
| 68255 
009f783d1bac
small clean-up of Complex_Analysis_Basics
 paulson <lp15@cam.ac.uk> parents: 
68239diff
changeset | 498 | assumes f: "f analytic_on S" | 
| 
009f783d1bac
small clean-up of Complex_Analysis_Basics
 paulson <lp15@cam.ac.uk> parents: 
68239diff
changeset | 499 | and nz: "(\<And>z. z \<in> S \<Longrightarrow> f z \<noteq> 0)" | 
| 
009f783d1bac
small clean-up of Complex_Analysis_Basics
 paulson <lp15@cam.ac.uk> parents: 
68239diff
changeset | 500 | shows "(\<lambda>z. inverse (f z)) analytic_on S" | 
| 56215 | 501 | unfolding analytic_on_def | 
| 502 | proof (intro ballI) | |
| 503 | fix z | |
| 68255 
009f783d1bac
small clean-up of Complex_Analysis_Basics
 paulson <lp15@cam.ac.uk> parents: 
68239diff
changeset | 504 | assume z: "z \<in> S" | 
| 56215 | 505 | then obtain e where e: "0 < e" and fh: "f holomorphic_on ball z e" using f | 
| 506 | by (metis analytic_on_def) | |
| 507 | have "continuous_on (ball z e) f" | |
| 508 | by (metis fh holomorphic_on_imp_continuous_on) | |
| 61609 
77b453bd616f
Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
 paulson <lp15@cam.ac.uk> parents: 
61531diff
changeset | 509 | then obtain e' where e': "0 < e'" and nz': "\<And>y. dist z y < e' \<Longrightarrow> f y \<noteq> 0" | 
| 66827 
c94531b5007d
Divided Topology_Euclidean_Space in two, creating new theory Connected. Also deleted some duplicate / variant theorems
 paulson <lp15@cam.ac.uk> parents: 
66486diff
changeset | 510 | by (metis open_ball centre_in_ball continuous_on_open_avoid e z nz) | 
| 61609 
77b453bd616f
Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
 paulson <lp15@cam.ac.uk> parents: 
61531diff
changeset | 511 | have "(\<lambda>z. inverse (f z)) holomorphic_on ball z (min e e')" | 
| 56215 | 512 | apply (rule holomorphic_on_inverse) | 
| 513 | apply (metis fh holomorphic_on_subset min.cobounded2 min.commute subset_ball) | |
| 61609 
77b453bd616f
Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
 paulson <lp15@cam.ac.uk> parents: 
61531diff
changeset | 514 | by (metis nz' mem_ball min_less_iff_conj) | 
| 56215 | 515 | then show "\<exists>e>0. (\<lambda>z. inverse (f z)) holomorphic_on ball z e" | 
| 516 | by (metis e e' min_less_iff_conj) | |
| 517 | qed | |
| 518 | ||
| 65587 
16a8991ab398
New material (and some tidying) purely in the Analysis directory
 paulson <lp15@cam.ac.uk> parents: 
64394diff
changeset | 519 | lemma analytic_on_divide [analytic_intros]: | 
| 68255 
009f783d1bac
small clean-up of Complex_Analysis_Basics
 paulson <lp15@cam.ac.uk> parents: 
68239diff
changeset | 520 | assumes f: "f analytic_on S" | 
| 
009f783d1bac
small clean-up of Complex_Analysis_Basics
 paulson <lp15@cam.ac.uk> parents: 
68239diff
changeset | 521 | and g: "g analytic_on S" | 
| 
009f783d1bac
small clean-up of Complex_Analysis_Basics
 paulson <lp15@cam.ac.uk> parents: 
68239diff
changeset | 522 | and nz: "(\<And>z. z \<in> S \<Longrightarrow> g z \<noteq> 0)" | 
| 
009f783d1bac
small clean-up of Complex_Analysis_Basics
 paulson <lp15@cam.ac.uk> parents: 
68239diff
changeset | 523 | shows "(\<lambda>z. f z / g z) analytic_on S" | 
| 56215 | 524 | unfolding divide_inverse | 
| 525 | by (metis analytic_on_inverse analytic_on_mult f g nz) | |
| 526 | ||
| 65587 
16a8991ab398
New material (and some tidying) purely in the Analysis directory
 paulson <lp15@cam.ac.uk> parents: 
64394diff
changeset | 527 | lemma analytic_on_power [analytic_intros]: | 
| 68255 
009f783d1bac
small clean-up of Complex_Analysis_Basics
 paulson <lp15@cam.ac.uk> parents: 
68239diff
changeset | 528 | "f analytic_on S \<Longrightarrow> (\<lambda>z. (f z) ^ n) analytic_on S" | 
| 65587 
16a8991ab398
New material (and some tidying) purely in the Analysis directory
 paulson <lp15@cam.ac.uk> parents: 
64394diff
changeset | 529 | by (induct n) (auto simp: analytic_on_mult) | 
| 56215 | 530 | |
| 65587 
16a8991ab398
New material (and some tidying) purely in the Analysis directory
 paulson <lp15@cam.ac.uk> parents: 
64394diff
changeset | 531 | lemma analytic_on_sum [analytic_intros]: | 
| 68255 
009f783d1bac
small clean-up of Complex_Analysis_Basics
 paulson <lp15@cam.ac.uk> parents: 
68239diff
changeset | 532 | "(\<And>i. i \<in> I \<Longrightarrow> (f i) analytic_on S) \<Longrightarrow> (\<lambda>x. sum (\<lambda>i. f i x) I) analytic_on S" | 
| 71633 | 533 | by (induct I rule: infinite_finite_induct) (auto simp: analytic_on_add) | 
| 56215 | 534 | |
| 62408 
86f27b264d3d
Conformal_mappings: a big development in complex analysis (+ some lemmas)
 paulson <lp15@cam.ac.uk> parents: 
62397diff
changeset | 535 | lemma deriv_left_inverse: | 
| 
86f27b264d3d
Conformal_mappings: a big development in complex analysis (+ some lemmas)
 paulson <lp15@cam.ac.uk> parents: 
62397diff
changeset | 536 | assumes "f holomorphic_on S" and "g holomorphic_on T" | 
| 
86f27b264d3d
Conformal_mappings: a big development in complex analysis (+ some lemmas)
 paulson <lp15@cam.ac.uk> parents: 
62397diff
changeset | 537 | and "open S" and "open T" | 
| 
86f27b264d3d
Conformal_mappings: a big development in complex analysis (+ some lemmas)
 paulson <lp15@cam.ac.uk> parents: 
62397diff
changeset | 538 | and "f ` S \<subseteq> T" | 
| 
86f27b264d3d
Conformal_mappings: a big development in complex analysis (+ some lemmas)
 paulson <lp15@cam.ac.uk> parents: 
62397diff
changeset | 539 | and [simp]: "\<And>z. z \<in> S \<Longrightarrow> g (f z) = z" | 
| 
86f27b264d3d
Conformal_mappings: a big development in complex analysis (+ some lemmas)
 paulson <lp15@cam.ac.uk> parents: 
62397diff
changeset | 540 | and "w \<in> S" | 
| 
86f27b264d3d
Conformal_mappings: a big development in complex analysis (+ some lemmas)
 paulson <lp15@cam.ac.uk> parents: 
62397diff
changeset | 541 | shows "deriv f w * deriv g (f w) = 1" | 
| 
86f27b264d3d
Conformal_mappings: a big development in complex analysis (+ some lemmas)
 paulson <lp15@cam.ac.uk> parents: 
62397diff
changeset | 542 | proof - | 
| 
86f27b264d3d
Conformal_mappings: a big development in complex analysis (+ some lemmas)
 paulson <lp15@cam.ac.uk> parents: 
62397diff
changeset | 543 | have "deriv f w * deriv g (f w) = deriv g (f w) * deriv f w" | 
| 
86f27b264d3d
Conformal_mappings: a big development in complex analysis (+ some lemmas)
 paulson <lp15@cam.ac.uk> parents: 
62397diff
changeset | 544 | by (simp add: algebra_simps) | 
| 
86f27b264d3d
Conformal_mappings: a big development in complex analysis (+ some lemmas)
 paulson <lp15@cam.ac.uk> parents: 
62397diff
changeset | 545 | also have "... = deriv (g o f) w" | 
| 
86f27b264d3d
Conformal_mappings: a big development in complex analysis (+ some lemmas)
 paulson <lp15@cam.ac.uk> parents: 
62397diff
changeset | 546 | using assms | 
| 71189 
954ee5acaae0
Split off new HOL-Complex_Analysis session from HOL-Analysis
 Manuel Eberl <eberlm@in.tum.de> parents: 
71167diff
changeset | 547 | by (metis analytic_on_imp_differentiable_at analytic_on_open deriv_chain image_subset_iff) | 
| 62408 
86f27b264d3d
Conformal_mappings: a big development in complex analysis (+ some lemmas)
 paulson <lp15@cam.ac.uk> parents: 
62397diff
changeset | 548 | also have "... = deriv id w" | 
| 68255 
009f783d1bac
small clean-up of Complex_Analysis_Basics
 paulson <lp15@cam.ac.uk> parents: 
68239diff
changeset | 549 | proof (rule complex_derivative_transform_within_open [where s=S]) | 
| 
009f783d1bac
small clean-up of Complex_Analysis_Basics
 paulson <lp15@cam.ac.uk> parents: 
68239diff
changeset | 550 | show "g \<circ> f holomorphic_on S" | 
| 
009f783d1bac
small clean-up of Complex_Analysis_Basics
 paulson <lp15@cam.ac.uk> parents: 
68239diff
changeset | 551 | by (rule assms holomorphic_on_compose_gen holomorphic_intros)+ | 
| 
009f783d1bac
small clean-up of Complex_Analysis_Basics
 paulson <lp15@cam.ac.uk> parents: 
68239diff
changeset | 552 | qed (use assms in auto) | 
| 62408 
86f27b264d3d
Conformal_mappings: a big development in complex analysis (+ some lemmas)
 paulson <lp15@cam.ac.uk> parents: 
62397diff
changeset | 553 | also have "... = 1" | 
| 
86f27b264d3d
Conformal_mappings: a big development in complex analysis (+ some lemmas)
 paulson <lp15@cam.ac.uk> parents: 
62397diff
changeset | 554 | by simp | 
| 
86f27b264d3d
Conformal_mappings: a big development in complex analysis (+ some lemmas)
 paulson <lp15@cam.ac.uk> parents: 
62397diff
changeset | 555 | finally show ?thesis . | 
| 
86f27b264d3d
Conformal_mappings: a big development in complex analysis (+ some lemmas)
 paulson <lp15@cam.ac.uk> parents: 
62397diff
changeset | 556 | qed | 
| 
86f27b264d3d
Conformal_mappings: a big development in complex analysis (+ some lemmas)
 paulson <lp15@cam.ac.uk> parents: 
62397diff
changeset | 557 | |
| 70136 | 558 | subsection\<^marker>\<open>tag unimportant\<close>\<open>Analyticity at a point\<close> | 
| 56215 | 559 | |
| 560 | lemma analytic_at_ball: | |
| 561 |   "f analytic_on {z} \<longleftrightarrow> (\<exists>e. 0<e \<and> f holomorphic_on ball z e)"
 | |
| 562 | by (metis analytic_on_def singleton_iff) | |
| 563 | ||
| 564 | lemma analytic_at: | |
| 565 |     "f analytic_on {z} \<longleftrightarrow> (\<exists>s. open s \<and> z \<in> s \<and> f holomorphic_on s)"
 | |
| 566 | by (metis analytic_on_holomorphic empty_subsetI insert_subset) | |
| 567 | ||
| 568 | lemma analytic_on_analytic_at: | |
| 569 |     "f analytic_on s \<longleftrightarrow> (\<forall>z \<in> s. f analytic_on {z})"
 | |
| 570 | by (metis analytic_at_ball analytic_on_def) | |
| 571 | ||
| 572 | lemma analytic_at_two: | |
| 573 |   "f analytic_on {z} \<and> g analytic_on {z} \<longleftrightarrow>
 | |
| 574 | (\<exists>s. open s \<and> z \<in> s \<and> f holomorphic_on s \<and> g holomorphic_on s)" | |
| 575 | (is "?lhs = ?rhs") | |
| 61609 
77b453bd616f
Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
 paulson <lp15@cam.ac.uk> parents: 
61531diff
changeset | 576 | proof | 
| 56215 | 577 | assume ?lhs | 
| 61609 
77b453bd616f
Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
 paulson <lp15@cam.ac.uk> parents: 
61531diff
changeset | 578 | then obtain s t | 
| 56215 | 579 | where st: "open s" "z \<in> s" "f holomorphic_on s" | 
| 580 | "open t" "z \<in> t" "g holomorphic_on t" | |
| 581 | by (auto simp: analytic_at) | |
| 582 | show ?rhs | |
| 583 | apply (rule_tac x="s \<inter> t" in exI) | |
| 584 | using st | |
| 69286 | 585 | apply (auto simp: holomorphic_on_subset) | 
| 56215 | 586 | done | 
| 587 | next | |
| 61609 
77b453bd616f
Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
 paulson <lp15@cam.ac.uk> parents: 
61531diff
changeset | 588 | assume ?rhs | 
| 56215 | 589 | then show ?lhs | 
| 590 | by (force simp add: analytic_at) | |
| 591 | qed | |
| 592 | ||
| 70136 | 593 | subsection\<^marker>\<open>tag unimportant\<close>\<open>Combining theorems for derivative with ``analytic at'' hypotheses\<close> | 
| 56215 | 594 | |
| 61609 
77b453bd616f
Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
 paulson <lp15@cam.ac.uk> parents: 
61531diff
changeset | 595 | lemma | 
| 56215 | 596 |   assumes "f analytic_on {z}" "g analytic_on {z}"
 | 
| 56370 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 597 | shows complex_derivative_add_at: "deriv (\<lambda>w. f w + g w) z = deriv f z + deriv g z" | 
| 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 598 | and complex_derivative_diff_at: "deriv (\<lambda>w. f w - g w) z = deriv f z - deriv g z" | 
| 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 599 | and complex_derivative_mult_at: "deriv (\<lambda>w. f w * g w) z = | 
| 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 600 | f z * deriv g z + deriv f z * g z" | 
| 56215 | 601 | proof - | 
| 602 | obtain s where s: "open s" "z \<in> s" "f holomorphic_on s" "g holomorphic_on s" | |
| 603 | using assms by (metis analytic_at_two) | |
| 56370 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 604 | show "deriv (\<lambda>w. f w + g w) z = deriv f z + deriv g z" | 
| 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 605 | apply (rule DERIV_imp_deriv [OF DERIV_add]) | 
| 56215 | 606 | using s | 
| 62534 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 607 | apply (auto simp: holomorphic_on_open field_differentiable_def DERIV_deriv_iff_field_differentiable) | 
| 56215 | 608 | done | 
| 56370 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 609 | show "deriv (\<lambda>w. f w - g w) z = deriv f z - deriv g z" | 
| 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 610 | apply (rule DERIV_imp_deriv [OF DERIV_diff]) | 
| 56215 | 611 | using s | 
| 62534 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 612 | apply (auto simp: holomorphic_on_open field_differentiable_def DERIV_deriv_iff_field_differentiable) | 
| 56215 | 613 | done | 
| 56370 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 614 | show "deriv (\<lambda>w. f w * g w) z = f z * deriv g z + deriv f z * g z" | 
| 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 615 | apply (rule DERIV_imp_deriv [OF DERIV_mult']) | 
| 56215 | 616 | using s | 
| 62534 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 617 | apply (auto simp: holomorphic_on_open field_differentiable_def DERIV_deriv_iff_field_differentiable) | 
| 56215 | 618 | done | 
| 619 | qed | |
| 620 | ||
| 62534 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 621 | lemma deriv_cmult_at: | 
| 56370 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 622 |   "f analytic_on {z} \<Longrightarrow>  deriv (\<lambda>w. c * f w) z = c * deriv f z"
 | 
| 71633 | 623 | by (auto simp: complex_derivative_mult_at) | 
| 56215 | 624 | |
| 62534 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 625 | lemma deriv_cmult_right_at: | 
| 56370 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 626 |   "f analytic_on {z} \<Longrightarrow>  deriv (\<lambda>w. f w * c) z = deriv f z * c"
 | 
| 71633 | 627 | by (auto simp: complex_derivative_mult_at) | 
| 56215 | 628 | |
| 70136 | 629 | subsection\<^marker>\<open>tag unimportant\<close>\<open>Complex differentiation of sequences and series\<close> | 
| 56215 | 630 | |
| 61531 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 eberlm parents: 
61520diff
changeset | 631 | (* TODO: Could probably be simplified using Uniform_Limit *) | 
| 56215 | 632 | lemma has_complex_derivative_sequence: | 
| 68255 
009f783d1bac
small clean-up of Complex_Analysis_Basics
 paulson <lp15@cam.ac.uk> parents: 
68239diff
changeset | 633 | fixes S :: "complex set" | 
| 
009f783d1bac
small clean-up of Complex_Analysis_Basics
 paulson <lp15@cam.ac.uk> parents: 
68239diff
changeset | 634 | assumes cvs: "convex S" | 
| 
009f783d1bac
small clean-up of Complex_Analysis_Basics
 paulson <lp15@cam.ac.uk> parents: 
68239diff
changeset | 635 | and df: "\<And>n x. x \<in> S \<Longrightarrow> (f n has_field_derivative f' n x) (at x within S)" | 
| 
009f783d1bac
small clean-up of Complex_Analysis_Basics
 paulson <lp15@cam.ac.uk> parents: 
68239diff
changeset | 636 | and conv: "\<And>e. 0 < e \<Longrightarrow> \<exists>N. \<forall>n x. n \<ge> N \<longrightarrow> x \<in> S \<longrightarrow> norm (f' n x - g' x) \<le> e" | 
| 
009f783d1bac
small clean-up of Complex_Analysis_Basics
 paulson <lp15@cam.ac.uk> parents: 
68239diff
changeset | 637 | and "\<exists>x l. x \<in> S \<and> ((\<lambda>n. f n x) \<longlongrightarrow> l) sequentially" | 
| 
009f783d1bac
small clean-up of Complex_Analysis_Basics
 paulson <lp15@cam.ac.uk> parents: 
68239diff
changeset | 638 | shows "\<exists>g. \<forall>x \<in> S. ((\<lambda>n. f n x) \<longlongrightarrow> g x) sequentially \<and> | 
| 
009f783d1bac
small clean-up of Complex_Analysis_Basics
 paulson <lp15@cam.ac.uk> parents: 
68239diff
changeset | 639 | (g has_field_derivative (g' x)) (at x within S)" | 
| 56215 | 640 | proof - | 
| 68255 
009f783d1bac
small clean-up of Complex_Analysis_Basics
 paulson <lp15@cam.ac.uk> parents: 
68239diff
changeset | 641 | from assms obtain x l where x: "x \<in> S" and tf: "((\<lambda>n. f n x) \<longlongrightarrow> l) sequentially" | 
| 56215 | 642 | by blast | 
| 643 |   { fix e::real assume e: "e > 0"
 | |
| 68255 
009f783d1bac
small clean-up of Complex_Analysis_Basics
 paulson <lp15@cam.ac.uk> parents: 
68239diff
changeset | 644 | then obtain N where N: "\<forall>n\<ge>N. \<forall>x. x \<in> S \<longrightarrow> cmod (f' n x - g' x) \<le> e" | 
| 61609 
77b453bd616f
Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
 paulson <lp15@cam.ac.uk> parents: 
61531diff
changeset | 645 | by (metis conv) | 
| 68255 
009f783d1bac
small clean-up of Complex_Analysis_Basics
 paulson <lp15@cam.ac.uk> parents: 
68239diff
changeset | 646 | have "\<exists>N. \<forall>n\<ge>N. \<forall>x\<in>S. \<forall>h. cmod (f' n x * h - g' x * h) \<le> e * cmod h" | 
| 56215 | 647 | proof (rule exI [of _ N], clarify) | 
| 648 | fix n y h | |
| 68255 
009f783d1bac
small clean-up of Complex_Analysis_Basics
 paulson <lp15@cam.ac.uk> parents: 
68239diff
changeset | 649 | assume "N \<le> n" "y \<in> S" | 
| 56215 | 650 | then have "cmod (f' n y - g' y) \<le> e" | 
| 651 | by (metis N) | |
| 652 | then have "cmod h * cmod (f' n y - g' y) \<le> cmod h * e" | |
| 653 | by (auto simp: antisym_conv2 mult_le_cancel_left norm_triangle_ineq2) | |
| 654 | then show "cmod (f' n y * h - g' y * h) \<le> e * cmod h" | |
| 655 | by (simp add: norm_mult [symmetric] field_simps) | |
| 656 | qed | |
| 657 | } note ** = this | |
| 658 | show ?thesis | |
| 68055 | 659 | unfolding has_field_derivative_def | 
| 56215 | 660 | proof (rule has_derivative_sequence [OF cvs _ _ x]) | 
| 68239 | 661 | show "(\<lambda>n. f n x) \<longlonglongrightarrow> l" | 
| 662 | by (rule tf) | |
| 68255 
009f783d1bac
small clean-up of Complex_Analysis_Basics
 paulson <lp15@cam.ac.uk> parents: 
68239diff
changeset | 663 | next show "\<And>e. e > 0 \<Longrightarrow> \<forall>\<^sub>F n in sequentially. \<forall>x\<in>S. \<forall>h. cmod (f' n x * h - g' x * h) \<le> e * cmod h" | 
| 68239 | 664 | unfolding eventually_sequentially by (blast intro: **) | 
| 68055 | 665 | qed (metis has_field_derivative_def df) | 
| 56215 | 666 | qed | 
| 667 | ||
| 668 | lemma has_complex_derivative_series: | |
| 68255 
009f783d1bac
small clean-up of Complex_Analysis_Basics
 paulson <lp15@cam.ac.uk> parents: 
68239diff
changeset | 669 | fixes S :: "complex set" | 
| 
009f783d1bac
small clean-up of Complex_Analysis_Basics
 paulson <lp15@cam.ac.uk> parents: 
68239diff
changeset | 670 | assumes cvs: "convex S" | 
| 
009f783d1bac
small clean-up of Complex_Analysis_Basics
 paulson <lp15@cam.ac.uk> parents: 
68239diff
changeset | 671 | and df: "\<And>n x. x \<in> S \<Longrightarrow> (f n has_field_derivative f' n x) (at x within S)" | 
| 
009f783d1bac
small clean-up of Complex_Analysis_Basics
 paulson <lp15@cam.ac.uk> parents: 
68239diff
changeset | 672 | and conv: "\<And>e. 0 < e \<Longrightarrow> \<exists>N. \<forall>n x. n \<ge> N \<longrightarrow> x \<in> S | 
| 56215 | 673 | \<longrightarrow> cmod ((\<Sum>i<n. f' i x) - g' x) \<le> e" | 
| 68255 
009f783d1bac
small clean-up of Complex_Analysis_Basics
 paulson <lp15@cam.ac.uk> parents: 
68239diff
changeset | 674 | and "\<exists>x l. x \<in> S \<and> ((\<lambda>n. f n x) sums l)" | 
| 
009f783d1bac
small clean-up of Complex_Analysis_Basics
 paulson <lp15@cam.ac.uk> parents: 
68239diff
changeset | 675 | shows "\<exists>g. \<forall>x \<in> S. ((\<lambda>n. f n x) sums g x) \<and> ((g has_field_derivative g' x) (at x within S))" | 
| 56215 | 676 | proof - | 
| 68255 
009f783d1bac
small clean-up of Complex_Analysis_Basics
 paulson <lp15@cam.ac.uk> parents: 
68239diff
changeset | 677 | from assms obtain x l where x: "x \<in> S" and sf: "((\<lambda>n. f n x) sums l)" | 
| 56215 | 678 | by blast | 
| 679 |   { fix e::real assume e: "e > 0"
 | |
| 68255 
009f783d1bac
small clean-up of Complex_Analysis_Basics
 paulson <lp15@cam.ac.uk> parents: 
68239diff
changeset | 680 | then obtain N where N: "\<forall>n x. n \<ge> N \<longrightarrow> x \<in> S | 
| 56215 | 681 | \<longrightarrow> cmod ((\<Sum>i<n. f' i x) - g' x) \<le> e" | 
| 61609 
77b453bd616f
Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
 paulson <lp15@cam.ac.uk> parents: 
61531diff
changeset | 682 | by (metis conv) | 
| 68255 
009f783d1bac
small clean-up of Complex_Analysis_Basics
 paulson <lp15@cam.ac.uk> parents: 
68239diff
changeset | 683 | have "\<exists>N. \<forall>n\<ge>N. \<forall>x\<in>S. \<forall>h. cmod ((\<Sum>i<n. h * f' i x) - g' x * h) \<le> e * cmod h" | 
| 56215 | 684 | proof (rule exI [of _ N], clarify) | 
| 685 | fix n y h | |
| 68255 
009f783d1bac
small clean-up of Complex_Analysis_Basics
 paulson <lp15@cam.ac.uk> parents: 
68239diff
changeset | 686 | assume "N \<le> n" "y \<in> S" | 
| 56215 | 687 | then have "cmod ((\<Sum>i<n. f' i y) - g' y) \<le> e" | 
| 688 | by (metis N) | |
| 689 | then have "cmod h * cmod ((\<Sum>i<n. f' i y) - g' y) \<le> cmod h * e" | |
| 690 | by (auto simp: antisym_conv2 mult_le_cancel_left norm_triangle_ineq2) | |
| 691 | then show "cmod ((\<Sum>i<n. h * f' i y) - g' y * h) \<le> e * cmod h" | |
| 64267 | 692 | by (simp add: norm_mult [symmetric] field_simps sum_distrib_left) | 
| 56215 | 693 | qed | 
| 694 | } note ** = this | |
| 695 | show ?thesis | |
| 696 | unfolding has_field_derivative_def | |
| 697 | proof (rule has_derivative_series [OF cvs _ _ x]) | |
| 698 | fix n x | |
| 68255 
009f783d1bac
small clean-up of Complex_Analysis_Basics
 paulson <lp15@cam.ac.uk> parents: 
68239diff
changeset | 699 | assume "x \<in> S" | 
| 
009f783d1bac
small clean-up of Complex_Analysis_Basics
 paulson <lp15@cam.ac.uk> parents: 
68239diff
changeset | 700 | then show "((f n) has_derivative (\<lambda>z. z * f' n x)) (at x within S)" | 
| 56215 | 701 | by (metis df has_field_derivative_def mult_commute_abs) | 
| 702 | next show " ((\<lambda>n. f n x) sums l)" | |
| 703 | by (rule sf) | |
| 68255 
009f783d1bac
small clean-up of Complex_Analysis_Basics
 paulson <lp15@cam.ac.uk> parents: 
68239diff
changeset | 704 | next show "\<And>e. e>0 \<Longrightarrow> \<forall>\<^sub>F n in sequentially. \<forall>x\<in>S. \<forall>h. cmod ((\<Sum>i<n. h * f' i x) - g' x * h) \<le> e * cmod h" | 
| 68239 | 705 | unfolding eventually_sequentially by (blast intro: **) | 
| 56215 | 706 | qed | 
| 707 | qed | |
| 708 | ||
| 70136 | 709 | subsection\<^marker>\<open>tag unimportant\<close> \<open>Taylor on Complex Numbers\<close> | 
| 56215 | 710 | |
| 64267 | 711 | lemma sum_Suc_reindex: | 
| 56215 | 712 | fixes f :: "nat \<Rightarrow> 'a::ab_group_add" | 
| 64267 | 713 |     shows  "sum f {0..n} = f 0 - f (Suc n) + sum (\<lambda>i. f (Suc i)) {0..n}"
 | 
| 56215 | 714 | by (induct n) auto | 
| 715 | ||
| 69529 | 716 | lemma field_Taylor: | 
| 68255 
009f783d1bac
small clean-up of Complex_Analysis_Basics
 paulson <lp15@cam.ac.uk> parents: 
68239diff
changeset | 717 | assumes S: "convex S" | 
| 
009f783d1bac
small clean-up of Complex_Analysis_Basics
 paulson <lp15@cam.ac.uk> parents: 
68239diff
changeset | 718 | and f: "\<And>i x. x \<in> S \<Longrightarrow> i \<le> n \<Longrightarrow> (f i has_field_derivative f (Suc i) x) (at x within S)" | 
| 
009f783d1bac
small clean-up of Complex_Analysis_Basics
 paulson <lp15@cam.ac.uk> parents: 
68239diff
changeset | 719 | and B: "\<And>x. x \<in> S \<Longrightarrow> norm (f (Suc n) x) \<le> B" | 
| 
009f783d1bac
small clean-up of Complex_Analysis_Basics
 paulson <lp15@cam.ac.uk> parents: 
68239diff
changeset | 720 | and w: "w \<in> S" | 
| 
009f783d1bac
small clean-up of Complex_Analysis_Basics
 paulson <lp15@cam.ac.uk> parents: 
68239diff
changeset | 721 | and z: "z \<in> S" | 
| 66252 | 722 | shows "norm(f 0 z - (\<Sum>i\<le>n. f i w * (z-w) ^ i / (fact i))) | 
| 723 | \<le> B * norm(z - w)^(Suc n) / fact n" | |
| 56215 | 724 | proof - | 
| 68255 
009f783d1bac
small clean-up of Complex_Analysis_Basics
 paulson <lp15@cam.ac.uk> parents: 
68239diff
changeset | 725 | have wzs: "closed_segment w z \<subseteq> S" using assms | 
| 56215 | 726 | by (metis convex_contains_segment) | 
| 727 |   { fix u
 | |
| 728 | assume "u \<in> closed_segment w z" | |
| 68255 
009f783d1bac
small clean-up of Complex_Analysis_Basics
 paulson <lp15@cam.ac.uk> parents: 
68239diff
changeset | 729 | then have "u \<in> S" | 
| 56215 | 730 | by (metis wzs subsetD) | 
| 59730 
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
 paulson <lp15@cam.ac.uk> parents: 
59615diff
changeset | 731 | have "(\<Sum>i\<le>n. f i u * (- of_nat i * (z-u)^(i - 1)) / (fact i) + | 
| 61609 
77b453bd616f
Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
 paulson <lp15@cam.ac.uk> parents: 
61531diff
changeset | 732 | f (Suc i) u * (z-u)^i / (fact i)) = | 
| 59730 
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
 paulson <lp15@cam.ac.uk> parents: 
59615diff
changeset | 733 | f (Suc n) u * (z-u) ^ n / (fact n)" | 
| 56215 | 734 | proof (induction n) | 
| 735 | case 0 show ?case by simp | |
| 736 | next | |
| 737 | case (Suc n) | |
| 59730 
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
 paulson <lp15@cam.ac.uk> parents: 
59615diff
changeset | 738 | have "(\<Sum>i\<le>Suc n. f i u * (- of_nat i * (z-u) ^ (i - 1)) / (fact i) + | 
| 61609 
77b453bd616f
Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
 paulson <lp15@cam.ac.uk> parents: 
61531diff
changeset | 739 | f (Suc i) u * (z-u) ^ i / (fact i)) = | 
| 59730 
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
 paulson <lp15@cam.ac.uk> parents: 
59615diff
changeset | 740 | f (Suc n) u * (z-u) ^ n / (fact n) + | 
| 
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
 paulson <lp15@cam.ac.uk> parents: 
59615diff
changeset | 741 | f (Suc (Suc n)) u * ((z-u) * (z-u) ^ n) / (fact (Suc n)) - | 
| 
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
 paulson <lp15@cam.ac.uk> parents: 
59615diff
changeset | 742 | f (Suc n) u * ((1 + of_nat n) * (z-u) ^ n) / (fact (Suc n))" | 
| 56479 
91958d4b30f7
revert c1bbd3e22226, a14831ac3023, and 36489d77c484: divide_minus_left/right are again simp rules
 hoelzl parents: 
56409diff
changeset | 743 | using Suc by simp | 
| 59730 
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
 paulson <lp15@cam.ac.uk> parents: 
59615diff
changeset | 744 | also have "... = f (Suc (Suc n)) u * (z-u) ^ Suc n / (fact (Suc n))" | 
| 56215 | 745 | proof - | 
| 59730 
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
 paulson <lp15@cam.ac.uk> parents: 
59615diff
changeset | 746 | have "(fact(Suc n)) * | 
| 
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
 paulson <lp15@cam.ac.uk> parents: 
59615diff
changeset | 747 | (f(Suc n) u *(z-u) ^ n / (fact n) + | 
| 
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
 paulson <lp15@cam.ac.uk> parents: 
59615diff
changeset | 748 | f(Suc(Suc n)) u *((z-u) *(z-u) ^ n) / (fact(Suc n)) - | 
| 
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
 paulson <lp15@cam.ac.uk> parents: 
59615diff
changeset | 749 | f(Suc n) u *((1 + of_nat n) *(z-u) ^ n) / (fact(Suc n))) = | 
| 
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
 paulson <lp15@cam.ac.uk> parents: 
59615diff
changeset | 750 | ((fact(Suc n)) *(f(Suc n) u *(z-u) ^ n)) / (fact n) + | 
| 
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
 paulson <lp15@cam.ac.uk> parents: 
59615diff
changeset | 751 | ((fact(Suc n)) *(f(Suc(Suc n)) u *((z-u) *(z-u) ^ n)) / (fact(Suc n))) - | 
| 
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
 paulson <lp15@cam.ac.uk> parents: 
59615diff
changeset | 752 | ((fact(Suc n)) *(f(Suc n) u *(of_nat(Suc n) *(z-u) ^ n))) / (fact(Suc n))" | 
| 63367 
6c731c8b7f03
simplified definitions of combinatorial functions
 haftmann parents: 
63332diff
changeset | 753 | by (simp add: algebra_simps del: fact_Suc) | 
| 59730 
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
 paulson <lp15@cam.ac.uk> parents: 
59615diff
changeset | 754 | also have "... = ((fact (Suc n)) * (f (Suc n) u * (z-u) ^ n)) / (fact n) + | 
| 
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
 paulson <lp15@cam.ac.uk> parents: 
59615diff
changeset | 755 | (f (Suc (Suc n)) u * ((z-u) * (z-u) ^ n)) - | 
| 
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
 paulson <lp15@cam.ac.uk> parents: 
59615diff
changeset | 756 | (f (Suc n) u * ((1 + of_nat n) * (z-u) ^ n))" | 
| 63367 
6c731c8b7f03
simplified definitions of combinatorial functions
 haftmann parents: 
63332diff
changeset | 757 | by (simp del: fact_Suc) | 
| 59730 
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
 paulson <lp15@cam.ac.uk> parents: 
59615diff
changeset | 758 | also have "... = (of_nat (Suc n) * (f (Suc n) u * (z-u) ^ n)) + | 
| 
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
 paulson <lp15@cam.ac.uk> parents: 
59615diff
changeset | 759 | (f (Suc (Suc n)) u * ((z-u) * (z-u) ^ n)) - | 
| 
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
 paulson <lp15@cam.ac.uk> parents: 
59615diff
changeset | 760 | (f (Suc n) u * ((1 + of_nat n) * (z-u) ^ n))" | 
| 63367 
6c731c8b7f03
simplified definitions of combinatorial functions
 haftmann parents: 
63332diff
changeset | 761 | by (simp only: fact_Suc of_nat_mult ac_simps) simp | 
| 56215 | 762 | also have "... = f (Suc (Suc n)) u * ((z-u) * (z-u) ^ n)" | 
| 763 | by (simp add: algebra_simps) | |
| 764 | finally show ?thesis | |
| 63367 
6c731c8b7f03
simplified definitions of combinatorial functions
 haftmann parents: 
63332diff
changeset | 765 | by (simp add: mult_left_cancel [where c = "(fact (Suc n))", THEN iffD1] del: fact_Suc) | 
| 56215 | 766 | qed | 
| 767 | finally show ?case . | |
| 768 | qed | |
| 61609 
77b453bd616f
Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
 paulson <lp15@cam.ac.uk> parents: 
61531diff
changeset | 769 | then have "((\<lambda>v. (\<Sum>i\<le>n. f i v * (z - v)^i / (fact i))) | 
| 59730 
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
 paulson <lp15@cam.ac.uk> parents: 
59615diff
changeset | 770 | has_field_derivative f (Suc n) u * (z-u) ^ n / (fact n)) | 
| 68255 
009f783d1bac
small clean-up of Complex_Analysis_Basics
 paulson <lp15@cam.ac.uk> parents: 
68239diff
changeset | 771 | (at u within S)" | 
| 56381 
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
 hoelzl parents: 
56371diff
changeset | 772 | apply (intro derivative_eq_intros) | 
| 68255 
009f783d1bac
small clean-up of Complex_Analysis_Basics
 paulson <lp15@cam.ac.uk> parents: 
68239diff
changeset | 773 | apply (blast intro: assms \<open>u \<in> S\<close>) | 
| 56215 | 774 | apply (rule refl)+ | 
| 775 | apply (auto simp: field_simps) | |
| 776 | done | |
| 777 | } note sum_deriv = this | |
| 778 |   { fix u
 | |
| 779 | assume u: "u \<in> closed_segment w z" | |
| 68255 
009f783d1bac
small clean-up of Complex_Analysis_Basics
 paulson <lp15@cam.ac.uk> parents: 
68239diff
changeset | 780 | then have us: "u \<in> S" | 
| 56215 | 781 | by (metis wzs subsetD) | 
| 66252 | 782 | have "norm (f (Suc n) u) * norm (z - u) ^ n \<le> norm (f (Suc n) u) * norm (u - z) ^ n" | 
| 56215 | 783 | by (metis norm_minus_commute order_refl) | 
| 66252 | 784 | also have "... \<le> norm (f (Suc n) u) * norm (z - w) ^ n" | 
| 56215 | 785 | by (metis mult_left_mono norm_ge_zero power_mono segment_bound [OF u]) | 
| 66252 | 786 | also have "... \<le> B * norm (z - w) ^ n" | 
| 56215 | 787 | by (metis norm_ge_zero zero_le_power mult_right_mono B [OF us]) | 
| 66252 | 788 | finally have "norm (f (Suc n) u) * norm (z - u) ^ n \<le> B * norm (z - w) ^ n" . | 
| 56215 | 789 | } note cmod_bound = this | 
| 59730 
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
 paulson <lp15@cam.ac.uk> parents: 
59615diff
changeset | 790 | have "(\<Sum>i\<le>n. f i z * (z - z) ^ i / (fact i)) = (\<Sum>i\<le>n. (f i z / (fact i)) * 0 ^ i)" | 
| 56215 | 791 | by simp | 
| 59730 
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
 paulson <lp15@cam.ac.uk> parents: 
59615diff
changeset | 792 | also have "\<dots> = f 0 z / (fact 0)" | 
| 64267 | 793 | by (subst sum_zero_power) simp | 
| 66252 | 794 | finally have "norm (f 0 z - (\<Sum>i\<le>n. f i w * (z - w) ^ i / (fact i))) | 
| 795 | \<le> norm ((\<Sum>i\<le>n. f i w * (z - w) ^ i / (fact i)) - | |
| 59730 
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
 paulson <lp15@cam.ac.uk> parents: 
59615diff
changeset | 796 | (\<Sum>i\<le>n. f i z * (z - z) ^ i / (fact i)))" | 
| 56215 | 797 | by (simp add: norm_minus_commute) | 
| 66252 | 798 | also have "... \<le> B * norm (z - w) ^ n / (fact n) * norm (w - z)" | 
| 62534 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 799 | apply (rule field_differentiable_bound | 
| 59730 
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
 paulson <lp15@cam.ac.uk> parents: 
59615diff
changeset | 800 | [where f' = "\<lambda>w. f (Suc n) w * (z - w)^n / (fact n)" | 
| 68255 
009f783d1bac
small clean-up of Complex_Analysis_Basics
 paulson <lp15@cam.ac.uk> parents: 
68239diff
changeset | 801 | and S = "closed_segment w z", OF convex_closed_segment]) | 
| 71633 | 802 | apply (auto simp: DERIV_subset [OF sum_deriv wzs] | 
| 56215 | 803 | norm_divide norm_mult norm_power divide_le_cancel cmod_bound) | 
| 804 | done | |
| 66252 | 805 | also have "... \<le> B * norm (z - w) ^ Suc n / (fact n)" | 
| 61609 
77b453bd616f
Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
 paulson <lp15@cam.ac.uk> parents: 
61531diff
changeset | 806 | by (simp add: algebra_simps norm_minus_commute) | 
| 56215 | 807 | finally show ?thesis . | 
| 808 | qed | |
| 809 | ||
| 69529 | 810 | lemma complex_Taylor: | 
| 68255 
009f783d1bac
small clean-up of Complex_Analysis_Basics
 paulson <lp15@cam.ac.uk> parents: 
68239diff
changeset | 811 | assumes S: "convex S" | 
| 
009f783d1bac
small clean-up of Complex_Analysis_Basics
 paulson <lp15@cam.ac.uk> parents: 
68239diff
changeset | 812 | and f: "\<And>i x. x \<in> S \<Longrightarrow> i \<le> n \<Longrightarrow> (f i has_field_derivative f (Suc i) x) (at x within S)" | 
| 
009f783d1bac
small clean-up of Complex_Analysis_Basics
 paulson <lp15@cam.ac.uk> parents: 
68239diff
changeset | 813 | and B: "\<And>x. x \<in> S \<Longrightarrow> cmod (f (Suc n) x) \<le> B" | 
| 
009f783d1bac
small clean-up of Complex_Analysis_Basics
 paulson <lp15@cam.ac.uk> parents: 
68239diff
changeset | 814 | and w: "w \<in> S" | 
| 
009f783d1bac
small clean-up of Complex_Analysis_Basics
 paulson <lp15@cam.ac.uk> parents: 
68239diff
changeset | 815 | and z: "z \<in> S" | 
| 66252 | 816 | shows "cmod(f 0 z - (\<Sum>i\<le>n. f i w * (z-w) ^ i / (fact i))) | 
| 817 | \<le> B * cmod(z - w)^(Suc n) / fact n" | |
| 69529 | 818 | using assms by (rule field_Taylor) | 
| 66252 | 819 | |
| 820 | ||
| 62408 
86f27b264d3d
Conformal_mappings: a big development in complex analysis (+ some lemmas)
 paulson <lp15@cam.ac.uk> parents: 
62397diff
changeset | 821 | text\<open>Something more like the traditional MVT for real components\<close> | 
| 56370 
7c717ba55a0b
reorder Complex_Analysis_Basics; rename DD to deriv
 hoelzl parents: 
56369diff
changeset | 822 | |
| 56238 
5d147e1e18d1
a few new lemmas and generalisations of old ones
 paulson <lp15@cam.ac.uk> parents: 
56223diff
changeset | 823 | lemma complex_mvt_line: | 
| 56369 
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
 hoelzl parents: 
56332diff
changeset | 824 | assumes "\<And>u. u \<in> closed_segment w z \<Longrightarrow> (f has_field_derivative f'(u)) (at u)" | 
| 61518 
ff12606337e9
new lemmas about topology, etc., for Cauchy integral formula
 paulson parents: 
61235diff
changeset | 825 | shows "\<exists>u. u \<in> closed_segment w z \<and> Re(f z) - Re(f w) = Re(f'(u) * (z - w))" | 
| 56238 
5d147e1e18d1
a few new lemmas and generalisations of old ones
 paulson <lp15@cam.ac.uk> parents: 
56223diff
changeset | 826 | proof - | 
| 
5d147e1e18d1
a few new lemmas and generalisations of old ones
 paulson <lp15@cam.ac.uk> parents: 
56223diff
changeset | 827 | have twz: "\<And>t. (1 - t) *\<^sub>R w + t *\<^sub>R z = w + t *\<^sub>R (z - w)" | 
| 
5d147e1e18d1
a few new lemmas and generalisations of old ones
 paulson <lp15@cam.ac.uk> parents: 
56223diff
changeset | 828 | by (simp add: real_vector.scale_left_diff_distrib real_vector.scale_right_diff_distrib) | 
| 56381 
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
 hoelzl parents: 
56371diff
changeset | 829 | note assms[unfolded has_field_derivative_def, derivative_intros] | 
| 56238 
5d147e1e18d1
a few new lemmas and generalisations of old ones
 paulson <lp15@cam.ac.uk> parents: 
56223diff
changeset | 830 | show ?thesis | 
| 
5d147e1e18d1
a few new lemmas and generalisations of old ones
 paulson <lp15@cam.ac.uk> parents: 
56223diff
changeset | 831 | apply (cut_tac mvt_simple | 
| 
5d147e1e18d1
a few new lemmas and generalisations of old ones
 paulson <lp15@cam.ac.uk> parents: 
56223diff
changeset | 832 | [of 0 1 "Re o f o (\<lambda>t. (1 - t) *\<^sub>R w + t *\<^sub>R z)" | 
| 
5d147e1e18d1
a few new lemmas and generalisations of old ones
 paulson <lp15@cam.ac.uk> parents: 
56223diff
changeset | 833 | "\<lambda>u. Re o (\<lambda>h. f'((1 - u) *\<^sub>R w + u *\<^sub>R z) * h) o (\<lambda>t. t *\<^sub>R (z - w))"]) | 
| 
5d147e1e18d1
a few new lemmas and generalisations of old ones
 paulson <lp15@cam.ac.uk> parents: 
56223diff
changeset | 834 | apply auto | 
| 
5d147e1e18d1
a few new lemmas and generalisations of old ones
 paulson <lp15@cam.ac.uk> parents: 
56223diff
changeset | 835 | apply (rule_tac x="(1 - x) *\<^sub>R w + x *\<^sub>R z" in exI) | 
| 61518 
ff12606337e9
new lemmas about topology, etc., for Cauchy integral formula
 paulson parents: 
61235diff
changeset | 836 | apply (auto simp: closed_segment_def twz) [] | 
| 67979 
53323937ee25
new material about vec, real^1, etc.
 paulson <lp15@cam.ac.uk> parents: 
67968diff
changeset | 837 | apply (intro derivative_eq_intros has_derivative_at_withinI, simp_all) | 
| 56369 
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
 hoelzl parents: 
56332diff
changeset | 838 | apply (simp add: fun_eq_iff real_vector.scale_right_diff_distrib) | 
| 61518 
ff12606337e9
new lemmas about topology, etc., for Cauchy integral formula
 paulson parents: 
61235diff
changeset | 839 | apply (force simp: twz closed_segment_def) | 
| 56238 
5d147e1e18d1
a few new lemmas and generalisations of old ones
 paulson <lp15@cam.ac.uk> parents: 
56223diff
changeset | 840 | done | 
| 
5d147e1e18d1
a few new lemmas and generalisations of old ones
 paulson <lp15@cam.ac.uk> parents: 
56223diff
changeset | 841 | qed | 
| 
5d147e1e18d1
a few new lemmas and generalisations of old ones
 paulson <lp15@cam.ac.uk> parents: 
56223diff
changeset | 842 | |
| 69529 | 843 | lemma complex_Taylor_mvt: | 
| 56238 
5d147e1e18d1
a few new lemmas and generalisations of old ones
 paulson <lp15@cam.ac.uk> parents: 
56223diff
changeset | 844 | assumes "\<And>i x. \<lbrakk>x \<in> closed_segment w z; i \<le> n\<rbrakk> \<Longrightarrow> ((f i) has_field_derivative f (Suc i) x) (at x)" | 
| 
5d147e1e18d1
a few new lemmas and generalisations of old ones
 paulson <lp15@cam.ac.uk> parents: 
56223diff
changeset | 845 | shows "\<exists>u. u \<in> closed_segment w z \<and> | 
| 
5d147e1e18d1
a few new lemmas and generalisations of old ones
 paulson <lp15@cam.ac.uk> parents: 
56223diff
changeset | 846 | Re (f 0 z) = | 
| 59730 
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
 paulson <lp15@cam.ac.uk> parents: 
59615diff
changeset | 847 | Re ((\<Sum>i = 0..n. f i w * (z - w) ^ i / (fact i)) + | 
| 
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
 paulson <lp15@cam.ac.uk> parents: 
59615diff
changeset | 848 | (f (Suc n) u * (z-u)^n / (fact n)) * (z - w))" | 
| 56238 
5d147e1e18d1
a few new lemmas and generalisations of old ones
 paulson <lp15@cam.ac.uk> parents: 
56223diff
changeset | 849 | proof - | 
| 
5d147e1e18d1
a few new lemmas and generalisations of old ones
 paulson <lp15@cam.ac.uk> parents: 
56223diff
changeset | 850 |   { fix u
 | 
| 
5d147e1e18d1
a few new lemmas and generalisations of old ones
 paulson <lp15@cam.ac.uk> parents: 
56223diff
changeset | 851 | assume u: "u \<in> closed_segment w z" | 
| 
5d147e1e18d1
a few new lemmas and generalisations of old ones
 paulson <lp15@cam.ac.uk> parents: 
56223diff
changeset | 852 | have "(\<Sum>i = 0..n. | 
| 
5d147e1e18d1
a few new lemmas and generalisations of old ones
 paulson <lp15@cam.ac.uk> parents: 
56223diff
changeset | 853 | (f (Suc i) u * (z-u) ^ i - of_nat i * (f i u * (z-u) ^ (i - Suc 0))) / | 
| 59730 
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
 paulson <lp15@cam.ac.uk> parents: 
59615diff
changeset | 854 | (fact i)) = | 
| 56238 
5d147e1e18d1
a few new lemmas and generalisations of old ones
 paulson <lp15@cam.ac.uk> parents: 
56223diff
changeset | 855 | f (Suc 0) u - | 
| 
5d147e1e18d1
a few new lemmas and generalisations of old ones
 paulson <lp15@cam.ac.uk> parents: 
56223diff
changeset | 856 | (f (Suc (Suc n)) u * ((z-u) ^ Suc n) - (of_nat (Suc n)) * (z-u) ^ n * f (Suc n) u) / | 
| 59730 
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
 paulson <lp15@cam.ac.uk> parents: 
59615diff
changeset | 857 | (fact (Suc n)) + | 
| 56238 
5d147e1e18d1
a few new lemmas and generalisations of old ones
 paulson <lp15@cam.ac.uk> parents: 
56223diff
changeset | 858 | (\<Sum>i = 0..n. | 
| 
5d147e1e18d1
a few new lemmas and generalisations of old ones
 paulson <lp15@cam.ac.uk> parents: 
56223diff
changeset | 859 | (f (Suc (Suc i)) u * ((z-u) ^ Suc i) - of_nat (Suc i) * (f (Suc i) u * (z-u) ^ i)) / | 
| 59730 
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
 paulson <lp15@cam.ac.uk> parents: 
59615diff
changeset | 860 | (fact (Suc i)))" | 
| 64267 | 861 | by (subst sum_Suc_reindex) simp | 
| 56238 
5d147e1e18d1
a few new lemmas and generalisations of old ones
 paulson <lp15@cam.ac.uk> parents: 
56223diff
changeset | 862 | also have "... = f (Suc 0) u - | 
| 
5d147e1e18d1
a few new lemmas and generalisations of old ones
 paulson <lp15@cam.ac.uk> parents: 
56223diff
changeset | 863 | (f (Suc (Suc n)) u * ((z-u) ^ Suc n) - (of_nat (Suc n)) * (z-u) ^ n * f (Suc n) u) / | 
| 59730 
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
 paulson <lp15@cam.ac.uk> parents: 
59615diff
changeset | 864 | (fact (Suc n)) + | 
| 56238 
5d147e1e18d1
a few new lemmas and generalisations of old ones
 paulson <lp15@cam.ac.uk> parents: 
56223diff
changeset | 865 | (\<Sum>i = 0..n. | 
| 61609 
77b453bd616f
Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
 paulson <lp15@cam.ac.uk> parents: 
61531diff
changeset | 866 | f (Suc (Suc i)) u * ((z-u) ^ Suc i) / (fact (Suc i)) - | 
| 59730 
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
 paulson <lp15@cam.ac.uk> parents: 
59615diff
changeset | 867 | f (Suc i) u * (z-u) ^ i / (fact i))" | 
| 57514 
bdc2c6b40bf2
prefer ac_simps collections over separate name bindings for add and mult
 haftmann parents: 
56889diff
changeset | 868 | by (simp only: diff_divide_distrib fact_cancel ac_simps) | 
| 56238 
5d147e1e18d1
a few new lemmas and generalisations of old ones
 paulson <lp15@cam.ac.uk> parents: 
56223diff
changeset | 869 | also have "... = f (Suc 0) u - | 
| 
5d147e1e18d1
a few new lemmas and generalisations of old ones
 paulson <lp15@cam.ac.uk> parents: 
56223diff
changeset | 870 | (f (Suc (Suc n)) u * (z-u) ^ Suc n - of_nat (Suc n) * (z-u) ^ n * f (Suc n) u) / | 
| 59730 
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
 paulson <lp15@cam.ac.uk> parents: 
59615diff
changeset | 871 | (fact (Suc n)) + | 
| 
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
 paulson <lp15@cam.ac.uk> parents: 
59615diff
changeset | 872 | f (Suc (Suc n)) u * (z-u) ^ Suc n / (fact (Suc n)) - f (Suc 0) u" | 
| 64267 | 873 | by (subst sum_Suc_diff) auto | 
| 59730 
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
 paulson <lp15@cam.ac.uk> parents: 
59615diff
changeset | 874 | also have "... = f (Suc n) u * (z-u) ^ n / (fact n)" | 
| 56238 
5d147e1e18d1
a few new lemmas and generalisations of old ones
 paulson <lp15@cam.ac.uk> parents: 
56223diff
changeset | 875 | by (simp only: algebra_simps diff_divide_distrib fact_cancel) | 
| 61609 
77b453bd616f
Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
 paulson <lp15@cam.ac.uk> parents: 
61531diff
changeset | 876 | finally have "(\<Sum>i = 0..n. (f (Suc i) u * (z - u) ^ i | 
| 59730 
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
 paulson <lp15@cam.ac.uk> parents: 
59615diff
changeset | 877 | - of_nat i * (f i u * (z-u) ^ (i - Suc 0))) / (fact i)) = | 
| 
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
 paulson <lp15@cam.ac.uk> parents: 
59615diff
changeset | 878 | f (Suc n) u * (z - u) ^ n / (fact n)" . | 
| 
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
 paulson <lp15@cam.ac.uk> parents: 
59615diff
changeset | 879 | then have "((\<lambda>u. \<Sum>i = 0..n. f i u * (z - u) ^ i / (fact i)) has_field_derivative | 
| 
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
 paulson <lp15@cam.ac.uk> parents: 
59615diff
changeset | 880 | f (Suc n) u * (z - u) ^ n / (fact n)) (at u)" | 
| 56381 
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
 hoelzl parents: 
56371diff
changeset | 881 | apply (intro derivative_eq_intros)+ | 
| 56238 
5d147e1e18d1
a few new lemmas and generalisations of old ones
 paulson <lp15@cam.ac.uk> parents: 
56223diff
changeset | 882 | apply (force intro: u assms) | 
| 
5d147e1e18d1
a few new lemmas and generalisations of old ones
 paulson <lp15@cam.ac.uk> parents: 
56223diff
changeset | 883 | apply (rule refl)+ | 
| 57514 
bdc2c6b40bf2
prefer ac_simps collections over separate name bindings for add and mult
 haftmann parents: 
56889diff
changeset | 884 | apply (auto simp: ac_simps) | 
| 56238 
5d147e1e18d1
a few new lemmas and generalisations of old ones
 paulson <lp15@cam.ac.uk> parents: 
56223diff
changeset | 885 | done | 
| 
5d147e1e18d1
a few new lemmas and generalisations of old ones
 paulson <lp15@cam.ac.uk> parents: 
56223diff
changeset | 886 | } | 
| 
5d147e1e18d1
a few new lemmas and generalisations of old ones
 paulson <lp15@cam.ac.uk> parents: 
56223diff
changeset | 887 | then show ?thesis | 
| 59730 
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
 paulson <lp15@cam.ac.uk> parents: 
59615diff
changeset | 888 | apply (cut_tac complex_mvt_line [of w z "\<lambda>u. \<Sum>i = 0..n. f i u * (z-u) ^ i / (fact i)" | 
| 
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
 paulson <lp15@cam.ac.uk> parents: 
59615diff
changeset | 889 | "\<lambda>u. (f (Suc n) u * (z-u)^n / (fact n))"]) | 
| 56238 
5d147e1e18d1
a few new lemmas and generalisations of old ones
 paulson <lp15@cam.ac.uk> parents: 
56223diff
changeset | 890 | apply (auto simp add: intro: open_closed_segment) | 
| 
5d147e1e18d1
a few new lemmas and generalisations of old ones
 paulson <lp15@cam.ac.uk> parents: 
56223diff
changeset | 891 | done | 
| 
5d147e1e18d1
a few new lemmas and generalisations of old ones
 paulson <lp15@cam.ac.uk> parents: 
56223diff
changeset | 892 | qed | 
| 
5d147e1e18d1
a few new lemmas and generalisations of old ones
 paulson <lp15@cam.ac.uk> parents: 
56223diff
changeset | 893 | |
| 60017 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59730diff
changeset | 894 | |
| 56215 | 895 | end |