src/HOL/Analysis/Winding_Numbers.thy
author wenzelm
Wed, 23 Jan 2019 23:12:40 +0100
changeset 69729 4591221824f6
parent 69661 a03a63b81f44
child 69918 eddcc7c726f3
permissions -rw-r--r--
obsolete -- updated in Poly/ML;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
65039
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
     1
section \<open>Winding Numbers\<close>
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
     2
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
     3
text\<open>By John Harrison et al.  Ported from HOL Light by L C Paulson (2017)\<close>
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
     4
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
     5
theory Winding_Numbers
66826
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
     6
imports Polytope Jordan_Curve Riemann_Mapping
65039
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
     7
begin
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
     8
66826
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
     9
lemma simply_connected_inside_simple_path:
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
    10
  fixes p :: "real \<Rightarrow> complex"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
    11
  shows "simple_path p \<Longrightarrow> simply_connected(inside(path_image p))"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
    12
  using Jordan_inside_outside connected_simple_path_image inside_simple_curve_imp_closed simply_connected_eq_frontier_properties
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
    13
  by fastforce
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
    14
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
    15
lemma simply_connected_Int:
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
    16
  fixes S :: "complex set"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
    17
  assumes "open S" "open T" "simply_connected S" "simply_connected T" "connected (S \<inter> T)"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
    18
  shows "simply_connected (S \<inter> T)"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
    19
  using assms by (force simp: simply_connected_eq_winding_number_zero open_Int)
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
    20
65039
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    21
subsection\<open>Winding number for a triangle\<close>
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    22
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    23
lemma wn_triangle1:
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    24
  assumes "0 \<in> interior(convex hull {a,b,c})"
69508
2a4c8a2a3f8e tuned headers; ~ -> \<not>
nipkow
parents: 69423
diff changeset
    25
    shows "\<not> (Im(a/b) \<le> 0 \<and> 0 \<le> Im(b/c))"
65039
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    26
proof -
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    27
  { assume 0: "Im(a/b) \<le> 0" "0 \<le> Im(b/c)"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    28
    have "0 \<notin> interior (convex hull {a,b,c})"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    29
    proof (cases "a=0 \<or> b=0 \<or> c=0")
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    30
      case True then show ?thesis
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    31
        by (auto simp: not_in_interior_convex_hull_3)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    32
    next
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    33
      case False
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    34
      then have "b \<noteq> 0" by blast
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    35
      { fix x y::complex and u::real
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    36
        assume eq_f': "Im x * Re b \<le> Im b * Re x" "Im y * Re b \<le> Im b * Re y" "0 \<le> u" "u \<le> 1"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    37
        then have "((1 - u) * Im x) * Re b \<le> Im b * ((1 - u) * Re x)"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    38
          by (simp add: mult_left_mono mult.assoc mult.left_commute [of "Im b"])
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    39
        then have "((1 - u) * Im x + u * Im y) * Re b \<le> Im b * ((1 - u) * Re x + u * Re y)"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    40
          using eq_f' ordered_comm_semiring_class.comm_mult_left_mono
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    41
          by (fastforce simp add: algebra_simps)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    42
      }
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    43
      with False 0 have "convex hull {a,b,c} \<le> {z. Im z * Re b \<le> Im b * Re z}"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    44
        apply (simp add: Complex.Im_divide divide_simps complex_neq_0 [symmetric])
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    45
        apply (simp add: algebra_simps)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    46
        apply (rule hull_minimal)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    47
        apply (auto simp: algebra_simps convex_alt)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    48
        done
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    49
      moreover have "0 \<notin> interior({z. Im z * Re b \<le> Im b * Re z})"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    50
      proof
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    51
        assume "0 \<in> interior {z. Im z * Re b \<le> Im b * Re z}"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    52
        then obtain e where "e>0" and e: "ball 0 e \<subseteq> {z. Im z * Re b \<le> Im b * Re z}"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    53
          by (meson mem_interior)
65064
a4abec71279a Renamed ii to imaginary_unit in order to free up ii as a variable name. Also replaced some legacy def commands
paulson <lp15@cam.ac.uk>
parents: 65039
diff changeset
    54
        define z where "z \<equiv> - sgn (Im b) * (e/3) + sgn (Re b) * (e/3) * \<i>"
65039
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    55
        have "z \<in> ball 0 e"
66304
cde6ceffcbc7 isabelle update_cartouches -c -t;
wenzelm
parents: 65064
diff changeset
    56
          using \<open>e>0\<close>
65039
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    57
          apply (simp add: z_def dist_norm)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    58
          apply (rule le_less_trans [OF norm_triangle_ineq4])
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    59
          apply (simp add: norm_mult abs_sgn_eq)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    60
          done
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    61
        then have "z \<in> {z. Im z * Re b \<le> Im b * Re z}"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    62
          using e by blast
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    63
        then show False
66304
cde6ceffcbc7 isabelle update_cartouches -c -t;
wenzelm
parents: 65064
diff changeset
    64
          using \<open>e>0\<close> \<open>b \<noteq> 0\<close>
65039
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    65
          apply (simp add: z_def dist_norm sgn_if less_eq_real_def mult_less_0_iff complex.expand split: if_split_asm)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    66
          apply (auto simp: algebra_simps)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    67
          apply (meson less_asym less_trans mult_pos_pos neg_less_0_iff_less)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    68
          by (metis less_asym mult_pos_pos neg_less_0_iff_less)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    69
      qed
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    70
      ultimately show ?thesis
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    71
        using interior_mono by blast
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    72
    qed
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    73
  } with assms show ?thesis by blast
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    74
qed
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    75
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    76
lemma wn_triangle2_0:
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    77
  assumes "0 \<in> interior(convex hull {a,b,c})"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    78
  shows
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    79
       "0 < Im((b - a) * cnj (b)) \<and>
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    80
        0 < Im((c - b) * cnj (c)) \<and>
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    81
        0 < Im((a - c) * cnj (a))
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    82
        \<or>
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    83
        Im((b - a) * cnj (b)) < 0 \<and>
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    84
        0 < Im((b - c) * cnj (b)) \<and>
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    85
        0 < Im((a - b) * cnj (a)) \<and>
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    86
        0 < Im((c - a) * cnj (c))"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    87
proof -
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    88
  have [simp]: "{b,c,a} = {a,b,c}" "{c,a,b} = {a,b,c}" by auto
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    89
  show ?thesis
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    90
    using wn_triangle1 [OF assms] wn_triangle1 [of b c a] wn_triangle1 [of c a b] assms
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    91
    by (auto simp: algebra_simps Im_complex_div_gt_0 Im_complex_div_lt_0 not_le not_less)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    92
qed
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    93
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    94
lemma wn_triangle2:
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    95
  assumes "z \<in> interior(convex hull {a,b,c})"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    96
   shows "0 < Im((b - a) * cnj (b - z)) \<and>
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    97
          0 < Im((c - b) * cnj (c - z)) \<and>
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    98
          0 < Im((a - c) * cnj (a - z))
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
    99
          \<or>
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   100
          Im((b - a) * cnj (b - z)) < 0 \<and>
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   101
          0 < Im((b - c) * cnj (b - z)) \<and>
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   102
          0 < Im((a - b) * cnj (a - z)) \<and>
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   103
          0 < Im((c - a) * cnj (c - z))"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   104
proof -
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   105
  have 0: "0 \<in> interior(convex hull {a-z, b-z, c-z})"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   106
    using assms convex_hull_translation [of "-z" "{a,b,c}"]
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   107
                interior_translation [of "-z"]
69661
a03a63b81f44 tuned proofs
haftmann
parents: 69508
diff changeset
   108
    by (simp cong: image_cong_simp)
65039
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   109
  show ?thesis using wn_triangle2_0 [OF 0]
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   110
    by simp
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   111
qed
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   112
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   113
lemma wn_triangle3:
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   114
  assumes z: "z \<in> interior(convex hull {a,b,c})"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   115
      and "0 < Im((b-a) * cnj (b-z))"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   116
          "0 < Im((c-b) * cnj (c-z))"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   117
          "0 < Im((a-c) * cnj (a-z))"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   118
    shows "winding_number (linepath a b +++ linepath b c +++ linepath c a) z = 1"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   119
proof -
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   120
  have znot[simp]: "z \<notin> closed_segment a b" "z \<notin> closed_segment b c" "z \<notin> closed_segment c a"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   121
    using z interior_of_triangle [of a b c]
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   122
    by (auto simp: closed_segment_def)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   123
  have gt0: "0 < Re (winding_number (linepath a b +++ linepath b c +++ linepath c a) z)"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   124
    using assms
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   125
    by (simp add: winding_number_linepath_pos_lt path_image_join winding_number_join_pos_combined)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   126
  have lt2: "Re (winding_number (linepath a b +++ linepath b c +++ linepath c a) z) < 2"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   127
    using winding_number_lt_half_linepath [of _ a b]
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   128
    using winding_number_lt_half_linepath [of _ b c]
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   129
    using winding_number_lt_half_linepath [of _ c a] znot
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   130
    apply (fastforce simp add: winding_number_join path_image_join)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   131
    done
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   132
  show ?thesis
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   133
    by (rule winding_number_eq_1) (simp_all add: path_image_join gt0 lt2)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   134
qed
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   135
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   136
proposition winding_number_triangle:
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   137
  assumes z: "z \<in> interior(convex hull {a,b,c})"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   138
    shows "winding_number(linepath a b +++ linepath b c +++ linepath c a) z =
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   139
           (if 0 < Im((b - a) * cnj (b - z)) then 1 else -1)"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   140
proof -
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   141
  have [simp]: "{a,c,b} = {a,b,c}"  by auto
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   142
  have znot[simp]: "z \<notin> closed_segment a b" "z \<notin> closed_segment b c" "z \<notin> closed_segment c a"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   143
    using z interior_of_triangle [of a b c]
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   144
    by (auto simp: closed_segment_def)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   145
  then have [simp]: "z \<notin> closed_segment b a" "z \<notin> closed_segment c b" "z \<notin> closed_segment a c"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   146
    using closed_segment_commute by blast+
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   147
  have *: "winding_number (linepath a b +++ linepath b c +++ linepath c a) z =
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   148
            winding_number (reversepath (linepath a c +++ linepath c b +++ linepath b a)) z"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   149
    by (simp add: reversepath_joinpaths winding_number_join not_in_path_image_join)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   150
  show ?thesis
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   151
    using wn_triangle2 [OF z] apply (rule disjE)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   152
    apply (simp add: wn_triangle3 z)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   153
    apply (simp add: path_image_join winding_number_reversepath * wn_triangle3 z)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   154
    done
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   155
qed
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   156
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   157
subsection\<open>Winding numbers for simple closed paths\<close>
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   158
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   159
lemma winding_number_from_innerpath:
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   160
  assumes "simple_path c1" and c1: "pathstart c1 = a" "pathfinish c1 = b"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   161
      and "simple_path c2" and c2: "pathstart c2 = a" "pathfinish c2 = b"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   162
      and "simple_path c" and c: "pathstart c = a" "pathfinish c = b"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   163
      and c1c2: "path_image c1 \<inter> path_image c2 = {a,b}"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   164
      and c1c:  "path_image c1 \<inter> path_image c = {a,b}"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   165
      and c2c:  "path_image c2 \<inter> path_image c = {a,b}"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   166
      and ne_12: "path_image c \<inter> inside(path_image c1 \<union> path_image c2) \<noteq> {}"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   167
      and z: "z \<in> inside(path_image c1 \<union> path_image c)"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   168
      and wn_d: "winding_number (c1 +++ reversepath c) z = d"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   169
      and "a \<noteq> b" "d \<noteq> 0"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   170
  obtains "z \<in> inside(path_image c1 \<union> path_image c2)" "winding_number (c1 +++ reversepath c2) z = d"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   171
proof -
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   172
  obtain 0: "inside(path_image c1 \<union> path_image c) \<inter> inside(path_image c2 \<union> path_image c) = {}"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   173
     and 1: "inside(path_image c1 \<union> path_image c) \<union> inside(path_image c2 \<union> path_image c) \<union>
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   174
             (path_image c - {a,b}) = inside(path_image c1 \<union> path_image c2)"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   175
    by (rule split_inside_simple_closed_curve
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   176
              [OF \<open>simple_path c1\<close> c1 \<open>simple_path c2\<close> c2 \<open>simple_path c\<close> c \<open>a \<noteq> b\<close> c1c2 c1c c2c ne_12])
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   177
  have znot: "z \<notin> path_image c"  "z \<notin> path_image c1" "z \<notin> path_image c2"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   178
    using union_with_outside z 1 by auto
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   179
  have wn_cc2: "winding_number (c +++ reversepath c2) z = 0"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   180
    apply (rule winding_number_zero_in_outside)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   181
    apply (simp_all add: \<open>simple_path c2\<close> c c2 \<open>simple_path c\<close> simple_path_imp_path path_image_join)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   182
    by (metis "0" ComplI UnE disjoint_iff_not_equal sup.commute union_with_inside z znot)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   183
  show ?thesis
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   184
  proof
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   185
    show "z \<in> inside (path_image c1 \<union> path_image c2)"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   186
      using "1" z by blast
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   187
    have "winding_number c1 z - winding_number c z = d "
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   188
      using assms znot
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   189
      by (metis wn_d winding_number_join simple_path_imp_path winding_number_reversepath add.commute path_image_reversepath path_reversepath pathstart_reversepath uminus_add_conv_diff)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   190
    then show "winding_number (c1 +++ reversepath c2) z = d"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   191
      using wn_cc2 by (simp add: winding_number_join simple_path_imp_path assms znot winding_number_reversepath)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   192
  qed
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   193
qed
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   194
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   195
lemma simple_closed_path_wn1:
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   196
  fixes a::complex and e::real
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   197
  assumes "0 < e"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   198
    and sp_pl: "simple_path(p +++ linepath (a - e) (a + e))"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   199
    and psp:   "pathstart p = a + e"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   200
    and pfp:   "pathfinish p = a - e"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   201
    and disj:  "ball a e \<inter> path_image p = {}"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   202
obtains z where "z \<in> inside (path_image (p +++ linepath (a - e) (a + e)))"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   203
                "cmod (winding_number (p +++ linepath (a - e) (a + e)) z) = 1"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   204
proof -
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   205
  have "arc p" and arc_lp: "arc (linepath (a - e) (a + e))"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   206
    and pap: "path_image p \<inter> path_image (linepath (a - e) (a + e)) \<subseteq> {pathstart p, a-e}"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   207
    using simple_path_join_loop_eq [of "linepath (a - e) (a + e)" p] assms by auto
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   208
  have mid_eq_a: "midpoint (a - e) (a + e) = a"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   209
    by (simp add: midpoint_def)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   210
  then have "a \<in> path_image(p +++ linepath (a - e) (a + e))"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   211
    apply (simp add: assms path_image_join)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   212
    by (metis midpoint_in_closed_segment)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   213
  have "a \<in> frontier(inside (path_image(p +++ linepath (a - e) (a + e))))"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   214
    apply (simp add: assms Jordan_inside_outside)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   215
    apply (simp_all add: assms path_image_join)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   216
    by (metis mid_eq_a midpoint_in_closed_segment)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   217
  with \<open>0 < e\<close> obtain c where c: "c \<in> inside (path_image(p +++ linepath (a - e) (a + e)))"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   218
                  and dac: "dist a c < e"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   219
    by (auto simp: frontier_straddle)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   220
  then have "c \<notin> path_image(p +++ linepath (a - e) (a + e))"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   221
    using inside_no_overlap by blast
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   222
  then have "c \<notin> path_image p"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   223
            "c \<notin> closed_segment (a - of_real e) (a + of_real e)"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   224
    by (simp_all add: assms path_image_join)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   225
  with \<open>0 < e\<close> dac have "c \<notin> affine hull {a - of_real e, a + of_real e}"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   226
    by (simp add: segment_as_ball not_le)
69508
2a4c8a2a3f8e tuned headers; ~ -> \<not>
nipkow
parents: 69423
diff changeset
   227
  with \<open>0 < e\<close> have *: "\<not> collinear {a - e, c,a + e}"
65039
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   228
    using collinear_3_affine_hull [of "a-e" "a+e"] by (auto simp: insert_commute)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   229
  have 13: "1/3 + 1/3 + 1/3 = (1::real)" by simp
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   230
  have "(1/3) *\<^sub>R (a - of_real e) + (1/3) *\<^sub>R c + (1/3) *\<^sub>R (a + of_real e) \<in> interior(convex hull {a - e, c, a + e})"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   231
    using interior_convex_hull_3_minimal [OF * DIM_complex]
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   232
    by clarsimp (metis 13 zero_less_divide_1_iff zero_less_numeral)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   233
  then obtain z where z: "z \<in> interior(convex hull {a - e, c, a + e})" by force
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   234
  have [simp]: "z \<notin> closed_segment (a - e) c"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   235
    by (metis DIM_complex Diff_iff IntD2 inf_sup_absorb interior_of_triangle z)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   236
  have [simp]: "z \<notin> closed_segment (a + e) (a - e)"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   237
    by (metis DIM_complex DiffD2 Un_iff interior_of_triangle z)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   238
  have [simp]: "z \<notin> closed_segment c (a + e)"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   239
    by (metis (no_types, lifting) DIM_complex DiffD2 Un_insert_right inf_sup_aci(5) insertCI interior_of_triangle mk_disjoint_insert z)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   240
  show thesis
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   241
  proof
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   242
    have "norm (winding_number (linepath (a - e) c +++ linepath c (a + e) +++ linepath (a + e) (a - e)) z) = 1"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   243
      using winding_number_triangle [OF z] by simp
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   244
    have zin: "z \<in> inside (path_image (linepath (a + e) (a - e)) \<union> path_image p)"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   245
      and zeq: "winding_number (linepath (a + e) (a - e) +++ reversepath p) z =
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   246
                winding_number (linepath (a - e) c +++ linepath c (a + e) +++ linepath (a + e) (a - e)) z"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   247
    proof (rule winding_number_from_innerpath
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   248
        [of "linepath (a + e) (a - e)" "a+e" "a-e" p
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   249
          "linepath (a + e) c +++ linepath c (a - e)" z
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   250
          "winding_number (linepath (a - e)  c +++ linepath  c (a + e) +++ linepath (a + e) (a - e)) z"])
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   251
      show sp_aec: "simple_path (linepath (a + e) c +++ linepath c (a - e))"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   252
      proof (rule arc_imp_simple_path [OF arc_join])
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   253
        show "arc (linepath (a + e) c)"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   254
          by (metis \<open>c \<notin> path_image p\<close> arc_linepath pathstart_in_path_image psp)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   255
        show "arc (linepath c (a - e))"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   256
          by (metis \<open>c \<notin> path_image p\<close> arc_linepath pathfinish_in_path_image pfp)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   257
        show "path_image (linepath (a + e) c) \<inter> path_image (linepath c (a - e)) \<subseteq> {pathstart (linepath c (a - e))}"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   258
          by clarsimp (metis "*" IntI Int_closed_segment closed_segment_commute singleton_iff)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   259
      qed auto
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   260
      show "simple_path p"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   261
        using \<open>arc p\<close> arc_simple_path by blast
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   262
      show sp_ae2: "simple_path (linepath (a + e) (a - e))"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   263
        using \<open>arc p\<close> arc_distinct_ends pfp psp by fastforce
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   264
      show pa: "pathfinish (linepath (a + e) (a - e)) = a - e"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   265
           "pathstart (linepath (a + e) c +++ linepath c (a - e)) = a + e"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   266
           "pathfinish (linepath (a + e) c +++ linepath c (a - e)) = a - e"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   267
           "pathstart p = a + e" "pathfinish p = a - e"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   268
           "pathstart (linepath (a + e) (a - e)) = a + e"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   269
        by (simp_all add: assms)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   270
      show 1: "path_image (linepath (a + e) (a - e)) \<inter> path_image p = {a + e, a - e}"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   271
      proof
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   272
        show "path_image (linepath (a + e) (a - e)) \<inter> path_image p \<subseteq> {a + e, a - e}"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   273
          using pap closed_segment_commute psp segment_convex_hull by fastforce
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   274
        show "{a + e, a - e} \<subseteq> path_image (linepath (a + e) (a - e)) \<inter> path_image p"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   275
          using pap pathfinish_in_path_image pathstart_in_path_image pfp psp by fastforce
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   276
      qed
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   277
      show 2: "path_image (linepath (a + e) (a - e)) \<inter> path_image (linepath (a + e) c +++ linepath c (a - e)) =
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   278
               {a + e, a - e}"  (is "?lhs = ?rhs")
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   279
      proof
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   280
        have "\<not> collinear {c, a + e, a - e}"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   281
          using * by (simp add: insert_commute)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   282
        then have "convex hull {a + e, a - e} \<inter> convex hull {a + e, c} = {a + e}"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   283
                  "convex hull {a + e, a - e} \<inter> convex hull {c, a - e} = {a - e}"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   284
          by (metis (full_types) Int_closed_segment insert_commute segment_convex_hull)+
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   285
        then show "?lhs \<subseteq> ?rhs"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   286
          by (metis Int_Un_distrib equalityD1 insert_is_Un path_image_join path_image_linepath path_join_eq path_linepath segment_convex_hull simple_path_def sp_aec)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   287
        show "?rhs \<subseteq> ?lhs"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   288
          using segment_convex_hull by (simp add: path_image_join)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   289
      qed
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   290
      have "path_image p \<inter> path_image (linepath (a + e) c) \<subseteq> {a + e}"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   291
      proof (clarsimp simp: path_image_join)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   292
        fix x
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   293
        assume "x \<in> path_image p" and x_ac: "x \<in> closed_segment (a + e) c"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   294
        then have "dist x a \<ge> e"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   295
          by (metis IntI all_not_in_conv disj dist_commute mem_ball not_less)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   296
        with x_ac dac \<open>e > 0\<close> show "x = a + e"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   297
          by (auto simp: norm_minus_commute dist_norm closed_segment_eq_open dest: open_segment_furthest_le [where y=a])
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   298
      qed
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   299
      moreover
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   300
      have "path_image p \<inter> path_image (linepath c (a - e)) \<subseteq> {a - e}"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   301
      proof (clarsimp simp: path_image_join)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   302
        fix x
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   303
        assume "x \<in> path_image p" and x_ac: "x \<in> closed_segment c (a - e)"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   304
        then have "dist x a \<ge> e"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   305
          by (metis IntI all_not_in_conv disj dist_commute mem_ball not_less)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   306
        with x_ac dac \<open>e > 0\<close> show "x = a - e"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   307
          by (auto simp: norm_minus_commute dist_norm closed_segment_eq_open dest: open_segment_furthest_le [where y=a])
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   308
      qed
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   309
      ultimately
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   310
      have "path_image p \<inter> path_image (linepath (a + e) c +++ linepath c (a - e)) \<subseteq> {a + e, a - e}"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   311
        by (force simp: path_image_join)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   312
      then show 3: "path_image p \<inter> path_image (linepath (a + e) c +++ linepath c (a - e)) = {a + e, a - e}"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   313
        apply (rule equalityI)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   314
        apply (clarsimp simp: path_image_join)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   315
        apply (metis pathstart_in_path_image psp pathfinish_in_path_image pfp)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   316
        done
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   317
      show 4: "path_image (linepath (a + e) c +++ linepath c (a - e)) \<inter>
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   318
               inside (path_image (linepath (a + e) (a - e)) \<union> path_image p) \<noteq> {}"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   319
        apply (clarsimp simp: path_image_join segment_convex_hull disjoint_iff_not_equal)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   320
        by (metis (no_types, hide_lams) UnI1 Un_commute c closed_segment_commute ends_in_segment(1) path_image_join
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   321
                  path_image_linepath pathstart_linepath pfp segment_convex_hull)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   322
      show zin_inside: "z \<in> inside (path_image (linepath (a + e) (a - e)) \<union>
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   323
                                    path_image (linepath (a + e) c +++ linepath c (a - e)))"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   324
        apply (simp add: path_image_join)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   325
        by (metis z inside_of_triangle DIM_complex Un_commute closed_segment_commute)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   326
      show 5: "winding_number
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   327
             (linepath (a + e) (a - e) +++ reversepath (linepath (a + e) c +++ linepath c (a - e))) z =
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   328
            winding_number (linepath (a - e) c +++ linepath c (a + e) +++ linepath (a + e) (a - e)) z"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   329
        by (simp add: reversepath_joinpaths path_image_join winding_number_join)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   330
      show 6: "winding_number (linepath (a - e) c +++ linepath c (a + e) +++ linepath (a + e) (a - e)) z \<noteq> 0"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   331
        by (simp add: winding_number_triangle z)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   332
      show "winding_number (linepath (a + e) (a - e) +++ reversepath p) z =
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   333
            winding_number (linepath (a - e) c +++ linepath c (a + e) +++ linepath (a + e) (a - e)) z"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   334
        by (metis 1 2 3 4 5 6 pa sp_aec sp_ae2 \<open>arc p\<close> \<open>simple_path p\<close> arc_distinct_ends winding_number_from_innerpath zin_inside)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   335
    qed (use assms \<open>e > 0\<close> in auto)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   336
    show "z \<in> inside (path_image (p +++ linepath (a - e) (a + e)))"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   337
      using zin by (simp add: assms path_image_join Un_commute closed_segment_commute)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   338
    then have "cmod (winding_number (p +++ linepath (a - e) (a + e)) z) =
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   339
               cmod ((winding_number(reversepath (p +++ linepath (a - e) (a + e))) z))"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   340
      apply (subst winding_number_reversepath)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   341
      using simple_path_imp_path sp_pl apply blast
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   342
       apply (metis IntI emptyE inside_no_overlap)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   343
      by (simp add: inside_def)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   344
    also have "... = cmod (winding_number(linepath (a + e) (a - e) +++ reversepath p) z)"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   345
      by (simp add: pfp reversepath_joinpaths)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   346
    also have "... = cmod (winding_number (linepath (a - e) c +++ linepath c (a + e) +++ linepath (a + e) (a - e)) z)"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   347
      by (simp add: zeq)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   348
    also have "... = 1"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   349
      using z by (simp add: interior_of_triangle winding_number_triangle)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   350
    finally show "cmod (winding_number (p +++ linepath (a - e) (a + e)) z) = 1" .
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   351
  qed
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   352
qed
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   353
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   354
lemma simple_closed_path_wn2:
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   355
  fixes a::complex and d e::real
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   356
  assumes "0 < d" "0 < e"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   357
    and sp_pl: "simple_path(p +++ linepath (a - d) (a + e))"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   358
    and psp:   "pathstart p = a + e"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   359
    and pfp:   "pathfinish p = a - d"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   360
obtains z where "z \<in> inside (path_image (p +++ linepath (a - d) (a + e)))"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   361
                "cmod (winding_number (p +++ linepath (a - d) (a + e)) z) = 1"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   362
proof -
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   363
  have [simp]: "a + of_real x \<in> closed_segment (a - \<alpha>) (a - \<beta>) \<longleftrightarrow> x \<in> closed_segment (-\<alpha>) (-\<beta>)" for x \<alpha> \<beta>::real
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   364
    using closed_segment_translation_eq [of a]
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   365
    by (metis (no_types, hide_lams) add_uminus_conv_diff of_real_minus of_real_closed_segment)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   366
  have [simp]: "a - of_real x \<in> closed_segment (a + \<alpha>) (a + \<beta>) \<longleftrightarrow> -x \<in> closed_segment \<alpha> \<beta>" for x \<alpha> \<beta>::real
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   367
    by (metis closed_segment_translation_eq diff_conv_add_uminus of_real_closed_segment of_real_minus)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   368
  have "arc p" and arc_lp: "arc (linepath (a - d) (a + e))" and "path p"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   369
    and pap: "path_image p \<inter> closed_segment (a - d) (a + e) \<subseteq> {a+e, a-d}"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   370
    using simple_path_join_loop_eq [of "linepath (a - d) (a + e)" p] assms arc_imp_path  by auto
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   371
  have "0 \<in> closed_segment (-d) e"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   372
    using \<open>0 < d\<close> \<open>0 < e\<close> closed_segment_eq_real_ivl by auto
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   373
  then have "a \<in> path_image (linepath (a - d) (a + e))"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   374
    using of_real_closed_segment [THEN iffD2]
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   375
    by (force dest: closed_segment_translation_eq [of a, THEN iffD2] simp del: of_real_closed_segment)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   376
  then have "a \<notin> path_image p"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   377
    using \<open>0 < d\<close> \<open>0 < e\<close> pap by auto
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   378
  then obtain k where "0 < k" and k: "ball a k \<inter> (path_image p) = {}"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   379
    using \<open>0 < e\<close> \<open>path p\<close> not_on_path_ball by blast
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   380
  define kde where "kde \<equiv> (min k (min d e)) / 2"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   381
  have "0 < kde" "kde < k" "kde < d" "kde < e"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   382
    using \<open>0 < k\<close> \<open>0 < d\<close> \<open>0 < e\<close> by (auto simp: kde_def)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   383
  let ?q = "linepath (a + kde) (a + e) +++ p +++ linepath (a - d) (a - kde)"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   384
  have "- kde \<in> closed_segment (-d) e"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   385
    using \<open>0 < kde\<close> \<open>kde < d\<close> \<open>kde < e\<close> closed_segment_eq_real_ivl by auto
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   386
  then have a_diff_kde: "a - kde \<in> closed_segment (a - d) (a + e)"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   387
    using of_real_closed_segment [THEN iffD2]
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   388
    by (force dest: closed_segment_translation_eq [of a, THEN iffD2] simp del: of_real_closed_segment)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   389
  then have clsub2: "closed_segment (a - d) (a - kde) \<subseteq> closed_segment (a - d) (a + e)"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   390
    by (simp add: subset_closed_segment)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   391
  then have "path_image p \<inter> closed_segment (a - d) (a - kde) \<subseteq> {a + e, a - d}"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   392
    using pap by force
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   393
  moreover
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   394
  have "a + e \<notin> path_image p \<inter> closed_segment (a - d) (a - kde)"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   395
    using \<open>0 < kde\<close> \<open>kde < d\<close> \<open>0 < e\<close> by (auto simp: closed_segment_eq_real_ivl)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   396
  ultimately have sub_a_diff_d: "path_image p \<inter> closed_segment (a - d) (a - kde) \<subseteq> {a - d}"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   397
    by blast
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   398
  have "kde \<in> closed_segment (-d) e"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   399
    using \<open>0 < kde\<close> \<open>kde < d\<close> \<open>kde < e\<close> closed_segment_eq_real_ivl by auto
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   400
  then have a_diff_kde: "a + kde \<in> closed_segment (a - d) (a + e)"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   401
    using of_real_closed_segment [THEN iffD2]
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   402
    by (force dest: closed_segment_translation_eq [of "a", THEN iffD2] simp del: of_real_closed_segment)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   403
  then have clsub1: "closed_segment (a + kde) (a + e) \<subseteq> closed_segment (a - d) (a + e)"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   404
    by (simp add: subset_closed_segment)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   405
  then have "closed_segment (a + kde) (a + e) \<inter> path_image p \<subseteq> {a + e, a - d}"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   406
    using pap by force
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   407
  moreover
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   408
  have "closed_segment (a + kde) (a + e) \<inter> closed_segment (a - d) (a - kde) = {}"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   409
  proof (clarsimp intro!: equals0I)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   410
    fix y
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   411
    assume y1: "y \<in> closed_segment (a + kde) (a + e)"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   412
       and y2: "y \<in> closed_segment (a - d) (a - kde)"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   413
    obtain u where u: "y = a + of_real u" and "0 < u"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   414
      using y1 \<open>0 < kde\<close> \<open>kde < e\<close> \<open>0 < e\<close> apply (clarsimp simp: in_segment)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   415
      apply (rule_tac u = "(1 - u)*kde + u*e" in that)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   416
       apply (auto simp: scaleR_conv_of_real algebra_simps)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   417
      by (meson le_less_trans less_add_same_cancel2 less_eq_real_def mult_left_mono)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   418
    moreover
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   419
    obtain v where v: "y = a + of_real v" and "v \<le> 0"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   420
      using y2 \<open>0 < kde\<close> \<open>0 < d\<close> \<open>0 < e\<close> apply (clarsimp simp: in_segment)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   421
      apply (rule_tac v = "- ((1 - u)*d + u*kde)" in that)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   422
       apply (force simp: scaleR_conv_of_real algebra_simps)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   423
      by (meson less_eq_real_def neg_le_0_iff_le segment_bound_lemma)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   424
    ultimately show False
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   425
      by auto
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   426
  qed
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   427
  moreover have "a - d \<notin> closed_segment (a + kde) (a + e)"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   428
    using \<open>0 < kde\<close> \<open>kde < d\<close> \<open>0 < e\<close> by (auto simp: closed_segment_eq_real_ivl)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   429
  ultimately have sub_a_plus_e:
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   430
    "closed_segment (a + kde) (a + e) \<inter> (path_image p \<union> closed_segment (a - d) (a - kde))
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   431
       \<subseteq> {a + e}"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   432
    by auto
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   433
  have "kde \<in> closed_segment (-kde) e"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   434
    using \<open>0 < kde\<close> \<open>kde < d\<close> \<open>kde < e\<close> closed_segment_eq_real_ivl by auto
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   435
  then have a_add_kde: "a + kde \<in> closed_segment (a - kde) (a + e)"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   436
    using of_real_closed_segment [THEN iffD2]
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   437
    by (force dest: closed_segment_translation_eq [of "a", THEN iffD2] simp del: of_real_closed_segment)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   438
  have "closed_segment (a - kde) (a + kde) \<inter> closed_segment (a + kde) (a + e) = {a + kde}"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   439
    by (metis a_add_kde Int_closed_segment)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   440
  moreover
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   441
  have "path_image p \<inter> closed_segment (a - kde) (a + kde) = {}"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   442
  proof (rule equals0I, clarify)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   443
    fix y  assume "y \<in> path_image p" "y \<in> closed_segment (a - kde) (a + kde)"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   444
    with equals0D [OF k, of y] \<open>0 < kde\<close> \<open>kde < k\<close> show False
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   445
      by (auto simp: dist_norm dest: dist_decreases_closed_segment [where c=a])
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   446
  qed
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   447
  moreover
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   448
  have "- kde \<in> closed_segment (-d) kde"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   449
    using \<open>0 < kde\<close> \<open>kde < d\<close> \<open>kde < e\<close> closed_segment_eq_real_ivl by auto
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   450
  then have a_diff_kde': "a - kde \<in> closed_segment (a - d) (a + kde)"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   451
    using of_real_closed_segment [THEN iffD2]
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   452
    by (force dest: closed_segment_translation_eq [of a, THEN iffD2] simp del: of_real_closed_segment)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   453
  then have "closed_segment (a - d) (a - kde) \<inter> closed_segment (a - kde) (a + kde) = {a - kde}"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   454
    by (metis Int_closed_segment)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   455
  ultimately
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   456
  have pa_subset_pm_kde: "path_image ?q \<inter> closed_segment (a - kde) (a + kde) \<subseteq> {a - kde, a + kde}"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   457
    by (auto simp: path_image_join assms)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   458
  have ge_kde1: "\<exists>y. x = a + y \<and> y \<ge> kde" if "x \<in> closed_segment (a + kde) (a + e)" for x
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   459
    using that \<open>kde < e\<close> mult_le_cancel_left
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   460
    apply (auto simp: in_segment)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   461
    apply (rule_tac x="(1-u)*kde + u*e" in exI)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   462
    apply (fastforce simp: algebra_simps scaleR_conv_of_real)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   463
    done
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   464
  have ge_kde2: "\<exists>y. x = a + y \<and> y \<le> -kde" if "x \<in> closed_segment (a - d) (a - kde)" for x
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   465
    using that \<open>kde < d\<close> affine_ineq
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   466
    apply (auto simp: in_segment)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   467
    apply (rule_tac x="- ((1-u)*d + u*kde)" in exI)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   468
    apply (fastforce simp: algebra_simps scaleR_conv_of_real)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   469
    done
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   470
  have notin_paq: "x \<notin> path_image ?q" if "dist a x < kde" for x
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   471
    using that using \<open>0 < kde\<close> \<open>kde < d\<close> \<open>kde < k\<close>
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   472
    apply (auto simp: path_image_join assms dist_norm dest!: ge_kde1 ge_kde2)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   473
    by (meson k disjoint_iff_not_equal le_less_trans less_eq_real_def mem_ball that)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   474
  obtain z where zin: "z \<in> inside (path_image (?q +++ linepath (a - kde) (a + kde)))"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   475
           and z1: "cmod (winding_number (?q +++ linepath (a - kde) (a + kde)) z) = 1"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   476
  proof (rule simple_closed_path_wn1 [of kde ?q a])
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   477
    show "simple_path (?q +++ linepath (a - kde) (a + kde))"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   478
    proof (intro simple_path_join_loop conjI)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   479
      show "arc ?q"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   480
      proof (rule arc_join)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   481
        show "arc (linepath (a + kde) (a + e))"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   482
          using \<open>kde < e\<close> \<open>arc p\<close> by (force simp: pfp)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   483
        show "arc (p +++ linepath (a - d) (a - kde))"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   484
          using \<open>kde < d\<close> \<open>kde < e\<close> \<open>arc p\<close> sub_a_diff_d by (force simp: pfp intro: arc_join)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   485
      qed (auto simp: psp pfp path_image_join sub_a_plus_e)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   486
      show "arc (linepath (a - kde) (a + kde))"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   487
        using \<open>0 < kde\<close> by auto
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   488
    qed (use pa_subset_pm_kde in auto)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   489
  qed (use \<open>0 < kde\<close> notin_paq in auto)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   490
  have eq: "path_image (?q +++ linepath (a - kde) (a + kde)) = path_image (p +++ linepath (a - d) (a + e))"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   491
            (is "?lhs = ?rhs")
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   492
  proof
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   493
    show "?lhs \<subseteq> ?rhs"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   494
      using clsub1 clsub2 apply (auto simp: path_image_join assms)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   495
      by (meson subsetCE subset_closed_segment)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   496
    show "?rhs \<subseteq> ?lhs"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   497
      apply (simp add: path_image_join assms Un_ac)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   498
        by (metis Un_closed_segment Un_assoc a_diff_kde a_diff_kde' le_supI2 subset_refl)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   499
    qed
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   500
  show thesis
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   501
  proof
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   502
    show zzin: "z \<in> inside (path_image (p +++ linepath (a - d) (a + e)))"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   503
      by (metis eq zin)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   504
    then have znotin: "z \<notin> path_image p"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   505
      by (metis ComplD Un_iff inside_Un_outside path_image_join pathfinish_linepath pathstart_reversepath pfp reversepath_linepath)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   506
    have znotin_de: "z \<notin> closed_segment (a - d) (a + kde)"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   507
      by (metis ComplD Un_iff Un_closed_segment a_diff_kde inside_Un_outside path_image_join path_image_linepath pathstart_linepath pfp zzin)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   508
    have "winding_number (linepath (a - d) (a + e)) z =
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   509
          winding_number (linepath (a - d) (a + kde)) z + winding_number (linepath (a + kde) (a + e)) z"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   510
      apply (rule winding_number_split_linepath)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   511
      apply (simp add: a_diff_kde)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   512
      by (metis ComplD Un_iff inside_Un_outside path_image_join path_image_linepath pathstart_linepath pfp zzin)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   513
    also have "... = winding_number (linepath (a + kde) (a + e)) z +
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   514
                     (winding_number (linepath (a - d) (a - kde)) z +
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   515
                      winding_number (linepath (a - kde) (a + kde)) z)"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   516
      by (simp add: winding_number_split_linepath [of "a-kde", symmetric] znotin_de a_diff_kde')
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   517
    finally have "winding_number (p +++ linepath (a - d) (a + e)) z =
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   518
                    winding_number p z + winding_number (linepath (a + kde) (a + e)) z +
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   519
                   (winding_number (linepath (a - d) (a - kde)) z +
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   520
                    winding_number (linepath (a - kde) (a + kde)) z)"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   521
      by (metis (no_types, lifting) ComplD Un_iff \<open>arc p\<close> add.assoc arc_imp_path eq path_image_join path_join_path_ends path_linepath simple_path_imp_path sp_pl union_with_outside winding_number_join zin)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   522
    also have "... = winding_number ?q z + winding_number (linepath (a - kde) (a + kde)) z"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   523
      using \<open>path p\<close> znotin assms zzin clsub1
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   524
      apply (subst winding_number_join, auto)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   525
      apply (metis (no_types, hide_lams) ComplD Un_iff contra_subsetD inside_Un_outside path_image_join path_image_linepath pathstart_linepath)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   526
      apply (metis Un_iff Un_closed_segment a_diff_kde' not_in_path_image_join path_image_linepath znotin_de)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   527
      by (metis Un_iff Un_closed_segment a_diff_kde' path_image_linepath path_linepath pathstart_linepath winding_number_join znotin_de)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   528
    also have "... = winding_number (?q +++ linepath (a - kde) (a + kde)) z"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   529
      using \<open>path p\<close> assms zin
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   530
      apply (subst winding_number_join [symmetric], auto)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   531
      apply (metis ComplD Un_iff path_image_join pathfinish_join pathfinish_linepath pathstart_linepath union_with_outside)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   532
      by (metis Un_iff Un_closed_segment a_diff_kde' znotin_de)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   533
    finally have "winding_number (p +++ linepath (a - d) (a + e)) z =
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   534
                  winding_number (?q +++ linepath (a - kde) (a + kde)) z" .
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   535
    then show "cmod (winding_number (p +++ linepath (a - d) (a + e)) z) = 1"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   536
      by (simp add: z1)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   537
  qed
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   538
qed
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   539
69423
3922aa1df44e Tagged some theories in HOL-Analysis: Cauchy_Integral_Theorem, Riemann_Mapping and Winding_Numbers.
Wenda Li <wl302@cam.ac.uk>
parents: 68077
diff changeset
   540
lemma simple_closed_path_wn3:
65039
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   541
  fixes p :: "real \<Rightarrow> complex"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   542
  assumes "simple_path p" and loop: "pathfinish p = pathstart p"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   543
  obtains z where "z \<in> inside (path_image p)" "cmod (winding_number p z) = 1"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   544
proof -
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   545
  have ins: "inside(path_image p) \<noteq> {}" "open(inside(path_image p))"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   546
            "connected(inside(path_image p))"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   547
   and out: "outside(path_image p) \<noteq> {}" "open(outside(path_image p))"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   548
            "connected(outside(path_image p))"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   549
   and bo:  "bounded(inside(path_image p))" "\<not> bounded(outside(path_image p))"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   550
   and ins_out: "inside(path_image p) \<inter> outside(path_image p) = {}"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   551
                "inside(path_image p) \<union> outside(path_image p) = - path_image p"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   552
   and fro: "frontier(inside(path_image p)) = path_image p"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   553
            "frontier(outside(path_image p)) = path_image p"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   554
    using Jordan_inside_outside [OF assms] by auto
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   555
  obtain a where a: "a \<in> inside(path_image p)"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   556
    using \<open>inside (path_image p) \<noteq> {}\<close> by blast
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   557
  obtain d::real where "0 < d" and d_fro: "a - d \<in> frontier (inside (path_image p))"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   558
                 and d_int: "\<And>\<epsilon>. \<lbrakk>0 \<le> \<epsilon>; \<epsilon> < d\<rbrakk> \<Longrightarrow> (a - \<epsilon>) \<in> inside (path_image p)"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   559
    apply (rule ray_to_frontier [of "inside (path_image p)" a "-1"])
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   560
    using \<open>bounded (inside (path_image p))\<close> \<open>open (inside (path_image p))\<close> a interior_eq
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   561
       apply (auto simp: of_real_def)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   562
    done
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   563
  obtain e::real where "0 < e" and e_fro: "a + e \<in> frontier (inside (path_image p))"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   564
    and e_int: "\<And>\<epsilon>. \<lbrakk>0 \<le> \<epsilon>; \<epsilon> < e\<rbrakk> \<Longrightarrow> (a + \<epsilon>) \<in> inside (path_image p)"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   565
    apply (rule ray_to_frontier [of "inside (path_image p)" a 1])
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   566
    using \<open>bounded (inside (path_image p))\<close> \<open>open (inside (path_image p))\<close> a interior_eq
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   567
       apply (auto simp: of_real_def)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   568
    done
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   569
  obtain t0 where "0 \<le> t0" "t0 \<le> 1" and pt: "p t0 = a - d"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   570
    using a d_fro fro by (auto simp: path_image_def)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   571
  obtain q where "simple_path q" and q_ends: "pathstart q = a - d" "pathfinish q = a - d"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   572
    and q_eq_p: "path_image q = path_image p"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   573
    and wn_q_eq_wn_p: "\<And>z. z \<in> inside(path_image p) \<Longrightarrow> winding_number q z = winding_number p z"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   574
  proof
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   575
    show "simple_path (shiftpath t0 p)"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   576
      by (simp add: pathstart_shiftpath pathfinish_shiftpath
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   577
          simple_path_shiftpath path_image_shiftpath \<open>0 \<le> t0\<close> \<open>t0 \<le> 1\<close> assms)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   578
    show "pathstart (shiftpath t0 p) = a - d"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   579
      using pt by (simp add: \<open>t0 \<le> 1\<close> pathstart_shiftpath)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   580
    show "pathfinish (shiftpath t0 p) = a - d"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   581
      by (simp add: \<open>0 \<le> t0\<close> loop pathfinish_shiftpath pt)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   582
    show "path_image (shiftpath t0 p) = path_image p"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   583
      by (simp add: \<open>0 \<le> t0\<close> \<open>t0 \<le> 1\<close> loop path_image_shiftpath)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   584
    show "winding_number (shiftpath t0 p) z = winding_number p z"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   585
      if "z \<in> inside (path_image p)" for z
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   586
      by (metis ComplD Un_iff \<open>0 \<le> t0\<close> \<open>t0 \<le> 1\<close> \<open>simple_path p\<close> atLeastAtMost_iff inside_Un_outside
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   587
          loop simple_path_imp_path that winding_number_shiftpath)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   588
  qed
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   589
  have ad_not_ae: "a - d \<noteq> a + e"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   590
    by (metis \<open>0 < d\<close> \<open>0 < e\<close> add.left_inverse add_left_cancel add_uminus_conv_diff
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   591
        le_add_same_cancel2 less_eq_real_def not_less of_real_add of_real_def of_real_eq_0_iff pt)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   592
  have ad_ae_q: "{a - d, a + e} \<subseteq> path_image q"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   593
    using \<open>path_image q = path_image p\<close> d_fro e_fro fro(1) by auto
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   594
  have ada: "open_segment (a - d) a \<subseteq> inside (path_image p)"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   595
  proof (clarsimp simp: in_segment)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   596
    fix u::real assume "0 < u" "u < 1"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   597
    with d_int have "a - (1 - u) * d \<in> inside (path_image p)"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   598
      by (metis \<open>0 < d\<close> add.commute diff_add_cancel left_diff_distrib' less_add_same_cancel2 less_eq_real_def mult.left_neutral zero_less_mult_iff)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   599
    then show "(1 - u) *\<^sub>R (a - d) + u *\<^sub>R a \<in> inside (path_image p)"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   600
      by (simp add: diff_add_eq of_real_def real_vector.scale_right_diff_distrib)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   601
  qed
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   602
  have aae: "open_segment a (a + e) \<subseteq> inside (path_image p)"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   603
  proof (clarsimp simp: in_segment)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   604
    fix u::real assume "0 < u" "u < 1"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   605
    with e_int have "a + u * e \<in> inside (path_image p)"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   606
      by (meson \<open>0 < e\<close> less_eq_real_def mult_less_cancel_right2 not_less zero_less_mult_iff)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   607
    then show "(1 - u) *\<^sub>R a + u *\<^sub>R (a + e) \<in> inside (path_image p)"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   608
      apply (simp add: algebra_simps)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   609
      by (simp add: diff_add_eq of_real_def real_vector.scale_right_diff_distrib)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   610
  qed
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   611
  have "complex_of_real (d * d + (e * e + d * (e + e))) \<noteq> 0"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   612
    using ad_not_ae
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   613
    by (metis \<open>0 < d\<close> \<open>0 < e\<close> add_strict_left_mono less_add_same_cancel1 not_sum_squares_lt_zero
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   614
        of_real_eq_0_iff zero_less_double_add_iff_zero_less_single_add zero_less_mult_iff)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   615
  then have a_in_de: "a \<in> open_segment (a - d) (a + e)"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   616
    using ad_not_ae \<open>0 < d\<close> \<open>0 < e\<close>
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   617
    apply (auto simp: in_segment algebra_simps scaleR_conv_of_real)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   618
    apply (rule_tac x="d / (d+e)" in exI)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   619
    apply (auto simp: field_simps)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   620
    done
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   621
  then have "open_segment (a - d) (a + e) \<subseteq> inside (path_image p)"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   622
    using ada a aae Un_open_segment [of a "a-d" "a+e"] by blast
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   623
  then have "path_image q \<inter> open_segment (a - d) (a + e) = {}"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   624
    using inside_no_overlap by (fastforce simp: q_eq_p)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   625
  with ad_ae_q have paq_Int_cs: "path_image q \<inter> closed_segment (a - d) (a + e) = {a - d, a + e}"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   626
    by (simp add: closed_segment_eq_open)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   627
  obtain t where "0 \<le> t" "t \<le> 1" and qt: "q t = a + e"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   628
    using a e_fro fro ad_ae_q by (auto simp: path_defs)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   629
  then have "t \<noteq> 0"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   630
    by (metis ad_not_ae pathstart_def q_ends(1))
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   631
  then have "t \<noteq> 1"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   632
    by (metis ad_not_ae pathfinish_def q_ends(2) qt)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   633
  have q01: "q 0 = a - d" "q 1 = a - d"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   634
    using q_ends by (auto simp: pathstart_def pathfinish_def)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   635
  obtain z where zin: "z \<in> inside (path_image (subpath t 0 q +++ linepath (a - d) (a + e)))"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   636
             and z1: "cmod (winding_number (subpath t 0 q +++ linepath (a - d) (a + e)) z) = 1"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   637
  proof (rule simple_closed_path_wn2 [of d e "subpath t 0 q" a], simp_all add: q01)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   638
    show "simple_path (subpath t 0 q +++ linepath (a - d) (a + e))"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   639
    proof (rule simple_path_join_loop, simp_all add: qt q01)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   640
      have "inj_on q (closed_segment t 0)"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   641
        using \<open>0 \<le> t\<close> \<open>simple_path q\<close> \<open>t \<le> 1\<close> \<open>t \<noteq> 0\<close> \<open>t \<noteq> 1\<close>
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   642
        by (fastforce simp: simple_path_def inj_on_def closed_segment_eq_real_ivl)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   643
      then show "arc (subpath t 0 q)"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   644
        using \<open>0 \<le> t\<close> \<open>simple_path q\<close> \<open>t \<le> 1\<close> \<open>t \<noteq> 0\<close>
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   645
        by (simp add: arc_subpath_eq simple_path_imp_path)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   646
      show "arc (linepath (a - d) (a + e))"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   647
        by (simp add: ad_not_ae)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   648
      show "path_image (subpath t 0 q) \<inter> closed_segment (a - d) (a + e) \<subseteq> {a + e, a - d}"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   649
        using qt paq_Int_cs  \<open>simple_path q\<close> \<open>0 \<le> t\<close> \<open>t \<le> 1\<close>
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   650
        by (force simp: dest: rev_subsetD [OF _ path_image_subpath_subset] intro: simple_path_imp_path)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   651
    qed
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   652
  qed (auto simp: \<open>0 < d\<close> \<open>0 < e\<close> qt)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   653
  have pa01_Un: "path_image (subpath 0 t q) \<union> path_image (subpath 1 t q) = path_image q"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   654
    unfolding path_image_subpath
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   655
    using \<open>0 \<le> t\<close> \<open>t \<le> 1\<close> by (force simp: path_image_def image_iff)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   656
  with paq_Int_cs have pa_01q:
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   657
        "(path_image (subpath 0 t q) \<union> path_image (subpath 1 t q)) \<inter> closed_segment (a - d) (a + e) = {a - d, a + e}"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   658
    by metis
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   659
  have z_notin_ed: "z \<notin> closed_segment (a + e) (a - d)"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   660
    using zin q01 by (simp add: path_image_join closed_segment_commute inside_def)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   661
  have z_notin_0t: "z \<notin> path_image (subpath 0 t q)"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   662
    by (metis (no_types, hide_lams) IntI Un_upper1 subsetD empty_iff inside_no_overlap path_image_join
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   663
        path_image_subpath_commute pathfinish_subpath pathstart_def pathstart_linepath q_ends(1) qt subpath_trivial zin)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   664
  have [simp]: "- winding_number (subpath t 0 q) z = winding_number (subpath 0 t q) z"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   665
    by (metis \<open>0 \<le> t\<close> \<open>simple_path q\<close> \<open>t \<le> 1\<close> atLeastAtMost_iff zero_le_one
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   666
              path_image_subpath_commute path_subpath real_eq_0_iff_le_ge_0
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   667
              reversepath_subpath simple_path_imp_path winding_number_reversepath z_notin_0t)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   668
  obtain z_in_q: "z \<in> inside(path_image q)"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   669
     and wn_q: "winding_number (subpath 0 t q +++ subpath t 1 q) z = - winding_number (subpath t 0 q +++ linepath (a - d) (a + e)) z"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   670
  proof (rule winding_number_from_innerpath
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   671
          [of "subpath 0 t q" "a-d" "a+e" "subpath 1 t q" "linepath (a - d) (a + e)"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   672
            z "- winding_number (subpath t 0 q +++ linepath (a - d) (a + e)) z"],
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   673
         simp_all add: q01 qt pa01_Un reversepath_subpath)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   674
    show "simple_path (subpath 0 t q)" "simple_path (subpath 1 t q)"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   675
      by (simp_all add: \<open>0 \<le> t\<close> \<open>simple_path q\<close> \<open>t \<le> 1\<close> \<open>t \<noteq> 0\<close> \<open>t \<noteq> 1\<close> simple_path_subpath)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   676
    show "simple_path (linepath (a - d) (a + e))"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   677
      using ad_not_ae by blast
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   678
    show "path_image (subpath 0 t q) \<inter> path_image (subpath 1 t q) = {a - d, a + e}"  (is "?lhs = ?rhs")
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   679
    proof
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   680
      show "?lhs \<subseteq> ?rhs"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   681
        using \<open>0 \<le> t\<close> \<open>simple_path q\<close> \<open>t \<le> 1\<close> \<open>t \<noteq> 1\<close> q_ends qt q01
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   682
        by (force simp: pathfinish_def qt simple_path_def path_image_subpath)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   683
      show "?rhs \<subseteq> ?lhs"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   684
        using \<open>0 \<le> t\<close> \<open>t \<le> 1\<close> q01 qt by (force simp: path_image_subpath)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   685
    qed
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   686
    show "path_image (subpath 0 t q) \<inter> closed_segment (a - d) (a + e) = {a - d, a + e}" (is "?lhs = ?rhs")
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   687
    proof
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   688
      show "?lhs \<subseteq> ?rhs"  using paq_Int_cs pa01_Un by fastforce
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   689
      show "?rhs \<subseteq> ?lhs"  using \<open>0 \<le> t\<close> \<open>t \<le> 1\<close> q01 qt by (force simp: path_image_subpath)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   690
    qed
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   691
    show "path_image (subpath 1 t q) \<inter> closed_segment (a - d) (a + e) = {a - d, a + e}" (is "?lhs = ?rhs")
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   692
    proof
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   693
      show "?lhs \<subseteq> ?rhs"  by (auto simp: pa_01q [symmetric])
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   694
      show "?rhs \<subseteq> ?lhs"  using \<open>0 \<le> t\<close> \<open>t \<le> 1\<close> q01 qt by (force simp: path_image_subpath)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   695
    qed
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   696
    show "closed_segment (a - d) (a + e) \<inter> inside (path_image q) \<noteq> {}"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   697
      using a a_in_de open_closed_segment pa01_Un q_eq_p by fastforce
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   698
    show "z \<in> inside (path_image (subpath 0 t q) \<union> closed_segment (a - d) (a + e))"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   699
      by (metis path_image_join path_image_linepath path_image_subpath_commute pathfinish_subpath pathstart_linepath q01(1) zin)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   700
    show "winding_number (subpath 0 t q +++ linepath (a + e) (a - d)) z =
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   701
      - winding_number (subpath t 0 q +++ linepath (a - d) (a + e)) z"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   702
      using z_notin_ed z_notin_0t \<open>0 \<le> t\<close> \<open>simple_path q\<close> \<open>t \<le> 1\<close>
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   703
      by (simp add: simple_path_imp_path qt q01 path_image_subpath_commute closed_segment_commute winding_number_join winding_number_reversepath [symmetric])
67135
1a94352812f4 Moved material from AFP to Analysis/Number_Theory
Manuel Eberl <eberlm@in.tum.de>
parents: 66884
diff changeset
   704
    show "- d \<noteq> e"
65039
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   705
      using ad_not_ae by auto
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   706
    show "winding_number (subpath t 0 q +++ linepath (a - d) (a + e)) z \<noteq> 0"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   707
      using z1 by auto
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   708
  qed
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   709
  show ?thesis
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   710
  proof
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   711
    show "z \<in> inside (path_image p)"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   712
      using q_eq_p z_in_q by auto
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   713
    then have [simp]: "z \<notin> path_image q"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   714
      by (metis disjoint_iff_not_equal inside_no_overlap q_eq_p)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   715
    have [simp]: "z \<notin> path_image (subpath 1 t q)"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   716
      using inside_def pa01_Un z_in_q by fastforce
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   717
    have "winding_number(subpath 0 t q +++ subpath t 1 q) z = winding_number(subpath 0 1 q) z"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   718
      using z_notin_0t \<open>0 \<le> t\<close> \<open>simple_path q\<close> \<open>t \<le> 1\<close>
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   719
      by (simp add: simple_path_imp_path qt path_image_subpath_commute winding_number_join winding_number_subpath_combine)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   720
    with wn_q have "winding_number (subpath t 0 q +++ linepath (a - d) (a + e)) z = - winding_number q z"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   721
      by auto
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   722
    with z1 have "cmod (winding_number q z) = 1"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   723
      by simp
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   724
    with z1 wn_q_eq_wn_p show "cmod (winding_number p z) = 1"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   725
      using z1 wn_q_eq_wn_p  by (simp add: \<open>z \<in> inside (path_image p)\<close>)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   726
    qed
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   727
qed
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   728
69423
3922aa1df44e Tagged some theories in HOL-Analysis: Cauchy_Integral_Theorem, Riemann_Mapping and Winding_Numbers.
Wenda Li <wl302@cam.ac.uk>
parents: 68077
diff changeset
   729
proposition simple_closed_path_winding_number_inside:
65039
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   730
  assumes "simple_path \<gamma>"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   731
  obtains "\<And>z. z \<in> inside(path_image \<gamma>) \<Longrightarrow> winding_number \<gamma> z = 1"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   732
        | "\<And>z. z \<in> inside(path_image \<gamma>) \<Longrightarrow> winding_number \<gamma> z = -1"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   733
proof (cases "pathfinish \<gamma> = pathstart \<gamma>")
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   734
  case True
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   735
  have "path \<gamma>"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   736
    by (simp add: assms simple_path_imp_path)
66884
c2128ab11f61 Switching to inverse image and constant_on, plus some new material
paulson <lp15@cam.ac.uk>
parents: 66827
diff changeset
   737
  then have const: "winding_number \<gamma> constant_on inside(path_image \<gamma>)"
65039
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   738
  proof (rule winding_number_constant)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   739
    show "connected (inside(path_image \<gamma>))"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   740
      by (simp add: Jordan_inside_outside True assms)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   741
  qed (use inside_no_overlap True in auto)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   742
  obtain z where zin: "z \<in> inside (path_image \<gamma>)" and z1: "cmod (winding_number \<gamma> z) = 1"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   743
    using simple_closed_path_wn3 [of \<gamma>] True assms by blast
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   744
  have "winding_number \<gamma> z \<in> \<int>"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   745
    using zin integer_winding_number [OF \<open>path \<gamma>\<close> True] inside_def by blast
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   746
  with z1 consider "winding_number \<gamma> z = 1" | "winding_number \<gamma> z = -1"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   747
    apply (auto simp: Ints_def abs_if split: if_split_asm)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   748
    by (metis of_int_1 of_int_eq_iff of_int_minus)
66884
c2128ab11f61 Switching to inverse image and constant_on, plus some new material
paulson <lp15@cam.ac.uk>
parents: 66827
diff changeset
   749
  with that const zin show ?thesis
c2128ab11f61 Switching to inverse image and constant_on, plus some new material
paulson <lp15@cam.ac.uk>
parents: 66827
diff changeset
   750
    unfolding constant_on_def by metis
65039
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   751
next
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   752
  case False
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   753
  then show ?thesis
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   754
    using inside_simple_curve_imp_closed assms that(2) by blast
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   755
qed
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   756
69423
3922aa1df44e Tagged some theories in HOL-Analysis: Cauchy_Integral_Theorem, Riemann_Mapping and Winding_Numbers.
Wenda Li <wl302@cam.ac.uk>
parents: 68077
diff changeset
   757
lemma simple_closed_path_abs_winding_number_inside:
65039
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   758
  assumes "simple_path \<gamma>" "z \<in> inside(path_image \<gamma>)"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   759
    shows "\<bar>Re (winding_number \<gamma> z)\<bar> = 1"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   760
  by (metis assms norm_minus_cancel norm_one one_complex.simps(1) real_norm_def simple_closed_path_winding_number_inside uminus_complex.simps(1))
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   761
69423
3922aa1df44e Tagged some theories in HOL-Analysis: Cauchy_Integral_Theorem, Riemann_Mapping and Winding_Numbers.
Wenda Li <wl302@cam.ac.uk>
parents: 68077
diff changeset
   762
lemma simple_closed_path_norm_winding_number_inside:
65039
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   763
  assumes "simple_path \<gamma>" "z \<in> inside(path_image \<gamma>)"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   764
  shows "norm (winding_number \<gamma> z) = 1"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   765
proof -
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   766
  have "pathfinish \<gamma> = pathstart \<gamma>"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   767
    using assms inside_simple_curve_imp_closed by blast
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   768
  with assms integer_winding_number have "winding_number \<gamma> z \<in> \<int>"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   769
    by (simp add: inside_def simple_path_def)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   770
  then show ?thesis
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   771
    by (metis assms norm_minus_cancel norm_one simple_closed_path_winding_number_inside)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   772
qed
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   773
69423
3922aa1df44e Tagged some theories in HOL-Analysis: Cauchy_Integral_Theorem, Riemann_Mapping and Winding_Numbers.
Wenda Li <wl302@cam.ac.uk>
parents: 68077
diff changeset
   774
lemma simple_closed_path_winding_number_cases:
65039
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   775
   "\<lbrakk>simple_path \<gamma>; pathfinish \<gamma> = pathstart \<gamma>; z \<notin> path_image \<gamma>\<rbrakk> \<Longrightarrow> winding_number \<gamma> z \<in> {-1,0,1}"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   776
apply (simp add: inside_Un_outside [of "path_image \<gamma>", symmetric, unfolded set_eq_iff Set.Compl_iff] del: inside_Un_outside)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   777
   apply (rule simple_closed_path_winding_number_inside)
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   778
  using simple_path_def winding_number_zero_in_outside by blast+
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   779
69423
3922aa1df44e Tagged some theories in HOL-Analysis: Cauchy_Integral_Theorem, Riemann_Mapping and Winding_Numbers.
Wenda Li <wl302@cam.ac.uk>
parents: 68077
diff changeset
   780
lemma simple_closed_path_winding_number_pos:
65039
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   781
   "\<lbrakk>simple_path \<gamma>; pathfinish \<gamma> = pathstart \<gamma>; z \<notin> path_image \<gamma>; 0 < Re(winding_number \<gamma> z)\<rbrakk>
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   782
    \<Longrightarrow> winding_number \<gamma> z = 1"
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   783
using simple_closed_path_winding_number_cases
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   784
  by fastforce
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
   785
66393
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   786
subsection \<open>Winding number for rectangular paths\<close>
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   787
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   788
(* TODO: Move *)
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   789
lemma closed_segmentI:
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   790
  "u \<in> {0..1} \<Longrightarrow> z = (1 - u) *\<^sub>R a + u *\<^sub>R b \<Longrightarrow> z \<in> closed_segment a b"
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   791
  by (auto simp: closed_segment_def)
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   792
66827
c94531b5007d Divided Topology_Euclidean_Space in two, creating new theory Connected. Also deleted some duplicate / variant theorems
paulson <lp15@cam.ac.uk>
parents: 66826
diff changeset
   793
lemma in_cbox_complex_iff:
66393
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   794
  "x \<in> cbox a b \<longleftrightarrow> Re x \<in> {Re a..Re b} \<and> Im x \<in> {Im a..Im b}"
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   795
  by (cases x; cases a; cases b) (auto simp: cbox_Complex_eq)
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   796
66827
c94531b5007d Divided Topology_Euclidean_Space in two, creating new theory Connected. Also deleted some duplicate / variant theorems
paulson <lp15@cam.ac.uk>
parents: 66826
diff changeset
   797
lemma box_Complex_eq:
66393
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   798
  "box (Complex a c) (Complex b d) = (\<lambda>(x,y). Complex x y) ` (box a b \<times> box c d)"
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   799
  by (auto simp: box_def Basis_complex_def image_iff complex_eq_iff)
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   800
66827
c94531b5007d Divided Topology_Euclidean_Space in two, creating new theory Connected. Also deleted some duplicate / variant theorems
paulson <lp15@cam.ac.uk>
parents: 66826
diff changeset
   801
lemma in_box_complex_iff:
66393
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   802
  "x \<in> box a b \<longleftrightarrow> Re x \<in> {Re a<..<Re b} \<and> Im x \<in> {Im a<..<Im b}"
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   803
  by (cases x; cases a; cases b) (auto simp: box_Complex_eq)
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   804
(* END TODO *)
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   805
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   806
lemma closed_segment_same_Re:
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   807
  assumes "Re a = Re b"
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   808
  shows   "closed_segment a b = {z. Re z = Re a \<and> Im z \<in> closed_segment (Im a) (Im b)}"
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   809
proof safe
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   810
  fix z assume "z \<in> closed_segment a b"
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   811
  then obtain u where u: "u \<in> {0..1}" "z = a + of_real u * (b - a)"
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   812
    by (auto simp: closed_segment_def scaleR_conv_of_real algebra_simps)
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   813
  from assms show "Re z = Re a" by (auto simp: u)
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   814
  from u(1) show "Im z \<in> closed_segment (Im a) (Im b)"
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   815
    by (intro closed_segmentI[of u]) (auto simp: u algebra_simps)
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   816
next
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   817
  fix z assume [simp]: "Re z = Re a" and "Im z \<in> closed_segment (Im a) (Im b)"
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   818
  then obtain u where u: "u \<in> {0..1}" "Im z = Im a + of_real u * (Im b - Im a)"
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   819
    by (auto simp: closed_segment_def scaleR_conv_of_real algebra_simps)
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   820
  from u(1) show "z \<in> closed_segment a b" using assms
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   821
    by (intro closed_segmentI[of u]) (auto simp: u algebra_simps scaleR_conv_of_real complex_eq_iff)
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   822
qed
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   823
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   824
lemma closed_segment_same_Im:
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   825
  assumes "Im a = Im b"
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   826
  shows   "closed_segment a b = {z. Im z = Im a \<and> Re z \<in> closed_segment (Re a) (Re b)}"
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   827
proof safe
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   828
  fix z assume "z \<in> closed_segment a b"
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   829
  then obtain u where u: "u \<in> {0..1}" "z = a + of_real u * (b - a)"
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   830
    by (auto simp: closed_segment_def scaleR_conv_of_real algebra_simps)
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   831
  from assms show "Im z = Im a" by (auto simp: u)
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   832
  from u(1) show "Re z \<in> closed_segment (Re a) (Re b)"
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   833
    by (intro closed_segmentI[of u]) (auto simp: u algebra_simps)
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   834
next
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   835
  fix z assume [simp]: "Im z = Im a" and "Re z \<in> closed_segment (Re a) (Re b)"
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   836
  then obtain u where u: "u \<in> {0..1}" "Re z = Re a + of_real u * (Re b - Re a)"
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   837
    by (auto simp: closed_segment_def scaleR_conv_of_real algebra_simps)
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   838
  from u(1) show "z \<in> closed_segment a b" using assms
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   839
    by (intro closed_segmentI[of u]) (auto simp: u algebra_simps scaleR_conv_of_real complex_eq_iff)
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   840
qed
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   841
69423
3922aa1df44e Tagged some theories in HOL-Analysis: Cauchy_Integral_Theorem, Riemann_Mapping and Winding_Numbers.
Wenda Li <wl302@cam.ac.uk>
parents: 68077
diff changeset
   842
definition%important rectpath where
66393
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   843
  "rectpath a1 a3 = (let a2 = Complex (Re a3) (Im a1); a4 = Complex (Re a1) (Im a3)
66827
c94531b5007d Divided Topology_Euclidean_Space in two, creating new theory Connected. Also deleted some duplicate / variant theorems
paulson <lp15@cam.ac.uk>
parents: 66826
diff changeset
   844
                      in linepath a1 a2 +++ linepath a2 a3 +++ linepath a3 a4 +++ linepath a4 a1)"
66393
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   845
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   846
lemma path_rectpath [simp, intro]: "path (rectpath a b)"
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   847
  by (simp add: Let_def rectpath_def)
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   848
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   849
lemma valid_path_rectpath [simp, intro]: "valid_path (rectpath a b)"
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   850
  by (simp add: Let_def rectpath_def)
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   851
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   852
lemma pathstart_rectpath [simp]: "pathstart (rectpath a1 a3) = a1"
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   853
  by (simp add: rectpath_def Let_def)
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   854
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   855
lemma pathfinish_rectpath [simp]: "pathfinish (rectpath a1 a3) = a1"
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   856
  by (simp add: rectpath_def Let_def)
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   857
66827
c94531b5007d Divided Topology_Euclidean_Space in two, creating new theory Connected. Also deleted some duplicate / variant theorems
paulson <lp15@cam.ac.uk>
parents: 66826
diff changeset
   858
lemma simple_path_rectpath [simp, intro]:
66393
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   859
  assumes "Re a1 \<noteq> Re a3" "Im a1 \<noteq> Im a3"
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   860
  shows   "simple_path (rectpath a1 a3)"
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   861
  unfolding rectpath_def Let_def using assms
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   862
  by (intro simple_path_join_loop arc_join arc_linepath)
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   863
     (auto simp: complex_eq_iff path_image_join closed_segment_same_Re closed_segment_same_Im)
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   864
66827
c94531b5007d Divided Topology_Euclidean_Space in two, creating new theory Connected. Also deleted some duplicate / variant theorems
paulson <lp15@cam.ac.uk>
parents: 66826
diff changeset
   865
lemma path_image_rectpath:
66393
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   866
  assumes "Re a1 \<le> Re a3" "Im a1 \<le> Im a3"
66827
c94531b5007d Divided Topology_Euclidean_Space in two, creating new theory Connected. Also deleted some duplicate / variant theorems
paulson <lp15@cam.ac.uk>
parents: 66826
diff changeset
   867
  shows "path_image (rectpath a1 a3) =
66393
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   868
           {z. Re z \<in> {Re a1, Re a3} \<and> Im z \<in> {Im a1..Im a3}} \<union>
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   869
           {z. Im z \<in> {Im a1, Im a3} \<and> Re z \<in> {Re a1..Re a3}}" (is "?lhs = ?rhs")
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   870
proof -
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   871
  define a2 a4 where "a2 = Complex (Re a3) (Im a1)" and "a4 = Complex (Re a1) (Im a3)"
66827
c94531b5007d Divided Topology_Euclidean_Space in two, creating new theory Connected. Also deleted some duplicate / variant theorems
paulson <lp15@cam.ac.uk>
parents: 66826
diff changeset
   872
  have "?lhs = closed_segment a1 a2 \<union> closed_segment a2 a3 \<union>
66393
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   873
                  closed_segment a4 a3 \<union> closed_segment a1 a4"
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   874
    by (simp_all add: rectpath_def Let_def path_image_join closed_segment_commute
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   875
                      a2_def a4_def Un_assoc)
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   876
  also have "\<dots> = ?rhs" using assms
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   877
    by (auto simp: rectpath_def Let_def path_image_join a2_def a4_def
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   878
          closed_segment_same_Re closed_segment_same_Im closed_segment_eq_real_ivl)
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   879
  finally show ?thesis .
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   880
qed
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   881
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   882
lemma path_image_rectpath_subset_cbox:
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   883
  assumes "Re a \<le> Re b" "Im a \<le> Im b"
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   884
  shows   "path_image (rectpath a b) \<subseteq> cbox a b"
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   885
  using assms by (auto simp: path_image_rectpath in_cbox_complex_iff)
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   886
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   887
lemma path_image_rectpath_inter_box:
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   888
  assumes "Re a \<le> Re b" "Im a \<le> Im b"
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   889
  shows   "path_image (rectpath a b) \<inter> box a b = {}"
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   890
  using assms by (auto simp: path_image_rectpath in_box_complex_iff)
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   891
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   892
lemma path_image_rectpath_cbox_minus_box:
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   893
  assumes "Re a \<le> Re b" "Im a \<le> Im b"
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   894
  shows   "path_image (rectpath a b) = cbox a b - box a b"
66827
c94531b5007d Divided Topology_Euclidean_Space in two, creating new theory Connected. Also deleted some duplicate / variant theorems
paulson <lp15@cam.ac.uk>
parents: 66826
diff changeset
   895
  using assms by (auto simp: path_image_rectpath in_cbox_complex_iff
66393
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   896
                             in_box_complex_iff)
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   897
69423
3922aa1df44e Tagged some theories in HOL-Analysis: Cauchy_Integral_Theorem, Riemann_Mapping and Winding_Numbers.
Wenda Li <wl302@cam.ac.uk>
parents: 68077
diff changeset
   898
proposition winding_number_rectpath:
66393
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   899
  assumes "z \<in> box a1 a3"
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   900
  shows   "winding_number (rectpath a1 a3) z = 1"
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   901
proof -
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   902
  from assms have less: "Re a1 < Re a3" "Im a1 < Im a3"
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   903
    by (auto simp: in_box_complex_iff)
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   904
  define a2 a4 where "a2 = Complex (Re a3) (Im a1)" and "a4 = Complex (Re a1) (Im a3)"
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   905
  let ?l1 = "linepath a1 a2" and ?l2 = "linepath a2 a3"
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   906
  and ?l3 = "linepath a3 a4" and ?l4 = "linepath a4 a1"
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   907
  from assms and less have "z \<notin> path_image (rectpath a1 a3)"
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   908
    by (auto simp: path_image_rectpath_cbox_minus_box)
66827
c94531b5007d Divided Topology_Euclidean_Space in two, creating new theory Connected. Also deleted some duplicate / variant theorems
paulson <lp15@cam.ac.uk>
parents: 66826
diff changeset
   909
  also have "path_image (rectpath a1 a3) =
66393
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   910
               path_image ?l1 \<union> path_image ?l2 \<union> path_image ?l3 \<union> path_image ?l4"
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   911
    by (simp add: rectpath_def Let_def path_image_join Un_assoc a2_def a4_def)
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   912
  finally have "z \<notin> \<dots>" .
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   913
  moreover have "\<forall>l\<in>{?l1,?l2,?l3,?l4}. Re (winding_number l z) > 0"
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   914
    unfolding ball_simps HOL.simp_thms a2_def a4_def
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   915
    by (intro conjI; (rule winding_number_linepath_pos_lt;
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   916
          (insert assms, auto simp: a2_def a4_def in_box_complex_iff mult_neg_neg))+)
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   917
  ultimately have "Re (winding_number (rectpath a1 a3) z) > 0"
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   918
    by (simp add: winding_number_join path_image_join rectpath_def Let_def a2_def a4_def)
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   919
  thus "winding_number (rectpath a1 a3) z = 1" using assms less
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   920
    by (intro simple_closed_path_winding_number_pos simple_path_rectpath)
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   921
       (auto simp: path_image_rectpath_cbox_minus_box)
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   922
qed
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   923
69423
3922aa1df44e Tagged some theories in HOL-Analysis: Cauchy_Integral_Theorem, Riemann_Mapping and Winding_Numbers.
Wenda Li <wl302@cam.ac.uk>
parents: 68077
diff changeset
   924
proposition winding_number_rectpath_outside:
66393
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   925
  assumes "Re a1 \<le> Re a3" "Im a1 \<le> Im a3"
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   926
  assumes "z \<notin> cbox a1 a3"
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   927
  shows   "winding_number (rectpath a1 a3) z = 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: 66826
diff changeset
   928
  using assms by (intro winding_number_zero_outside[OF _ _ _ assms(3)]
66393
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   929
                     path_image_rectpath_subset_cbox) simp_all
2a6371fb31f0 Winding numbers for rectangular paths
eberlm <eberlm@in.tum.de>
parents: 66304
diff changeset
   930
66826
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
   931
text\<open>A per-function version for continuous logs, a kind of monodromy\<close>
69423
3922aa1df44e Tagged some theories in HOL-Analysis: Cauchy_Integral_Theorem, Riemann_Mapping and Winding_Numbers.
Wenda Li <wl302@cam.ac.uk>
parents: 68077
diff changeset
   932
proposition%unimportant winding_number_compose_exp:
66826
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
   933
  assumes "path p"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
   934
  shows "winding_number (exp \<circ> p) 0 = (pathfinish p - pathstart p) / (2 * of_real pi * \<i>)"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
   935
proof -
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
   936
  obtain e where "0 < e" and e: "\<And>t. t \<in> {0..1} \<Longrightarrow> e \<le> norm(exp(p t))"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
   937
  proof
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
   938
     have "closed (path_image (exp \<circ> p))"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
   939
       by (simp add: assms closed_path_image holomorphic_on_exp holomorphic_on_imp_continuous_on path_continuous_image)
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
   940
    then show "0 < setdist {0} (path_image (exp \<circ> p))"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
   941
      by (metis (mono_tags, lifting) compact_sing exp_not_eq_zero imageE path_image_compose
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
   942
               path_image_nonempty setdist_eq_0_compact_closed setdist_gt_0_compact_closed setdist_eq_0_closed)
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
   943
  next
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
   944
    fix t::real
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
   945
    assume "t \<in> {0..1}"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
   946
    have "setdist {0} (path_image (exp \<circ> p)) \<le> dist 0 (exp (p t))"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
   947
      apply (rule setdist_le_dist)
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
   948
      using \<open>t \<in> {0..1}\<close> path_image_def by fastforce+
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
   949
    then show "setdist {0} (path_image (exp \<circ> p)) \<le> cmod (exp (p t))"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
   950
      by simp
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
   951
  qed
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
   952
  have "bounded (path_image p)"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
   953
    by (simp add: assms bounded_path_image)
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
   954
  then obtain B where "0 < B" and B: "path_image p \<subseteq> cball 0 B"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
   955
    by (meson bounded_pos mem_cball_0 subsetI)
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
   956
  let ?B = "cball (0::complex) (B+1)"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
   957
  have "uniformly_continuous_on ?B exp"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
   958
    using holomorphic_on_exp holomorphic_on_imp_continuous_on
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
   959
    by (force intro: compact_uniformly_continuous)
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
   960
  then obtain d where "d > 0"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
   961
        and d: "\<And>x x'. \<lbrakk>x\<in>?B; x'\<in>?B; dist x' x < d\<rbrakk> \<Longrightarrow> norm (exp x' - exp x) < e"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
   962
    using \<open>e > 0\<close> by (auto simp: uniformly_continuous_on_def dist_norm)
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
   963
  then have "min 1 d > 0"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
   964
    by force
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
   965
  then obtain g where pfg: "polynomial_function g"  and "g 0 = p 0" "g 1 = p 1"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
   966
           and gless: "\<And>t. t \<in> {0..1} \<Longrightarrow> norm(g t - p t) < min 1 d"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
   967
    using path_approx_polynomial_function [OF \<open>path p\<close>] \<open>d > 0\<close> \<open>0 < e\<close>
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
   968
    unfolding pathfinish_def pathstart_def by meson
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
   969
  have "winding_number (exp \<circ> p) 0 = winding_number (exp \<circ> g) 0"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
   970
  proof (rule winding_number_nearby_paths_eq [symmetric])
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
   971
    show "path (exp \<circ> p)" "path (exp \<circ> g)"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
   972
      by (simp_all add: pfg assms holomorphic_on_exp holomorphic_on_imp_continuous_on path_continuous_image path_polynomial_function)
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
   973
  next
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
   974
    fix t :: "real"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
   975
    assume t: "t \<in> {0..1}"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
   976
    with gless have "norm(g t - p t) < 1"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
   977
      using min_less_iff_conj by blast
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
   978
    moreover have ptB: "norm (p t) \<le> B"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
   979
      using B t by (force simp: path_image_def)
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
   980
    ultimately have "cmod (g t) \<le> B + 1"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
   981
      by (meson add_mono_thms_linordered_field(4) le_less_trans less_imp_le norm_triangle_sub)
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
   982
    with ptB gless t have "cmod ((exp \<circ> g) t - (exp \<circ> p) t) < e"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
   983
      by (auto simp: dist_norm d)
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
   984
    with e t show "cmod ((exp \<circ> g) t - (exp \<circ> p) t) < cmod ((exp \<circ> p) t - 0)"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
   985
      by fastforce
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
   986
  qed (use \<open>g 0 = p 0\<close> \<open>g 1 = p 1\<close> in \<open>auto simp: pathfinish_def pathstart_def\<close>)
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
   987
  also have "... = 1 / (of_real (2 * pi) * \<i>) * contour_integral (exp \<circ> g) (\<lambda>w. 1 / (w - 0))"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
   988
  proof (rule winding_number_valid_path)
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
   989
    have "continuous_on (path_image g) (deriv exp)"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
   990
      by (metis DERIV_exp DERIV_imp_deriv continuous_on_cong holomorphic_on_exp holomorphic_on_imp_continuous_on)
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
   991
    then show "valid_path (exp \<circ> g)"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
   992
      by (simp add: field_differentiable_within_exp pfg valid_path_compose valid_path_polynomial_function)
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
   993
    show "0 \<notin> path_image (exp \<circ> g)"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
   994
      by (auto simp: path_image_def)
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
   995
  qed
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
   996
  also have "... = 1 / (of_real (2 * pi) * \<i>) * integral {0..1} (\<lambda>x. vector_derivative g (at x))"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
   997
  proof (simp add: contour_integral_integral, rule integral_cong)
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
   998
    fix t :: "real"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
   999
    assume t: "t \<in> {0..1}"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1000
    show "vector_derivative (exp \<circ> g) (at t) / exp (g t) = vector_derivative g (at t)"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1001
    proof (simp add: divide_simps, rule vector_derivative_unique_at)
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1002
      show "(exp \<circ> g has_vector_derivative vector_derivative (exp \<circ> g) (at t)) (at t)"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1003
        by (meson DERIV_exp differentiable_def field_vector_diff_chain_at has_vector_derivative_def
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1004
            has_vector_derivative_polynomial_function pfg vector_derivative_works)
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1005
      show "(exp \<circ> g has_vector_derivative vector_derivative g (at t) * exp (g t)) (at t)"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1006
        apply (rule field_vector_diff_chain_at)
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1007
        apply (metis has_vector_derivative_polynomial_function pfg vector_derivative_at)
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1008
        using DERIV_exp has_field_derivative_def apply blast
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1009
        done
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1010
    qed
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1011
  qed
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1012
  also have "... = (pathfinish p - pathstart p) / (2 * of_real pi * \<i>)"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1013
  proof -
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1014
    have "((\<lambda>x. vector_derivative g (at x)) has_integral g 1 - g 0) {0..1}"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1015
      apply (rule fundamental_theorem_of_calculus [OF zero_le_one])
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1016
      by (metis has_vector_derivative_at_within has_vector_derivative_polynomial_function pfg vector_derivative_at)
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1017
    then show ?thesis
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1018
    apply (simp add: pathfinish_def pathstart_def)
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1019
      using \<open>g 0 = p 0\<close> \<open>g 1 = p 1\<close> by auto
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1020
  qed
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1021
  finally show ?thesis .
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1022
qed
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1023
69423
3922aa1df44e Tagged some theories in HOL-Analysis: Cauchy_Integral_Theorem, Riemann_Mapping and Winding_Numbers.
Wenda Li <wl302@cam.ac.uk>
parents: 68077
diff changeset
  1024
subsection%unimportant \<open>The winding number defines a continuous logarithm for the path itself\<close>
66826
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1025
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1026
lemma winding_number_as_continuous_log:
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1027
  assumes "path p" and \<zeta>: "\<zeta> \<notin> path_image p"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1028
  obtains q where "path q"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1029
                  "pathfinish q - pathstart q = 2 * of_real pi * \<i> * winding_number p \<zeta>"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1030
                  "\<And>t. t \<in> {0..1} \<Longrightarrow> p t = \<zeta> + exp(q t)"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1031
proof -
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1032
  let ?q = "\<lambda>t. 2 * of_real pi * \<i> * winding_number(subpath 0 t p) \<zeta> + Ln(pathstart p - \<zeta>)"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1033
  show ?thesis
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1034
  proof
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1035
    have *: "continuous (at t within {0..1}) (\<lambda>x. winding_number (subpath 0 x p) \<zeta>)"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1036
      if t: "t \<in> {0..1}" for t
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1037
    proof -
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1038
      let ?B = "ball (p t) (norm(p t - \<zeta>))"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1039
      have "p t \<noteq> \<zeta>"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1040
        using path_image_def that \<zeta> by blast
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1041
      then have "simply_connected ?B"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1042
        by (simp add: convex_imp_simply_connected)
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1043
      then have "\<And>f::complex\<Rightarrow>complex. continuous_on ?B f \<and> (\<forall>\<zeta> \<in> ?B. f \<zeta> \<noteq> 0)
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1044
                  \<longrightarrow> (\<exists>g. continuous_on ?B g \<and> (\<forall>\<zeta> \<in> ?B. f \<zeta> = exp (g \<zeta>)))"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1045
        by (simp add: simply_connected_eq_continuous_log)
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1046
      moreover have "continuous_on ?B (\<lambda>w. w - \<zeta>)"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1047
        by (intro continuous_intros)
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1048
      moreover have "(\<forall>z \<in> ?B. z - \<zeta> \<noteq> 0)"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1049
        by (auto simp: dist_norm)
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1050
      ultimately obtain g where contg: "continuous_on ?B g"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1051
        and geq: "\<And>z. z \<in> ?B \<Longrightarrow> z - \<zeta> = exp (g z)" by blast
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1052
      obtain d where "0 < d" and d:
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1053
        "\<And>x. \<lbrakk>x \<in> {0..1}; dist x t < d\<rbrakk> \<Longrightarrow> dist (p x) (p t) < cmod (p t - \<zeta>)"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1054
        using \<open>path p\<close> t unfolding path_def continuous_on_iff
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1055
        by (metis \<open>p t \<noteq> \<zeta>\<close> right_minus_eq zero_less_norm_iff)
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1056
      have "((\<lambda>x. winding_number (\<lambda>w. subpath 0 x p w - \<zeta>) 0 -
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1057
                  winding_number (\<lambda>w. subpath 0 t p w - \<zeta>) 0) \<longlongrightarrow> 0)
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1058
            (at t within {0..1})"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1059
      proof (rule Lim_transform_within [OF _ \<open>d > 0\<close>])
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1060
        have "continuous (at t within {0..1}) (g o p)"
68077
ee8c13ae81e9 Some tidying up (mostly regarding summations from 0)
paulson <lp15@cam.ac.uk>
parents: 67135
diff changeset
  1061
        proof (rule continuous_within_compose)
ee8c13ae81e9 Some tidying up (mostly regarding summations from 0)
paulson <lp15@cam.ac.uk>
parents: 67135
diff changeset
  1062
          show "continuous (at t within {0..1}) p"
ee8c13ae81e9 Some tidying up (mostly regarding summations from 0)
paulson <lp15@cam.ac.uk>
parents: 67135
diff changeset
  1063
            using \<open>path p\<close> continuous_on_eq_continuous_within path_def that by blast
ee8c13ae81e9 Some tidying up (mostly regarding summations from 0)
paulson <lp15@cam.ac.uk>
parents: 67135
diff changeset
  1064
          show "continuous (at (p t) within p ` {0..1}) g"
ee8c13ae81e9 Some tidying up (mostly regarding summations from 0)
paulson <lp15@cam.ac.uk>
parents: 67135
diff changeset
  1065
            by (metis (no_types, lifting) open_ball UNIV_I \<open>p t \<noteq> \<zeta>\<close> centre_in_ball contg continuous_on_eq_continuous_at continuous_within_topological right_minus_eq zero_less_norm_iff)
ee8c13ae81e9 Some tidying up (mostly regarding summations from 0)
paulson <lp15@cam.ac.uk>
parents: 67135
diff changeset
  1066
        qed
66826
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1067
        with LIM_zero have "((\<lambda>u. (g (subpath t u p 1) - g (subpath t u p 0))) \<longlongrightarrow> 0) (at t within {0..1})"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1068
          by (auto simp: subpath_def continuous_within o_def)
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1069
        then show "((\<lambda>u.  (g (subpath t u p 1) - g (subpath t u p 0)) / (2 * of_real pi * \<i>)) \<longlongrightarrow> 0)
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1070
           (at t within {0..1})"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1071
          by (simp add: tendsto_divide_zero)
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1072
        show "(g (subpath t u p 1) - g (subpath t u p 0)) / (2 * of_real pi * \<i>) =
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1073
              winding_number (\<lambda>w. subpath 0 u p w - \<zeta>) 0 - winding_number (\<lambda>w. subpath 0 t p w - \<zeta>) 0"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1074
          if "u \<in> {0..1}" "0 < dist u t" "dist u t < d" for u
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1075
        proof -
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1076
          have "closed_segment t u \<subseteq> {0..1}"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1077
            using closed_segment_eq_real_ivl t that by auto
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1078
          then have piB: "path_image(subpath t u p) \<subseteq> ?B"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1079
            apply (clarsimp simp add: path_image_subpath_gen)
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1080
            by (metis subsetD le_less_trans \<open>dist u t < d\<close> d dist_commute dist_in_closed_segment)
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1081
          have *: "path (g \<circ> subpath t u p)"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1082
            apply (rule path_continuous_image)
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1083
            using \<open>path p\<close> t that apply auto[1]
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1084
            using piB contg continuous_on_subset by blast
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1085
          have "(g (subpath t u p 1) - g (subpath t u p 0)) / (2 * of_real pi * \<i>)
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1086
              =  winding_number (exp \<circ> g \<circ> subpath t u p) 0"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1087
            using winding_number_compose_exp [OF *]
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1088
            by (simp add: pathfinish_def pathstart_def o_assoc)
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1089
          also have "... = winding_number (\<lambda>w. subpath t u p w - \<zeta>) 0"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1090
          proof (rule winding_number_cong)
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1091
            have "exp(g y) = y - \<zeta>" if "y \<in> (subpath t u p) ` {0..1}" for y
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1092
              by (metis that geq path_image_def piB subset_eq)
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1093
            then show "\<And>x. \<lbrakk>0 \<le> x; x \<le> 1\<rbrakk> \<Longrightarrow> (exp \<circ> g \<circ> subpath t u p) x = subpath t u p x - \<zeta>"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1094
              by auto
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1095
          qed
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1096
          also have "... = winding_number (\<lambda>w. subpath 0 u p w - \<zeta>) 0 -
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1097
                           winding_number (\<lambda>w. subpath 0 t p w - \<zeta>) 0"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1098
            apply (simp add: winding_number_offset [symmetric])
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1099
            using winding_number_subpath_combine [OF \<open>path p\<close> \<zeta>, of 0 t u] \<open>t \<in> {0..1}\<close> \<open>u \<in> {0..1}\<close>
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1100
            by (simp add: add.commute eq_diff_eq)
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1101
          finally show ?thesis .
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1102
        qed
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1103
      qed
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1104
      then show ?thesis
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1105
        by (subst winding_number_offset) (simp add: continuous_within LIM_zero_iff)
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1106
    qed
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1107
    show "path ?q"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1108
      unfolding path_def
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1109
      by (intro continuous_intros) (simp add: continuous_on_eq_continuous_within *)
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1110
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1111
    have "\<zeta> \<noteq> p 0"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1112
      by (metis \<zeta> pathstart_def pathstart_in_path_image)
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1113
    then show "pathfinish ?q - pathstart ?q = 2 * of_real pi * \<i> * winding_number p \<zeta>"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1114
      by (simp add: pathfinish_def pathstart_def)
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1115
    show "p t = \<zeta> + exp (?q t)" if "t \<in> {0..1}" for t
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1116
    proof -
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1117
      have "path (subpath 0 t p)"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1118
        using \<open>path p\<close> that by auto
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1119
      moreover
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1120
      have "\<zeta> \<notin> path_image (subpath 0 t p)"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1121
        using \<zeta> [unfolded path_image_def] that by (auto simp: path_image_subpath)
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1122
      ultimately show ?thesis
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1123
        using winding_number_exp_2pi [of "subpath 0 t p" \<zeta>] \<open>\<zeta> \<noteq> p 0\<close>
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1124
        by (auto simp: exp_add algebra_simps pathfinish_def pathstart_def subpath_def)
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1125
    qed
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1126
  qed
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1127
qed
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1128
69423
3922aa1df44e Tagged some theories in HOL-Analysis: Cauchy_Integral_Theorem, Riemann_Mapping and Winding_Numbers.
Wenda Li <wl302@cam.ac.uk>
parents: 68077
diff changeset
  1129
subsection \<open>Winding number equality is the same as path/loop homotopy in C - {0}\<close>
66826
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1130
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1131
lemma winding_number_homotopic_loops_null_eq:
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1132
  assumes "path p" and \<zeta>: "\<zeta> \<notin> path_image p"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1133
  shows "winding_number p \<zeta> = 0 \<longleftrightarrow> (\<exists>a. homotopic_loops (-{\<zeta>}) p (\<lambda>t. a))"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1134
    (is "?lhs = ?rhs")
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1135
proof
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1136
  assume [simp]: ?lhs
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1137
  obtain q where "path q"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1138
             and qeq:  "pathfinish q - pathstart q = 2 * of_real pi * \<i> * winding_number p \<zeta>"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1139
             and peq: "\<And>t. t \<in> {0..1} \<Longrightarrow> p t = \<zeta> + exp(q t)"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1140
    using winding_number_as_continuous_log [OF assms] by blast
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1141
  have *: "homotopic_with (\<lambda>r. pathfinish r = pathstart r)
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1142
                       {0..1} (-{\<zeta>}) ((\<lambda>w. \<zeta> + exp w) \<circ> q) ((\<lambda>w. \<zeta> + exp w) \<circ> (\<lambda>t. 0))"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1143
  proof (rule homotopic_with_compose_continuous_left)
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1144
    show "homotopic_with (\<lambda>f. pathfinish ((\<lambda>w. \<zeta> + exp w) \<circ> f) = pathstart ((\<lambda>w. \<zeta> + exp w) \<circ> f))
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1145
              {0..1} UNIV q (\<lambda>t. 0)"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1146
    proof (rule homotopic_with_mono, simp_all add: pathfinish_def pathstart_def)
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1147
      have "homotopic_loops UNIV q (\<lambda>t. 0)"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1148
        by (rule homotopic_loops_linear) (use qeq \<open>path q\<close> in \<open>auto simp: continuous_on_const path_defs\<close>)
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1149
      then show "homotopic_with (\<lambda>h. exp (h 1) = exp (h 0)) {0..1} UNIV q (\<lambda>t. 0)"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1150
        by (simp add: homotopic_loops_def homotopic_with_mono pathfinish_def pathstart_def)
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1151
    qed
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1152
    show "continuous_on UNIV (\<lambda>w. \<zeta> + exp w)"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1153
      by (rule continuous_intros)+
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1154
    show "range (\<lambda>w. \<zeta> + exp w) \<subseteq> -{\<zeta>}"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1155
      by auto
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1156
  qed
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1157
  then have "homotopic_with (\<lambda>r. pathfinish r = pathstart r) {0..1} (-{\<zeta>}) p (\<lambda>x. \<zeta> + 1)"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1158
    by (rule homotopic_with_eq) (auto simp: o_def peq pathfinish_def pathstart_def)
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1159
  then have "homotopic_loops (-{\<zeta>}) p (\<lambda>t. \<zeta> + 1)"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1160
    by (simp add: homotopic_loops_def)
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1161
  then show ?rhs ..
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1162
next
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1163
  assume ?rhs
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1164
  then obtain a where "homotopic_loops (-{\<zeta>}) p (\<lambda>t. a)" ..
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1165
  then have "winding_number p \<zeta> = winding_number (\<lambda>t. a) \<zeta>" "a \<noteq> \<zeta>"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1166
    using winding_number_homotopic_loops homotopic_loops_imp_subset by (force simp:)+
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1167
  moreover have "winding_number (\<lambda>t. a) \<zeta> = 0"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1168
    by (metis winding_number_zero_const \<open>a \<noteq> \<zeta>\<close>)
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1169
  ultimately show ?lhs by metis
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1170
qed
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1171
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1172
lemma winding_number_homotopic_paths_null_explicit_eq:
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1173
  assumes "path p" and \<zeta>: "\<zeta> \<notin> path_image p"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1174
  shows "winding_number p \<zeta> = 0 \<longleftrightarrow> homotopic_paths (-{\<zeta>}) p (linepath (pathstart p) (pathstart p))"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1175
        (is "?lhs = ?rhs")
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1176
proof
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1177
  assume ?lhs
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1178
  then show ?rhs
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1179
    apply (auto simp: winding_number_homotopic_loops_null_eq [OF assms])
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1180
    apply (rule homotopic_loops_imp_homotopic_paths_null)
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1181
    apply (simp add: linepath_refl)
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1182
    done
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1183
next
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1184
  assume ?rhs
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1185
  then show ?lhs
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1186
    by (metis \<zeta> pathstart_in_path_image winding_number_homotopic_paths winding_number_trivial)
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1187
qed
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1188
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1189
lemma winding_number_homotopic_paths_null_eq:
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1190
  assumes "path p" and \<zeta>: "\<zeta> \<notin> path_image p"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1191
  shows "winding_number p \<zeta> = 0 \<longleftrightarrow> (\<exists>a. homotopic_paths (-{\<zeta>}) p (\<lambda>t. a))"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1192
    (is "?lhs = ?rhs")
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1193
proof
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1194
  assume ?lhs
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1195
  then show ?rhs
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1196
    by (auto simp: winding_number_homotopic_paths_null_explicit_eq [OF assms] linepath_refl)
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1197
next
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1198
  assume ?rhs
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1199
  then show ?lhs
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1200
    by (metis \<zeta> homotopic_paths_imp_pathfinish pathfinish_def pathfinish_in_path_image winding_number_homotopic_paths winding_number_zero_const)
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1201
qed
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1202
69423
3922aa1df44e Tagged some theories in HOL-Analysis: Cauchy_Integral_Theorem, Riemann_Mapping and Winding_Numbers.
Wenda Li <wl302@cam.ac.uk>
parents: 68077
diff changeset
  1203
proposition winding_number_homotopic_paths_eq:
66826
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1204
  assumes "path p" and \<zeta>p: "\<zeta> \<notin> path_image p"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1205
      and "path q" and \<zeta>q: "\<zeta> \<notin> path_image q"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1206
      and qp: "pathstart q = pathstart p" "pathfinish q = pathfinish p"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1207
    shows "winding_number p \<zeta> = winding_number q \<zeta> \<longleftrightarrow> homotopic_paths (-{\<zeta>}) p q"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1208
    (is "?lhs = ?rhs")
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1209
proof
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1210
  assume ?lhs
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1211
  then have "winding_number (p +++ reversepath q) \<zeta> = 0"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1212
    using assms by (simp add: winding_number_join winding_number_reversepath)
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1213
  moreover
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1214
  have "path (p +++ reversepath q)" "\<zeta> \<notin> path_image (p +++ reversepath q)"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1215
    using assms by (auto simp: not_in_path_image_join)
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1216
  ultimately obtain a where "homotopic_paths (- {\<zeta>}) (p +++ reversepath q) (linepath a a)"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1217
    using winding_number_homotopic_paths_null_explicit_eq by blast
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1218
  then show ?rhs
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1219
    using homotopic_paths_imp_pathstart assms
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1220
    by (fastforce simp add: dest: homotopic_paths_imp_homotopic_loops homotopic_paths_loop_parts)
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1221
next
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1222
  assume ?rhs
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1223
  then show ?lhs
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1224
    by (simp add: winding_number_homotopic_paths)
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1225
qed
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1226
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1227
lemma winding_number_homotopic_loops_eq:
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1228
  assumes "path p" and \<zeta>p: "\<zeta> \<notin> path_image p"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1229
      and "path q" and \<zeta>q: "\<zeta> \<notin> path_image q"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1230
      and loops: "pathfinish p = pathstart p" "pathfinish q = pathstart q"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1231
    shows "winding_number p \<zeta> = winding_number q \<zeta> \<longleftrightarrow> homotopic_loops (-{\<zeta>}) p q"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1232
    (is "?lhs = ?rhs")
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1233
proof
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1234
  assume L: ?lhs
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1235
  have "pathstart p \<noteq> \<zeta>" "pathstart q \<noteq> \<zeta>"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1236
    using \<zeta>p \<zeta>q by blast+
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1237
  moreover have "path_connected (-{\<zeta>})"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1238
    by (simp add: path_connected_punctured_universe)
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1239
  ultimately obtain r where "path r" and rim: "path_image r \<subseteq> -{\<zeta>}"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1240
                        and pas: "pathstart r = pathstart p" and paf: "pathfinish r = pathstart q"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1241
    by (auto simp: path_connected_def)
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1242
  then have "pathstart r \<noteq> \<zeta>" by blast
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1243
  have "homotopic_loops (- {\<zeta>}) p (r +++ q +++ reversepath r)"
68077
ee8c13ae81e9 Some tidying up (mostly regarding summations from 0)
paulson <lp15@cam.ac.uk>
parents: 67135
diff changeset
  1244
  proof (rule homotopic_paths_imp_homotopic_loops)
ee8c13ae81e9 Some tidying up (mostly regarding summations from 0)
paulson <lp15@cam.ac.uk>
parents: 67135
diff changeset
  1245
    show "homotopic_paths (- {\<zeta>}) p (r +++ q +++ reversepath r)"
ee8c13ae81e9 Some tidying up (mostly regarding summations from 0)
paulson <lp15@cam.ac.uk>
parents: 67135
diff changeset
  1246
      by (metis (mono_tags, hide_lams) \<open>path r\<close> L \<zeta>p \<zeta>q \<open>path p\<close> \<open>path q\<close> homotopic_loops_conjugate loops not_in_path_image_join paf pas path_image_reversepath path_imp_reversepath path_join_eq pathfinish_join pathfinish_reversepath  pathstart_join pathstart_reversepath rim subset_Compl_singleton winding_number_homotopic_loops winding_number_homotopic_paths_eq)
ee8c13ae81e9 Some tidying up (mostly regarding summations from 0)
paulson <lp15@cam.ac.uk>
parents: 67135
diff changeset
  1247
  qed (use loops pas in auto)
66826
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1248
  moreover have "homotopic_loops (- {\<zeta>}) (r +++ q +++ reversepath r) q"
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1249
    using rim \<zeta>q by (auto simp: homotopic_loops_conjugate paf \<open>path q\<close> \<open>path r\<close> loops)
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1250
  ultimately show ?rhs
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1251
    using homotopic_loops_trans by metis
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1252
next
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1253
  assume ?rhs
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1254
  then show ?lhs
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1255
    by (simp add: winding_number_homotopic_loops)
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1256
qed
0d60d2118544 Session HOL-Analysis: Moebius functions and the Riemann mapping theorem.
paulson <lp15@cam.ac.uk>
parents: 66393
diff changeset
  1257
65039
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1258
end
87972e6177bc New theory about Winding Numbers
paulson <lp15@cam.ac.uk>
parents:
diff changeset
  1259