src/HOL/Topological_Spaces.thy
author kuncar
Thu, 10 Apr 2014 17:48:18 +0200
changeset 57866 f4ba736040fa
parent 57860 beb3b6851665
child 58291 d1a937cbf858
permissions -rw-r--r--
setup for Transfer and Lifting from BNF; tuned thm names
     1 (*  Title:      HOL/Topological_Spaces.thy
     2     Author:     Brian Huffman
     3     Author:     Johannes Hölzl
     4 *)
     5 
     6 header {* Topological Spaces *}
     7 
     8 theory Topological_Spaces
     9 imports Main Conditionally_Complete_Lattices
    10 begin
    11 
    12 ML {*
    13 
    14 structure Continuous_Intros = Named_Thms
    15 (
    16   val name = @{binding continuous_intros}
    17   val description = "Structural introduction rules for continuity"
    18 )
    19 
    20 *}
    21 
    22 setup Continuous_Intros.setup
    23 
    24 subsection {* Topological space *}
    25 
    26 class "open" =
    27   fixes "open" :: "'a set \<Rightarrow> bool"
    28 
    29 class topological_space = "open" +
    30   assumes open_UNIV [simp, intro]: "open UNIV"
    31   assumes open_Int [intro]: "open S \<Longrightarrow> open T \<Longrightarrow> open (S \<inter> T)"
    32   assumes open_Union [intro]: "\<forall>S\<in>K. open S \<Longrightarrow> open (\<Union> K)"
    33 begin
    34 
    35 definition
    36   closed :: "'a set \<Rightarrow> bool" where
    37   "closed S \<longleftrightarrow> open (- S)"
    38 
    39 lemma open_empty [continuous_intros, intro, simp]: "open {}"
    40   using open_Union [of "{}"] by simp
    41 
    42 lemma open_Un [continuous_intros, intro]: "open S \<Longrightarrow> open T \<Longrightarrow> open (S \<union> T)"
    43   using open_Union [of "{S, T}"] by simp
    44 
    45 lemma open_UN [continuous_intros, intro]: "\<forall>x\<in>A. open (B x) \<Longrightarrow> open (\<Union>x\<in>A. B x)"
    46   using open_Union [of "B ` A"] by simp
    47 
    48 lemma open_Inter [continuous_intros, intro]: "finite S \<Longrightarrow> \<forall>T\<in>S. open T \<Longrightarrow> open (\<Inter>S)"
    49   by (induct set: finite) auto
    50 
    51 lemma open_INT [continuous_intros, intro]: "finite A \<Longrightarrow> \<forall>x\<in>A. open (B x) \<Longrightarrow> open (\<Inter>x\<in>A. B x)"
    52   using open_Inter [of "B ` A"] by simp
    53 
    54 lemma openI:
    55   assumes "\<And>x. x \<in> S \<Longrightarrow> \<exists>T. open T \<and> x \<in> T \<and> T \<subseteq> S"
    56   shows "open S"
    57 proof -
    58   have "open (\<Union>{T. open T \<and> T \<subseteq> S})" by auto
    59   moreover have "\<Union>{T. open T \<and> T \<subseteq> S} = S" by (auto dest!: assms)
    60   ultimately show "open S" by simp
    61 qed
    62 
    63 lemma closed_empty [continuous_intros, intro, simp]:  "closed {}"
    64   unfolding closed_def by simp
    65 
    66 lemma closed_Un [continuous_intros, intro]: "closed S \<Longrightarrow> closed T \<Longrightarrow> closed (S \<union> T)"
    67   unfolding closed_def by auto
    68 
    69 lemma closed_UNIV [continuous_intros, intro, simp]: "closed UNIV"
    70   unfolding closed_def by simp
    71 
    72 lemma closed_Int [continuous_intros, intro]: "closed S \<Longrightarrow> closed T \<Longrightarrow> closed (S \<inter> T)"
    73   unfolding closed_def by auto
    74 
    75 lemma closed_INT [continuous_intros, intro]: "\<forall>x\<in>A. closed (B x) \<Longrightarrow> closed (\<Inter>x\<in>A. B x)"
    76   unfolding closed_def by auto
    77 
    78 lemma closed_Inter [continuous_intros, intro]: "\<forall>S\<in>K. closed S \<Longrightarrow> closed (\<Inter> K)"
    79   unfolding closed_def uminus_Inf by auto
    80 
    81 lemma closed_Union [continuous_intros, intro]: "finite S \<Longrightarrow> \<forall>T\<in>S. closed T \<Longrightarrow> closed (\<Union>S)"
    82   by (induct set: finite) auto
    83 
    84 lemma closed_UN [continuous_intros, intro]: "finite A \<Longrightarrow> \<forall>x\<in>A. closed (B x) \<Longrightarrow> closed (\<Union>x\<in>A. B x)"
    85   using closed_Union [of "B ` A"] by simp
    86 
    87 lemma open_closed: "open S \<longleftrightarrow> closed (- S)"
    88   unfolding closed_def by simp
    89 
    90 lemma closed_open: "closed S \<longleftrightarrow> open (- S)"
    91   unfolding closed_def by simp
    92 
    93 lemma open_Diff [continuous_intros, intro]: "open S \<Longrightarrow> closed T \<Longrightarrow> open (S - T)"
    94   unfolding closed_open Diff_eq by (rule open_Int)
    95 
    96 lemma closed_Diff [continuous_intros, intro]: "closed S \<Longrightarrow> open T \<Longrightarrow> closed (S - T)"
    97   unfolding open_closed Diff_eq by (rule closed_Int)
    98 
    99 lemma open_Compl [continuous_intros, intro]: "closed S \<Longrightarrow> open (- S)"
   100   unfolding closed_open .
   101 
   102 lemma closed_Compl [continuous_intros, intro]: "open S \<Longrightarrow> closed (- S)"
   103   unfolding open_closed .
   104 
   105 end
   106 
   107 subsection{* Hausdorff and other separation properties *}
   108 
   109 class t0_space = topological_space +
   110   assumes t0_space: "x \<noteq> y \<Longrightarrow> \<exists>U. open U \<and> \<not> (x \<in> U \<longleftrightarrow> y \<in> U)"
   111 
   112 class t1_space = topological_space +
   113   assumes t1_space: "x \<noteq> y \<Longrightarrow> \<exists>U. open U \<and> x \<in> U \<and> y \<notin> U"
   114 
   115 instance t1_space \<subseteq> t0_space
   116 proof qed (fast dest: t1_space)
   117 
   118 lemma separation_t1:
   119   fixes x y :: "'a::t1_space"
   120   shows "x \<noteq> y \<longleftrightarrow> (\<exists>U. open U \<and> x \<in> U \<and> y \<notin> U)"
   121   using t1_space[of x y] by blast
   122 
   123 lemma closed_singleton:
   124   fixes a :: "'a::t1_space"
   125   shows "closed {a}"
   126 proof -
   127   let ?T = "\<Union>{S. open S \<and> a \<notin> S}"
   128   have "open ?T" by (simp add: open_Union)
   129   also have "?T = - {a}"
   130     by (simp add: set_eq_iff separation_t1, auto)
   131   finally show "closed {a}" unfolding closed_def .
   132 qed
   133 
   134 lemma closed_insert [continuous_intros, simp]:
   135   fixes a :: "'a::t1_space"
   136   assumes "closed S" shows "closed (insert a S)"
   137 proof -
   138   from closed_singleton assms
   139   have "closed ({a} \<union> S)" by (rule closed_Un)
   140   thus "closed (insert a S)" by simp
   141 qed
   142 
   143 lemma finite_imp_closed:
   144   fixes S :: "'a::t1_space set"
   145   shows "finite S \<Longrightarrow> closed S"
   146 by (induct set: finite, simp_all)
   147 
   148 text {* T2 spaces are also known as Hausdorff spaces. *}
   149 
   150 class t2_space = topological_space +
   151   assumes hausdorff: "x \<noteq> y \<Longrightarrow> \<exists>U V. open U \<and> open V \<and> x \<in> U \<and> y \<in> V \<and> U \<inter> V = {}"
   152 
   153 instance t2_space \<subseteq> t1_space
   154 proof qed (fast dest: hausdorff)
   155 
   156 lemma separation_t2:
   157   fixes x y :: "'a::t2_space"
   158   shows "x \<noteq> y \<longleftrightarrow> (\<exists>U V. open U \<and> open V \<and> x \<in> U \<and> y \<in> V \<and> U \<inter> V = {})"
   159   using hausdorff[of x y] by blast
   160 
   161 lemma separation_t0:
   162   fixes x y :: "'a::t0_space"
   163   shows "x \<noteq> y \<longleftrightarrow> (\<exists>U. open U \<and> ~(x\<in>U \<longleftrightarrow> y\<in>U))"
   164   using t0_space[of x y] by blast
   165 
   166 text {* A perfect space is a topological space with no isolated points. *}
   167 
   168 class perfect_space = topological_space +
   169   assumes not_open_singleton: "\<not> open {x}"
   170 
   171 
   172 subsection {* Generators for toplogies *}
   173 
   174 inductive generate_topology for S where
   175   UNIV: "generate_topology S UNIV"
   176 | Int: "generate_topology S a \<Longrightarrow> generate_topology S b \<Longrightarrow> generate_topology S (a \<inter> b)"
   177 | UN: "(\<And>k. k \<in> K \<Longrightarrow> generate_topology S k) \<Longrightarrow> generate_topology S (\<Union>K)"
   178 | Basis: "s \<in> S \<Longrightarrow> generate_topology S s"
   179 
   180 hide_fact (open) UNIV Int UN Basis 
   181 
   182 lemma generate_topology_Union: 
   183   "(\<And>k. k \<in> I \<Longrightarrow> generate_topology S (K k)) \<Longrightarrow> generate_topology S (\<Union>k\<in>I. K k)"
   184   using generate_topology.UN [of "K ` I"] by auto
   185 
   186 lemma topological_space_generate_topology:
   187   "class.topological_space (generate_topology S)"
   188   by default (auto intro: generate_topology.intros)
   189 
   190 subsection {* Order topologies *}
   191 
   192 class order_topology = order + "open" +
   193   assumes open_generated_order: "open = generate_topology (range (\<lambda>a. {..< a}) \<union> range (\<lambda>a. {a <..}))"
   194 begin
   195 
   196 subclass topological_space
   197   unfolding open_generated_order
   198   by (rule topological_space_generate_topology)
   199 
   200 lemma open_greaterThan [continuous_intros, simp]: "open {a <..}"
   201   unfolding open_generated_order by (auto intro: generate_topology.Basis)
   202 
   203 lemma open_lessThan [continuous_intros, simp]: "open {..< a}"
   204   unfolding open_generated_order by (auto intro: generate_topology.Basis)
   205 
   206 lemma open_greaterThanLessThan [continuous_intros, simp]: "open {a <..< b}"
   207    unfolding greaterThanLessThan_eq by (simp add: open_Int)
   208 
   209 end
   210 
   211 class linorder_topology = linorder + order_topology
   212 
   213 lemma closed_atMost [continuous_intros, simp]: "closed {.. a::'a::linorder_topology}"
   214   by (simp add: closed_open)
   215 
   216 lemma closed_atLeast [continuous_intros, simp]: "closed {a::'a::linorder_topology ..}"
   217   by (simp add: closed_open)
   218 
   219 lemma closed_atLeastAtMost [continuous_intros, simp]: "closed {a::'a::linorder_topology .. b}"
   220 proof -
   221   have "{a .. b} = {a ..} \<inter> {.. b}"
   222     by auto
   223   then show ?thesis
   224     by (simp add: closed_Int)
   225 qed
   226 
   227 lemma (in linorder) less_separate:
   228   assumes "x < y"
   229   shows "\<exists>a b. x \<in> {..< a} \<and> y \<in> {b <..} \<and> {..< a} \<inter> {b <..} = {}"
   230 proof (cases "\<exists>z. x < z \<and> z < y")
   231   case True
   232   then obtain z where "x < z \<and> z < y" ..
   233   then have "x \<in> {..< z} \<and> y \<in> {z <..} \<and> {z <..} \<inter> {..< z} = {}"
   234     by auto
   235   then show ?thesis by blast
   236 next
   237   case False
   238   with `x < y` have "x \<in> {..< y} \<and> y \<in> {x <..} \<and> {x <..} \<inter> {..< y} = {}"
   239     by auto
   240   then show ?thesis by blast
   241 qed
   242 
   243 instance linorder_topology \<subseteq> t2_space
   244 proof
   245   fix x y :: 'a
   246   from less_separate[of x y] less_separate[of y x]
   247   show "x \<noteq> y \<Longrightarrow> \<exists>U V. open U \<and> open V \<and> x \<in> U \<and> y \<in> V \<and> U \<inter> V = {}"
   248     by (elim neqE) (metis open_lessThan open_greaterThan Int_commute)+
   249 qed
   250 
   251 lemma (in linorder_topology) open_right:
   252   assumes "open S" "x \<in> S" and gt_ex: "x < y" shows "\<exists>b>x. {x ..< b} \<subseteq> S"
   253   using assms unfolding open_generated_order
   254 proof induction
   255   case (Int A B)
   256   then obtain a b where "a > x" "{x ..< a} \<subseteq> A"  "b > x" "{x ..< b} \<subseteq> B" by auto
   257   then show ?case by (auto intro!: exI[of _ "min a b"])
   258 next
   259   case (Basis S) then show ?case by (fastforce intro: exI[of _ y] gt_ex)
   260 qed blast+
   261 
   262 lemma (in linorder_topology) open_left:
   263   assumes "open S" "x \<in> S" and lt_ex: "y < x" shows "\<exists>b<x. {b <.. x} \<subseteq> S"
   264   using assms unfolding open_generated_order
   265 proof induction
   266   case (Int A B)
   267   then obtain a b where "a < x" "{a <.. x} \<subseteq> A"  "b < x" "{b <.. x} \<subseteq> B" by auto
   268   then show ?case by (auto intro!: exI[of _ "max a b"])
   269 next
   270   case (Basis S) then show ?case by (fastforce intro: exI[of _ y] lt_ex)
   271 qed blast+
   272 
   273 subsection {* Filters *}
   274 
   275 text {*
   276   This definition also allows non-proper filters.
   277 *}
   278 
   279 locale is_filter =
   280   fixes F :: "('a \<Rightarrow> bool) \<Rightarrow> bool"
   281   assumes True: "F (\<lambda>x. True)"
   282   assumes conj: "F (\<lambda>x. P x) \<Longrightarrow> F (\<lambda>x. Q x) \<Longrightarrow> F (\<lambda>x. P x \<and> Q x)"
   283   assumes mono: "\<forall>x. P x \<longrightarrow> Q x \<Longrightarrow> F (\<lambda>x. P x) \<Longrightarrow> F (\<lambda>x. Q x)"
   284 
   285 typedef 'a filter = "{F :: ('a \<Rightarrow> bool) \<Rightarrow> bool. is_filter F}"
   286 proof
   287   show "(\<lambda>x. True) \<in> ?filter" by (auto intro: is_filter.intro)
   288 qed
   289 
   290 lemma is_filter_Rep_filter: "is_filter (Rep_filter F)"
   291   using Rep_filter [of F] by simp
   292 
   293 lemma Abs_filter_inverse':
   294   assumes "is_filter F" shows "Rep_filter (Abs_filter F) = F"
   295   using assms by (simp add: Abs_filter_inverse)
   296 
   297 
   298 subsubsection {* Eventually *}
   299 
   300 definition eventually :: "('a \<Rightarrow> bool) \<Rightarrow> 'a filter \<Rightarrow> bool"
   301   where "eventually P F \<longleftrightarrow> Rep_filter F P"
   302 
   303 lemma eventually_Abs_filter:
   304   assumes "is_filter F" shows "eventually P (Abs_filter F) = F P"
   305   unfolding eventually_def using assms by (simp add: Abs_filter_inverse)
   306 
   307 lemma filter_eq_iff:
   308   shows "F = F' \<longleftrightarrow> (\<forall>P. eventually P F = eventually P F')"
   309   unfolding Rep_filter_inject [symmetric] fun_eq_iff eventually_def ..
   310 
   311 lemma eventually_True [simp]: "eventually (\<lambda>x. True) F"
   312   unfolding eventually_def
   313   by (rule is_filter.True [OF is_filter_Rep_filter])
   314 
   315 lemma always_eventually: "\<forall>x. P x \<Longrightarrow> eventually P F"
   316 proof -
   317   assume "\<forall>x. P x" hence "P = (\<lambda>x. True)" by (simp add: ext)
   318   thus "eventually P F" by simp
   319 qed
   320 
   321 lemma eventually_mono:
   322   "(\<forall>x. P x \<longrightarrow> Q x) \<Longrightarrow> eventually P F \<Longrightarrow> eventually Q F"
   323   unfolding eventually_def
   324   by (rule is_filter.mono [OF is_filter_Rep_filter])
   325 
   326 lemma eventually_conj:
   327   assumes P: "eventually (\<lambda>x. P x) F"
   328   assumes Q: "eventually (\<lambda>x. Q x) F"
   329   shows "eventually (\<lambda>x. P x \<and> Q x) F"
   330   using assms unfolding eventually_def
   331   by (rule is_filter.conj [OF is_filter_Rep_filter])
   332 
   333 lemma eventually_Ball_finite:
   334   assumes "finite A" and "\<forall>y\<in>A. eventually (\<lambda>x. P x y) net"
   335   shows "eventually (\<lambda>x. \<forall>y\<in>A. P x y) net"
   336 using assms by (induct set: finite, simp, simp add: eventually_conj)
   337 
   338 lemma eventually_all_finite:
   339   fixes P :: "'a \<Rightarrow> 'b::finite \<Rightarrow> bool"
   340   assumes "\<And>y. eventually (\<lambda>x. P x y) net"
   341   shows "eventually (\<lambda>x. \<forall>y. P x y) net"
   342 using eventually_Ball_finite [of UNIV P] assms by simp
   343 
   344 lemma eventually_mp:
   345   assumes "eventually (\<lambda>x. P x \<longrightarrow> Q x) F"
   346   assumes "eventually (\<lambda>x. P x) F"
   347   shows "eventually (\<lambda>x. Q x) F"
   348 proof (rule eventually_mono)
   349   show "\<forall>x. (P x \<longrightarrow> Q x) \<and> P x \<longrightarrow> Q x" by simp
   350   show "eventually (\<lambda>x. (P x \<longrightarrow> Q x) \<and> P x) F"
   351     using assms by (rule eventually_conj)
   352 qed
   353 
   354 lemma eventually_rev_mp:
   355   assumes "eventually (\<lambda>x. P x) F"
   356   assumes "eventually (\<lambda>x. P x \<longrightarrow> Q x) F"
   357   shows "eventually (\<lambda>x. Q x) F"
   358 using assms(2) assms(1) by (rule eventually_mp)
   359 
   360 lemma eventually_conj_iff:
   361   "eventually (\<lambda>x. P x \<and> Q x) F \<longleftrightarrow> eventually P F \<and> eventually Q F"
   362   by (auto intro: eventually_conj elim: eventually_rev_mp)
   363 
   364 lemma eventually_elim1:
   365   assumes "eventually (\<lambda>i. P i) F"
   366   assumes "\<And>i. P i \<Longrightarrow> Q i"
   367   shows "eventually (\<lambda>i. Q i) F"
   368   using assms by (auto elim!: eventually_rev_mp)
   369 
   370 lemma eventually_elim2:
   371   assumes "eventually (\<lambda>i. P i) F"
   372   assumes "eventually (\<lambda>i. Q i) F"
   373   assumes "\<And>i. P i \<Longrightarrow> Q i \<Longrightarrow> R i"
   374   shows "eventually (\<lambda>i. R i) F"
   375   using assms by (auto elim!: eventually_rev_mp)
   376 
   377 lemma eventually_subst:
   378   assumes "eventually (\<lambda>n. P n = Q n) F"
   379   shows "eventually P F = eventually Q F" (is "?L = ?R")
   380 proof -
   381   from assms have "eventually (\<lambda>x. P x \<longrightarrow> Q x) F"
   382       and "eventually (\<lambda>x. Q x \<longrightarrow> P x) F"
   383     by (auto elim: eventually_elim1)
   384   then show ?thesis by (auto elim: eventually_elim2)
   385 qed
   386 
   387 ML {*
   388   fun eventually_elim_tac ctxt thms = SUBGOAL_CASES (fn (_, _, st) =>
   389     let
   390       val thy = Proof_Context.theory_of ctxt
   391       val mp_thms = thms RL [@{thm eventually_rev_mp}]
   392       val raw_elim_thm =
   393         (@{thm allI} RS @{thm always_eventually})
   394         |> fold (fn thm1 => fn thm2 => thm2 RS thm1) mp_thms
   395         |> fold (fn _ => fn thm => @{thm impI} RS thm) thms
   396       val cases_prop = prop_of (raw_elim_thm RS st)
   397       val cases = (Rule_Cases.make_common (thy, cases_prop) [(("elim", []), [])])
   398     in
   399       CASES cases (rtac raw_elim_thm 1)
   400     end) 1
   401 *}
   402 
   403 method_setup eventually_elim = {*
   404   Scan.succeed (fn ctxt => METHOD_CASES (eventually_elim_tac ctxt))
   405 *} "elimination of eventually quantifiers"
   406 
   407 
   408 subsubsection {* Finer-than relation *}
   409 
   410 text {* @{term "F \<le> F'"} means that filter @{term F} is finer than
   411 filter @{term F'}. *}
   412 
   413 instantiation filter :: (type) complete_lattice
   414 begin
   415 
   416 definition le_filter_def:
   417   "F \<le> F' \<longleftrightarrow> (\<forall>P. eventually P F' \<longrightarrow> eventually P F)"
   418 
   419 definition
   420   "(F :: 'a filter) < F' \<longleftrightarrow> F \<le> F' \<and> \<not> F' \<le> F"
   421 
   422 definition
   423   "top = Abs_filter (\<lambda>P. \<forall>x. P x)"
   424 
   425 definition
   426   "bot = Abs_filter (\<lambda>P. True)"
   427 
   428 definition
   429   "sup F F' = Abs_filter (\<lambda>P. eventually P F \<and> eventually P F')"
   430 
   431 definition
   432   "inf F F' = Abs_filter
   433       (\<lambda>P. \<exists>Q R. eventually Q F \<and> eventually R F' \<and> (\<forall>x. Q x \<and> R x \<longrightarrow> P x))"
   434 
   435 definition
   436   "Sup S = Abs_filter (\<lambda>P. \<forall>F\<in>S. eventually P F)"
   437 
   438 definition
   439   "Inf S = Sup {F::'a filter. \<forall>F'\<in>S. F \<le> F'}"
   440 
   441 lemma eventually_top [simp]: "eventually P top \<longleftrightarrow> (\<forall>x. P x)"
   442   unfolding top_filter_def
   443   by (rule eventually_Abs_filter, rule is_filter.intro, auto)
   444 
   445 lemma eventually_bot [simp]: "eventually P bot"
   446   unfolding bot_filter_def
   447   by (subst eventually_Abs_filter, rule is_filter.intro, auto)
   448 
   449 lemma eventually_sup:
   450   "eventually P (sup F F') \<longleftrightarrow> eventually P F \<and> eventually P F'"
   451   unfolding sup_filter_def
   452   by (rule eventually_Abs_filter, rule is_filter.intro)
   453      (auto elim!: eventually_rev_mp)
   454 
   455 lemma eventually_inf:
   456   "eventually P (inf F F') \<longleftrightarrow>
   457    (\<exists>Q R. eventually Q F \<and> eventually R F' \<and> (\<forall>x. Q x \<and> R x \<longrightarrow> P x))"
   458   unfolding inf_filter_def
   459   apply (rule eventually_Abs_filter, rule is_filter.intro)
   460   apply (fast intro: eventually_True)
   461   apply clarify
   462   apply (intro exI conjI)
   463   apply (erule (1) eventually_conj)
   464   apply (erule (1) eventually_conj)
   465   apply simp
   466   apply auto
   467   done
   468 
   469 lemma eventually_Sup:
   470   "eventually P (Sup S) \<longleftrightarrow> (\<forall>F\<in>S. eventually P F)"
   471   unfolding Sup_filter_def
   472   apply (rule eventually_Abs_filter, rule is_filter.intro)
   473   apply (auto intro: eventually_conj elim!: eventually_rev_mp)
   474   done
   475 
   476 instance proof
   477   fix F F' F'' :: "'a filter" and S :: "'a filter set"
   478   { show "F < F' \<longleftrightarrow> F \<le> F' \<and> \<not> F' \<le> F"
   479     by (rule less_filter_def) }
   480   { show "F \<le> F"
   481     unfolding le_filter_def by simp }
   482   { assume "F \<le> F'" and "F' \<le> F''" thus "F \<le> F''"
   483     unfolding le_filter_def by simp }
   484   { assume "F \<le> F'" and "F' \<le> F" thus "F = F'"
   485     unfolding le_filter_def filter_eq_iff by fast }
   486   { show "inf F F' \<le> F" and "inf F F' \<le> F'"
   487     unfolding le_filter_def eventually_inf by (auto intro: eventually_True) }
   488   { assume "F \<le> F'" and "F \<le> F''" thus "F \<le> inf F' F''"
   489     unfolding le_filter_def eventually_inf
   490     by (auto elim!: eventually_mono intro: eventually_conj) }
   491   { show "F \<le> sup F F'" and "F' \<le> sup F F'"
   492     unfolding le_filter_def eventually_sup by simp_all }
   493   { assume "F \<le> F''" and "F' \<le> F''" thus "sup F F' \<le> F''"
   494     unfolding le_filter_def eventually_sup by simp }
   495   { assume "F'' \<in> S" thus "Inf S \<le> F''"
   496     unfolding le_filter_def Inf_filter_def eventually_Sup Ball_def by simp }
   497   { assume "\<And>F'. F' \<in> S \<Longrightarrow> F \<le> F'" thus "F \<le> Inf S"
   498     unfolding le_filter_def Inf_filter_def eventually_Sup Ball_def by simp }
   499   { assume "F \<in> S" thus "F \<le> Sup S"
   500     unfolding le_filter_def eventually_Sup by simp }
   501   { assume "\<And>F. F \<in> S \<Longrightarrow> F \<le> F'" thus "Sup S \<le> F'"
   502     unfolding le_filter_def eventually_Sup by simp }
   503   { show "Inf {} = (top::'a filter)"
   504     by (auto simp: top_filter_def Inf_filter_def Sup_filter_def)
   505       (metis (full_types) top_filter_def always_eventually eventually_top) }
   506   { show "Sup {} = (bot::'a filter)"
   507     by (auto simp: bot_filter_def Sup_filter_def) }
   508 qed
   509 
   510 end
   511 
   512 lemma filter_leD:
   513   "F \<le> F' \<Longrightarrow> eventually P F' \<Longrightarrow> eventually P F"
   514   unfolding le_filter_def by simp
   515 
   516 lemma filter_leI:
   517   "(\<And>P. eventually P F' \<Longrightarrow> eventually P F) \<Longrightarrow> F \<le> F'"
   518   unfolding le_filter_def by simp
   519 
   520 lemma eventually_False:
   521   "eventually (\<lambda>x. False) F \<longleftrightarrow> F = bot"
   522   unfolding filter_eq_iff by (auto elim: eventually_rev_mp)
   523 
   524 abbreviation (input) trivial_limit :: "'a filter \<Rightarrow> bool"
   525   where "trivial_limit F \<equiv> F = bot"
   526 
   527 lemma trivial_limit_def: "trivial_limit F \<longleftrightarrow> eventually (\<lambda>x. False) F"
   528   by (rule eventually_False [symmetric])
   529 
   530 lemma eventually_const: "\<not> trivial_limit net \<Longrightarrow> eventually (\<lambda>x. P) net \<longleftrightarrow> P"
   531   by (cases P) (simp_all add: eventually_False)
   532 
   533 
   534 subsubsection {* Map function for filters *}
   535 
   536 definition filtermap :: "('a \<Rightarrow> 'b) \<Rightarrow> 'a filter \<Rightarrow> 'b filter"
   537   where "filtermap f F = Abs_filter (\<lambda>P. eventually (\<lambda>x. P (f x)) F)"
   538 
   539 lemma eventually_filtermap:
   540   "eventually P (filtermap f F) = eventually (\<lambda>x. P (f x)) F"
   541   unfolding filtermap_def
   542   apply (rule eventually_Abs_filter)
   543   apply (rule is_filter.intro)
   544   apply (auto elim!: eventually_rev_mp)
   545   done
   546 
   547 lemma filtermap_ident: "filtermap (\<lambda>x. x) F = F"
   548   by (simp add: filter_eq_iff eventually_filtermap)
   549 
   550 lemma filtermap_filtermap:
   551   "filtermap f (filtermap g F) = filtermap (\<lambda>x. f (g x)) F"
   552   by (simp add: filter_eq_iff eventually_filtermap)
   553 
   554 lemma filtermap_mono: "F \<le> F' \<Longrightarrow> filtermap f F \<le> filtermap f F'"
   555   unfolding le_filter_def eventually_filtermap by simp
   556 
   557 lemma filtermap_bot [simp]: "filtermap f bot = bot"
   558   by (simp add: filter_eq_iff eventually_filtermap)
   559 
   560 lemma filtermap_sup: "filtermap f (sup F1 F2) = sup (filtermap f F1) (filtermap f F2)"
   561   by (auto simp: filter_eq_iff eventually_filtermap eventually_sup)
   562 
   563 subsubsection {* Order filters *}
   564 
   565 definition at_top :: "('a::order) filter"
   566   where "at_top = Abs_filter (\<lambda>P. \<exists>k. \<forall>n\<ge>k. P n)"
   567 
   568 lemma eventually_at_top_linorder: "eventually P at_top \<longleftrightarrow> (\<exists>N::'a::linorder. \<forall>n\<ge>N. P n)"
   569   unfolding at_top_def
   570 proof (rule eventually_Abs_filter, rule is_filter.intro)
   571   fix P Q :: "'a \<Rightarrow> bool"
   572   assume "\<exists>i. \<forall>n\<ge>i. P n" and "\<exists>j. \<forall>n\<ge>j. Q n"
   573   then obtain i j where "\<forall>n\<ge>i. P n" and "\<forall>n\<ge>j. Q n" by auto
   574   then have "\<forall>n\<ge>max i j. P n \<and> Q n" by simp
   575   then show "\<exists>k. \<forall>n\<ge>k. P n \<and> Q n" ..
   576 qed auto
   577 
   578 lemma eventually_ge_at_top:
   579   "eventually (\<lambda>x. (c::_::linorder) \<le> x) at_top"
   580   unfolding eventually_at_top_linorder by auto
   581 
   582 lemma eventually_at_top_dense: "eventually P at_top \<longleftrightarrow> (\<exists>N::'a::unbounded_dense_linorder. \<forall>n>N. P n)"
   583   unfolding eventually_at_top_linorder
   584 proof safe
   585   fix N assume "\<forall>n\<ge>N. P n"
   586   then show "\<exists>N. \<forall>n>N. P n" by (auto intro!: exI[of _ N])
   587 next
   588   fix N assume "\<forall>n>N. P n"
   589   moreover obtain y where "N < y" using gt_ex[of N] ..
   590   ultimately show "\<exists>N. \<forall>n\<ge>N. P n" by (auto intro!: exI[of _ y])
   591 qed
   592 
   593 lemma eventually_gt_at_top:
   594   "eventually (\<lambda>x. (c::_::unbounded_dense_linorder) < x) at_top"
   595   unfolding eventually_at_top_dense by auto
   596 
   597 definition at_bot :: "('a::order) filter"
   598   where "at_bot = Abs_filter (\<lambda>P. \<exists>k. \<forall>n\<le>k. P n)"
   599 
   600 lemma eventually_at_bot_linorder:
   601   fixes P :: "'a::linorder \<Rightarrow> bool" shows "eventually P at_bot \<longleftrightarrow> (\<exists>N. \<forall>n\<le>N. P n)"
   602   unfolding at_bot_def
   603 proof (rule eventually_Abs_filter, rule is_filter.intro)
   604   fix P Q :: "'a \<Rightarrow> bool"
   605   assume "\<exists>i. \<forall>n\<le>i. P n" and "\<exists>j. \<forall>n\<le>j. Q n"
   606   then obtain i j where "\<forall>n\<le>i. P n" and "\<forall>n\<le>j. Q n" by auto
   607   then have "\<forall>n\<le>min i j. P n \<and> Q n" by simp
   608   then show "\<exists>k. \<forall>n\<le>k. P n \<and> Q n" ..
   609 qed auto
   610 
   611 lemma eventually_le_at_bot:
   612   "eventually (\<lambda>x. x \<le> (c::_::linorder)) at_bot"
   613   unfolding eventually_at_bot_linorder by auto
   614 
   615 lemma eventually_at_bot_dense:
   616   fixes P :: "'a::unbounded_dense_linorder \<Rightarrow> bool" shows "eventually P at_bot \<longleftrightarrow> (\<exists>N. \<forall>n<N. P n)"
   617   unfolding eventually_at_bot_linorder
   618 proof safe
   619   fix N assume "\<forall>n\<le>N. P n" then show "\<exists>N. \<forall>n<N. P n" by (auto intro!: exI[of _ N])
   620 next
   621   fix N assume "\<forall>n<N. P n" 
   622   moreover obtain y where "y < N" using lt_ex[of N] ..
   623   ultimately show "\<exists>N. \<forall>n\<le>N. P n" by (auto intro!: exI[of _ y])
   624 qed
   625 
   626 lemma eventually_gt_at_bot:
   627   "eventually (\<lambda>x. x < (c::_::unbounded_dense_linorder)) at_bot"
   628   unfolding eventually_at_bot_dense by auto
   629 
   630 lemma trivial_limit_at_bot_linorder: "\<not> trivial_limit (at_bot ::('a::linorder) filter)"
   631   unfolding trivial_limit_def
   632   by (metis eventually_at_bot_linorder order_refl)
   633 
   634 lemma trivial_limit_at_top_linorder: "\<not> trivial_limit (at_top ::('a::linorder) filter)"
   635   unfolding trivial_limit_def
   636   by (metis eventually_at_top_linorder order_refl)
   637 
   638 subsection {* Sequentially *}
   639 
   640 abbreviation sequentially :: "nat filter"
   641   where "sequentially == at_top"
   642 
   643 lemma sequentially_def: "sequentially = Abs_filter (\<lambda>P. \<exists>k. \<forall>n\<ge>k. P n)"
   644   unfolding at_top_def by simp
   645 
   646 lemma eventually_sequentially:
   647   "eventually P sequentially \<longleftrightarrow> (\<exists>N. \<forall>n\<ge>N. P n)"
   648   by (rule eventually_at_top_linorder)
   649 
   650 lemma sequentially_bot [simp, intro]: "sequentially \<noteq> bot"
   651   unfolding filter_eq_iff eventually_sequentially by auto
   652 
   653 lemmas trivial_limit_sequentially = sequentially_bot
   654 
   655 lemma eventually_False_sequentially [simp]:
   656   "\<not> eventually (\<lambda>n. False) sequentially"
   657   by (simp add: eventually_False)
   658 
   659 lemma le_sequentially:
   660   "F \<le> sequentially \<longleftrightarrow> (\<forall>N. eventually (\<lambda>n. N \<le> n) F)"
   661   unfolding le_filter_def eventually_sequentially
   662   by (safe, fast, drule_tac x=N in spec, auto elim: eventually_rev_mp)
   663 
   664 lemma eventually_sequentiallyI:
   665   assumes "\<And>x. c \<le> x \<Longrightarrow> P x"
   666   shows "eventually P sequentially"
   667 using assms by (auto simp: eventually_sequentially)
   668 
   669 lemma eventually_sequentially_seg:
   670   "eventually (\<lambda>n. P (n + k)) sequentially \<longleftrightarrow> eventually P sequentially"
   671   unfolding eventually_sequentially
   672   apply safe
   673    apply (rule_tac x="N + k" in exI)
   674    apply rule
   675    apply (erule_tac x="n - k" in allE)
   676    apply auto []
   677   apply (rule_tac x=N in exI)
   678   apply auto []
   679   done
   680 
   681 subsubsection {* Standard filters *}
   682 
   683 definition principal :: "'a set \<Rightarrow> 'a filter" where
   684   "principal S = Abs_filter (\<lambda>P. \<forall>x\<in>S. P x)"
   685 
   686 lemma eventually_principal: "eventually P (principal S) \<longleftrightarrow> (\<forall>x\<in>S. P x)"
   687   unfolding principal_def
   688   by (rule eventually_Abs_filter, rule is_filter.intro) auto
   689 
   690 lemma eventually_inf_principal: "eventually P (inf F (principal s)) \<longleftrightarrow> eventually (\<lambda>x. x \<in> s \<longrightarrow> P x) F"
   691   unfolding eventually_inf eventually_principal by (auto elim: eventually_elim1)
   692 
   693 lemma principal_UNIV[simp]: "principal UNIV = top"
   694   by (auto simp: filter_eq_iff eventually_principal)
   695 
   696 lemma principal_empty[simp]: "principal {} = bot"
   697   by (auto simp: filter_eq_iff eventually_principal)
   698 
   699 lemma principal_le_iff[iff]: "principal A \<le> principal B \<longleftrightarrow> A \<subseteq> B"
   700   by (auto simp: le_filter_def eventually_principal)
   701 
   702 lemma le_principal: "F \<le> principal A \<longleftrightarrow> eventually (\<lambda>x. x \<in> A) F"
   703   unfolding le_filter_def eventually_principal
   704   apply safe
   705   apply (erule_tac x="\<lambda>x. x \<in> A" in allE)
   706   apply (auto elim: eventually_elim1)
   707   done
   708 
   709 lemma principal_inject[iff]: "principal A = principal B \<longleftrightarrow> A = B"
   710   unfolding eq_iff by simp
   711 
   712 lemma sup_principal[simp]: "sup (principal A) (principal B) = principal (A \<union> B)"
   713   unfolding filter_eq_iff eventually_sup eventually_principal by auto
   714 
   715 lemma inf_principal[simp]: "inf (principal A) (principal B) = principal (A \<inter> B)"
   716   unfolding filter_eq_iff eventually_inf eventually_principal
   717   by (auto intro: exI[of _ "\<lambda>x. x \<in> A"] exI[of _ "\<lambda>x. x \<in> B"])
   718 
   719 lemma SUP_principal[simp]: "(SUP i : I. principal (A i)) = principal (\<Union>i\<in>I. A i)"
   720   unfolding filter_eq_iff eventually_Sup SUP_def by (auto simp: eventually_principal)
   721 
   722 lemma filtermap_principal[simp]: "filtermap f (principal A) = principal (f ` A)"
   723   unfolding filter_eq_iff eventually_filtermap eventually_principal by simp
   724 
   725 subsubsection {* Topological filters *}
   726 
   727 definition (in topological_space) nhds :: "'a \<Rightarrow> 'a filter"
   728   where "nhds a = Abs_filter (\<lambda>P. \<exists>S. open S \<and> a \<in> S \<and> (\<forall>x\<in>S. P x))"
   729 
   730 definition (in topological_space) at_within :: "'a \<Rightarrow> 'a set \<Rightarrow> 'a filter" ("at (_) within (_)" [1000, 60] 60)
   731   where "at a within s = inf (nhds a) (principal (s - {a}))"
   732 
   733 abbreviation (in topological_space) at :: "'a \<Rightarrow> 'a filter" ("at") where
   734   "at x \<equiv> at x within (CONST UNIV)"
   735 
   736 abbreviation (in order_topology) at_right :: "'a \<Rightarrow> 'a filter" where
   737   "at_right x \<equiv> at x within {x <..}"
   738 
   739 abbreviation (in order_topology) at_left :: "'a \<Rightarrow> 'a filter" where
   740   "at_left x \<equiv> at x within {..< x}"
   741 
   742 lemma (in topological_space) eventually_nhds:
   743   "eventually P (nhds a) \<longleftrightarrow> (\<exists>S. open S \<and> a \<in> S \<and> (\<forall>x\<in>S. P x))"
   744   unfolding nhds_def
   745 proof (rule eventually_Abs_filter, rule is_filter.intro)
   746   have "open UNIV \<and> a \<in> UNIV \<and> (\<forall>x\<in>UNIV. True)" by simp
   747   thus "\<exists>S. open S \<and> a \<in> S \<and> (\<forall>x\<in>S. True)" ..
   748 next
   749   fix P Q
   750   assume "\<exists>S. open S \<and> a \<in> S \<and> (\<forall>x\<in>S. P x)"
   751      and "\<exists>T. open T \<and> a \<in> T \<and> (\<forall>x\<in>T. Q x)"
   752   then obtain S T where
   753     "open S \<and> a \<in> S \<and> (\<forall>x\<in>S. P x)"
   754     "open T \<and> a \<in> T \<and> (\<forall>x\<in>T. Q x)" by auto
   755   hence "open (S \<inter> T) \<and> a \<in> S \<inter> T \<and> (\<forall>x\<in>(S \<inter> T). P x \<and> Q x)"
   756     by (simp add: open_Int)
   757   thus "\<exists>S. open S \<and> a \<in> S \<and> (\<forall>x\<in>S. P x \<and> Q x)" ..
   758 qed auto
   759 
   760 lemma nhds_neq_bot [simp]: "nhds a \<noteq> bot"
   761   unfolding trivial_limit_def eventually_nhds by simp
   762 
   763 lemma eventually_at_filter:
   764   "eventually P (at a within s) \<longleftrightarrow> eventually (\<lambda>x. x \<noteq> a \<longrightarrow> x \<in> s \<longrightarrow> P x) (nhds a)"
   765   unfolding at_within_def eventually_inf_principal by (simp add: imp_conjL[symmetric] conj_commute)
   766 
   767 lemma at_le: "s \<subseteq> t \<Longrightarrow> at x within s \<le> at x within t"
   768   unfolding at_within_def by (intro inf_mono) auto
   769 
   770 lemma eventually_at_topological:
   771   "eventually P (at a within s) \<longleftrightarrow> (\<exists>S. open S \<and> a \<in> S \<and> (\<forall>x\<in>S. x \<noteq> a \<longrightarrow> x \<in> s \<longrightarrow> P x))"
   772   unfolding eventually_nhds eventually_at_filter by simp
   773 
   774 lemma at_within_open: "a \<in> S \<Longrightarrow> open S \<Longrightarrow> at a within S = at a"
   775   unfolding filter_eq_iff eventually_at_topological by (metis open_Int Int_iff UNIV_I)
   776 
   777 lemma at_within_empty [simp]: "at a within {} = bot"
   778   unfolding at_within_def by simp
   779 
   780 lemma at_within_union: "at x within (S \<union> T) = sup (at x within S) (at x within T)"
   781   unfolding filter_eq_iff eventually_sup eventually_at_filter
   782   by (auto elim!: eventually_rev_mp)
   783 
   784 lemma at_eq_bot_iff: "at a = bot \<longleftrightarrow> open {a}"
   785   unfolding trivial_limit_def eventually_at_topological
   786   by (safe, case_tac "S = {a}", simp, fast, fast)
   787 
   788 lemma at_neq_bot [simp]: "at (a::'a::perfect_space) \<noteq> bot"
   789   by (simp add: at_eq_bot_iff not_open_singleton)
   790 
   791 lemma eventually_at_right:
   792   fixes x :: "'a :: {no_top, linorder_topology}"
   793   shows "eventually P (at_right x) \<longleftrightarrow> (\<exists>b. x < b \<and> (\<forall>z. x < z \<and> z < b \<longrightarrow> P z))"
   794   unfolding eventually_at_topological
   795 proof safe
   796   obtain y where "x < y" using gt_ex[of x] ..
   797   moreover fix S assume "open S" "x \<in> S" note open_right[OF this, of y]
   798   moreover note gt_ex[of x]
   799   moreover assume "\<forall>s\<in>S. s \<noteq> x \<longrightarrow> s \<in> {x<..} \<longrightarrow> P s"
   800   ultimately show "\<exists>b>x. \<forall>z. x < z \<and> z < b \<longrightarrow> P z"
   801     by (auto simp: subset_eq Ball_def)
   802 next
   803   fix b assume "x < b" "\<forall>z. x < z \<and> z < b \<longrightarrow> P z"
   804   then show "\<exists>S. open S \<and> x \<in> S \<and> (\<forall>xa\<in>S. xa \<noteq> x \<longrightarrow> xa \<in> {x<..} \<longrightarrow> P xa)"
   805     by (intro exI[of _ "{..< b}"]) auto
   806 qed
   807 
   808 lemma eventually_at_left:
   809   fixes x :: "'a :: {no_bot, linorder_topology}"
   810   shows "eventually P (at_left x) \<longleftrightarrow> (\<exists>b. x > b \<and> (\<forall>z. b < z \<and> z < x \<longrightarrow> P z))"
   811   unfolding eventually_at_topological
   812 proof safe
   813   obtain y where "y < x" using lt_ex[of x] ..
   814   moreover fix S assume "open S" "x \<in> S" note open_left[OF this, of y]
   815   moreover assume "\<forall>s\<in>S. s \<noteq> x \<longrightarrow> s \<in> {..<x} \<longrightarrow> P s"
   816   ultimately show "\<exists>b<x. \<forall>z. b < z \<and> z < x \<longrightarrow> P z"
   817     by (auto simp: subset_eq Ball_def)
   818 next
   819   fix b assume "b < x" "\<forall>z. b < z \<and> z < x \<longrightarrow> P z"
   820   then show "\<exists>S. open S \<and> x \<in> S \<and> (\<forall>s\<in>S. s \<noteq> x \<longrightarrow> s \<in> {..<x} \<longrightarrow> P s)"
   821     by (intro exI[of _ "{b <..}"]) auto
   822 qed
   823 
   824 lemma trivial_limit_at_left_real [simp]:
   825   "\<not> trivial_limit (at_left (x::'a::{no_bot, unbounded_dense_linorder, linorder_topology}))"
   826   unfolding trivial_limit_def eventually_at_left by (auto dest: dense)
   827 
   828 lemma trivial_limit_at_right_real [simp]:
   829   "\<not> trivial_limit (at_right (x::'a::{no_top, unbounded_dense_linorder, linorder_topology}))"
   830   unfolding trivial_limit_def eventually_at_right by (auto dest: dense)
   831 
   832 lemma at_eq_sup_left_right: "at (x::'a::linorder_topology) = sup (at_left x) (at_right x)"
   833   by (auto simp: eventually_at_filter filter_eq_iff eventually_sup 
   834            elim: eventually_elim2 eventually_elim1)
   835 
   836 lemma eventually_at_split:
   837   "eventually P (at (x::'a::linorder_topology)) \<longleftrightarrow> eventually P (at_left x) \<and> eventually P (at_right x)"
   838   by (subst at_eq_sup_left_right) (simp add: eventually_sup)
   839 
   840 subsection {* Limits *}
   841 
   842 definition filterlim :: "('a \<Rightarrow> 'b) \<Rightarrow> 'b filter \<Rightarrow> 'a filter \<Rightarrow> bool" where
   843   "filterlim f F2 F1 \<longleftrightarrow> filtermap f F1 \<le> F2"
   844 
   845 syntax
   846   "_LIM" :: "pttrns \<Rightarrow> 'a \<Rightarrow> 'b \<Rightarrow> 'a \<Rightarrow> bool" ("(3LIM (_)/ (_)./ (_) :> (_))" [1000, 10, 0, 10] 10)
   847 
   848 translations
   849   "LIM x F1. f :> F2"   == "CONST filterlim (%x. f) F2 F1"
   850 
   851 lemma filterlim_iff:
   852   "(LIM x F1. f x :> F2) \<longleftrightarrow> (\<forall>P. eventually P F2 \<longrightarrow> eventually (\<lambda>x. P (f x)) F1)"
   853   unfolding filterlim_def le_filter_def eventually_filtermap ..
   854 
   855 lemma filterlim_compose:
   856   "filterlim g F3 F2 \<Longrightarrow> filterlim f F2 F1 \<Longrightarrow> filterlim (\<lambda>x. g (f x)) F3 F1"
   857   unfolding filterlim_def filtermap_filtermap[symmetric] by (metis filtermap_mono order_trans)
   858 
   859 lemma filterlim_mono:
   860   "filterlim f F2 F1 \<Longrightarrow> F2 \<le> F2' \<Longrightarrow> F1' \<le> F1 \<Longrightarrow> filterlim f F2' F1'"
   861   unfolding filterlim_def by (metis filtermap_mono order_trans)
   862 
   863 lemma filterlim_ident: "LIM x F. x :> F"
   864   by (simp add: filterlim_def filtermap_ident)
   865 
   866 lemma filterlim_cong:
   867   "F1 = F1' \<Longrightarrow> F2 = F2' \<Longrightarrow> eventually (\<lambda>x. f x = g x) F2 \<Longrightarrow> filterlim f F1 F2 = filterlim g F1' F2'"
   868   by (auto simp: filterlim_def le_filter_def eventually_filtermap elim: eventually_elim2)
   869 
   870 lemma filterlim_principal:
   871   "(LIM x F. f x :> principal S) \<longleftrightarrow> (eventually (\<lambda>x. f x \<in> S) F)"
   872   unfolding filterlim_def eventually_filtermap le_principal ..
   873 
   874 lemma filterlim_inf:
   875   "(LIM x F1. f x :> inf F2 F3) \<longleftrightarrow> ((LIM x F1. f x :> F2) \<and> (LIM x F1. f x :> F3))"
   876   unfolding filterlim_def by simp
   877 
   878 lemma filterlim_filtermap: "filterlim f F1 (filtermap g F2) = filterlim (\<lambda>x. f (g x)) F1 F2"
   879   unfolding filterlim_def filtermap_filtermap ..
   880 
   881 lemma filterlim_sup:
   882   "filterlim f F F1 \<Longrightarrow> filterlim f F F2 \<Longrightarrow> filterlim f F (sup F1 F2)"
   883   unfolding filterlim_def filtermap_sup by auto
   884 
   885 lemma filterlim_Suc: "filterlim Suc sequentially sequentially"
   886   by (simp add: filterlim_iff eventually_sequentially) (metis le_Suc_eq)
   887 
   888 subsubsection {* Tendsto *}
   889 
   890 abbreviation (in topological_space)
   891   tendsto :: "('b \<Rightarrow> 'a) \<Rightarrow> 'a \<Rightarrow> 'b filter \<Rightarrow> bool" (infixr "--->" 55) where
   892   "(f ---> l) F \<equiv> filterlim f (nhds l) F"
   893 
   894 definition (in t2_space) Lim :: "'f filter \<Rightarrow> ('f \<Rightarrow> 'a) \<Rightarrow> 'a" where
   895   "Lim A f = (THE l. (f ---> l) A)"
   896 
   897 lemma tendsto_eq_rhs: "(f ---> x) F \<Longrightarrow> x = y \<Longrightarrow> (f ---> y) F"
   898   by simp
   899 
   900 ML {*
   901 
   902 structure Tendsto_Intros = Named_Thms
   903 (
   904   val name = @{binding tendsto_intros}
   905   val description = "introduction rules for tendsto"
   906 )
   907 
   908 *}
   909 
   910 setup {*
   911   Tendsto_Intros.setup #>
   912   Global_Theory.add_thms_dynamic (@{binding tendsto_eq_intros},
   913     map_filter (try (fn thm => @{thm tendsto_eq_rhs} OF [thm])) o Tendsto_Intros.get o Context.proof_of);
   914 *}
   915 
   916 lemma (in topological_space) tendsto_def:
   917    "(f ---> l) F \<longleftrightarrow> (\<forall>S. open S \<longrightarrow> l \<in> S \<longrightarrow> eventually (\<lambda>x. f x \<in> S) F)"
   918   unfolding filterlim_def
   919 proof safe
   920   fix S assume "open S" "l \<in> S" "filtermap f F \<le> nhds l"
   921   then show "eventually (\<lambda>x. f x \<in> S) F"
   922     unfolding eventually_nhds eventually_filtermap le_filter_def
   923     by (auto elim!: allE[of _ "\<lambda>x. x \<in> S"] eventually_rev_mp)
   924 qed (auto elim!: eventually_rev_mp simp: eventually_nhds eventually_filtermap le_filter_def)
   925 
   926 lemma tendsto_mono: "F \<le> F' \<Longrightarrow> (f ---> l) F' \<Longrightarrow> (f ---> l) F"
   927   unfolding tendsto_def le_filter_def by fast
   928 
   929 lemma tendsto_within_subset: "(f ---> l) (at x within S) \<Longrightarrow> T \<subseteq> S \<Longrightarrow> (f ---> l) (at x within T)"
   930   by (blast intro: tendsto_mono at_le)
   931 
   932 lemma filterlim_at:
   933   "(LIM x F. f x :> at b within s) \<longleftrightarrow> (eventually (\<lambda>x. f x \<in> s \<and> f x \<noteq> b) F \<and> (f ---> b) F)"
   934   by (simp add: at_within_def filterlim_inf filterlim_principal conj_commute)
   935 
   936 lemma (in topological_space) topological_tendstoI:
   937   "(\<And>S. open S \<Longrightarrow> l \<in> S \<Longrightarrow> eventually (\<lambda>x. f x \<in> S) F) \<Longrightarrow> (f ---> l) F"
   938   unfolding tendsto_def by auto
   939 
   940 lemma (in topological_space) topological_tendstoD:
   941   "(f ---> l) F \<Longrightarrow> open S \<Longrightarrow> l \<in> S \<Longrightarrow> eventually (\<lambda>x. f x \<in> S) F"
   942   unfolding tendsto_def by auto
   943 
   944 lemma order_tendstoI:
   945   fixes y :: "_ :: order_topology"
   946   assumes "\<And>a. a < y \<Longrightarrow> eventually (\<lambda>x. a < f x) F"
   947   assumes "\<And>a. y < a \<Longrightarrow> eventually (\<lambda>x. f x < a) F"
   948   shows "(f ---> y) F"
   949 proof (rule topological_tendstoI)
   950   fix S assume "open S" "y \<in> S"
   951   then show "eventually (\<lambda>x. f x \<in> S) F"
   952     unfolding open_generated_order
   953   proof induct
   954     case (UN K)
   955     then obtain k where "y \<in> k" "k \<in> K" by auto
   956     with UN(2)[of k] show ?case
   957       by (auto elim: eventually_elim1)
   958   qed (insert assms, auto elim: eventually_elim2)
   959 qed
   960 
   961 lemma order_tendstoD:
   962   fixes y :: "_ :: order_topology"
   963   assumes y: "(f ---> y) F"
   964   shows "a < y \<Longrightarrow> eventually (\<lambda>x. a < f x) F"
   965     and "y < a \<Longrightarrow> eventually (\<lambda>x. f x < a) F"
   966   using topological_tendstoD[OF y, of "{..< a}"] topological_tendstoD[OF y, of "{a <..}"] by auto
   967 
   968 lemma order_tendsto_iff: 
   969   fixes f :: "_ \<Rightarrow> 'a :: order_topology"
   970   shows "(f ---> x) F \<longleftrightarrow>(\<forall>l<x. eventually (\<lambda>x. l < f x) F) \<and> (\<forall>u>x. eventually (\<lambda>x. f x < u) F)"
   971   by (metis order_tendstoI order_tendstoD)
   972 
   973 lemma tendsto_bot [simp]: "(f ---> a) bot"
   974   unfolding tendsto_def by simp
   975 
   976 lemma tendsto_ident_at [tendsto_intros]: "((\<lambda>x. x) ---> a) (at a within s)"
   977   unfolding tendsto_def eventually_at_topological by auto
   978 
   979 lemma (in topological_space) tendsto_const [tendsto_intros]: "((\<lambda>x. k) ---> k) F"
   980   by (simp add: tendsto_def)
   981 
   982 lemma (in t2_space) tendsto_unique:
   983   assumes "\<not> trivial_limit F" and "(f ---> a) F" and "(f ---> b) F"
   984   shows "a = b"
   985 proof (rule ccontr)
   986   assume "a \<noteq> b"
   987   obtain U V where "open U" "open V" "a \<in> U" "b \<in> V" "U \<inter> V = {}"
   988     using hausdorff [OF `a \<noteq> b`] by fast
   989   have "eventually (\<lambda>x. f x \<in> U) F"
   990     using `(f ---> a) F` `open U` `a \<in> U` by (rule topological_tendstoD)
   991   moreover
   992   have "eventually (\<lambda>x. f x \<in> V) F"
   993     using `(f ---> b) F` `open V` `b \<in> V` by (rule topological_tendstoD)
   994   ultimately
   995   have "eventually (\<lambda>x. False) F"
   996   proof eventually_elim
   997     case (elim x)
   998     hence "f x \<in> U \<inter> V" by simp
   999     with `U \<inter> V = {}` show ?case by simp
  1000   qed
  1001   with `\<not> trivial_limit F` show "False"
  1002     by (simp add: trivial_limit_def)
  1003 qed
  1004 
  1005 lemma (in t2_space) tendsto_const_iff:
  1006   assumes "\<not> trivial_limit F" shows "((\<lambda>x. a :: 'a) ---> b) F \<longleftrightarrow> a = b"
  1007   by (safe intro!: tendsto_const tendsto_unique [OF assms tendsto_const])
  1008 
  1009 lemma increasing_tendsto:
  1010   fixes f :: "_ \<Rightarrow> 'a::order_topology"
  1011   assumes bdd: "eventually (\<lambda>n. f n \<le> l) F"
  1012       and en: "\<And>x. x < l \<Longrightarrow> eventually (\<lambda>n. x < f n) F"
  1013   shows "(f ---> l) F"
  1014   using assms by (intro order_tendstoI) (auto elim!: eventually_elim1)
  1015 
  1016 lemma decreasing_tendsto:
  1017   fixes f :: "_ \<Rightarrow> 'a::order_topology"
  1018   assumes bdd: "eventually (\<lambda>n. l \<le> f n) F"
  1019       and en: "\<And>x. l < x \<Longrightarrow> eventually (\<lambda>n. f n < x) F"
  1020   shows "(f ---> l) F"
  1021   using assms by (intro order_tendstoI) (auto elim!: eventually_elim1)
  1022 
  1023 lemma tendsto_sandwich:
  1024   fixes f g h :: "'a \<Rightarrow> 'b::order_topology"
  1025   assumes ev: "eventually (\<lambda>n. f n \<le> g n) net" "eventually (\<lambda>n. g n \<le> h n) net"
  1026   assumes lim: "(f ---> c) net" "(h ---> c) net"
  1027   shows "(g ---> c) net"
  1028 proof (rule order_tendstoI)
  1029   fix a show "a < c \<Longrightarrow> eventually (\<lambda>x. a < g x) net"
  1030     using order_tendstoD[OF lim(1), of a] ev by (auto elim: eventually_elim2)
  1031 next
  1032   fix a show "c < a \<Longrightarrow> eventually (\<lambda>x. g x < a) net"
  1033     using order_tendstoD[OF lim(2), of a] ev by (auto elim: eventually_elim2)
  1034 qed
  1035 
  1036 lemma tendsto_le:
  1037   fixes f g :: "'a \<Rightarrow> 'b::linorder_topology"
  1038   assumes F: "\<not> trivial_limit F"
  1039   assumes x: "(f ---> x) F" and y: "(g ---> y) F"
  1040   assumes ev: "eventually (\<lambda>x. g x \<le> f x) F"
  1041   shows "y \<le> x"
  1042 proof (rule ccontr)
  1043   assume "\<not> y \<le> x"
  1044   with less_separate[of x y] obtain a b where xy: "x < a" "b < y" "{..<a} \<inter> {b<..} = {}"
  1045     by (auto simp: not_le)
  1046   then have "eventually (\<lambda>x. f x < a) F" "eventually (\<lambda>x. b < g x) F"
  1047     using x y by (auto intro: order_tendstoD)
  1048   with ev have "eventually (\<lambda>x. False) F"
  1049     by eventually_elim (insert xy, fastforce)
  1050   with F show False
  1051     by (simp add: eventually_False)
  1052 qed
  1053 
  1054 lemma tendsto_le_const:
  1055   fixes f :: "'a \<Rightarrow> 'b::linorder_topology"
  1056   assumes F: "\<not> trivial_limit F"
  1057   assumes x: "(f ---> x) F" and a: "eventually (\<lambda>i. a \<le> f i) F"
  1058   shows "a \<le> x"
  1059   using F x tendsto_const a by (rule tendsto_le)
  1060 
  1061 lemma tendsto_ge_const:
  1062   fixes f :: "'a \<Rightarrow> 'b::linorder_topology"
  1063   assumes F: "\<not> trivial_limit F"
  1064   assumes x: "(f ---> x) F" and a: "eventually (\<lambda>i. a \<ge> f i) F"
  1065   shows "a \<ge> x"
  1066   by (rule tendsto_le [OF F tendsto_const x a])
  1067 
  1068 subsubsection {* Rules about @{const Lim} *}
  1069 
  1070 lemma (in t2_space) tendsto_Lim:
  1071   "\<not>(trivial_limit net) \<Longrightarrow> (f ---> l) net \<Longrightarrow> Lim net f = l"
  1072   unfolding Lim_def using tendsto_unique[of net f] by auto
  1073 
  1074 lemma Lim_ident_at: "\<not> trivial_limit (at x within s) \<Longrightarrow> Lim (at x within s) (\<lambda>x. x) = x"
  1075   by (rule tendsto_Lim[OF _ tendsto_ident_at]) auto
  1076 
  1077 subsection {* Limits to @{const at_top} and @{const at_bot} *}
  1078 
  1079 lemma filterlim_at_top:
  1080   fixes f :: "'a \<Rightarrow> ('b::linorder)"
  1081   shows "(LIM x F. f x :> at_top) \<longleftrightarrow> (\<forall>Z. eventually (\<lambda>x. Z \<le> f x) F)"
  1082   by (auto simp: filterlim_iff eventually_at_top_linorder elim!: eventually_elim1)
  1083 
  1084 lemma filterlim_at_top_dense:
  1085   fixes f :: "'a \<Rightarrow> ('b::unbounded_dense_linorder)"
  1086   shows "(LIM x F. f x :> at_top) \<longleftrightarrow> (\<forall>Z. eventually (\<lambda>x. Z < f x) F)"
  1087   by (metis eventually_elim1[of _ F] eventually_gt_at_top order_less_imp_le
  1088             filterlim_at_top[of f F] filterlim_iff[of f at_top F])
  1089 
  1090 lemma filterlim_at_top_ge:
  1091   fixes f :: "'a \<Rightarrow> ('b::linorder)" and c :: "'b"
  1092   shows "(LIM x F. f x :> at_top) \<longleftrightarrow> (\<forall>Z\<ge>c. eventually (\<lambda>x. Z \<le> f x) F)"
  1093   unfolding filterlim_at_top
  1094 proof safe
  1095   fix Z assume *: "\<forall>Z\<ge>c. eventually (\<lambda>x. Z \<le> f x) F"
  1096   with *[THEN spec, of "max Z c"] show "eventually (\<lambda>x. Z \<le> f x) F"
  1097     by (auto elim!: eventually_elim1)
  1098 qed simp
  1099 
  1100 lemma filterlim_at_top_at_top:
  1101   fixes f :: "'a::linorder \<Rightarrow> 'b::linorder"
  1102   assumes mono: "\<And>x y. Q x \<Longrightarrow> Q y \<Longrightarrow> x \<le> y \<Longrightarrow> f x \<le> f y"
  1103   assumes bij: "\<And>x. P x \<Longrightarrow> f (g x) = x" "\<And>x. P x \<Longrightarrow> Q (g x)"
  1104   assumes Q: "eventually Q at_top"
  1105   assumes P: "eventually P at_top"
  1106   shows "filterlim f at_top at_top"
  1107 proof -
  1108   from P obtain x where x: "\<And>y. x \<le> y \<Longrightarrow> P y"
  1109     unfolding eventually_at_top_linorder by auto
  1110   show ?thesis
  1111   proof (intro filterlim_at_top_ge[THEN iffD2] allI impI)
  1112     fix z assume "x \<le> z"
  1113     with x have "P z" by auto
  1114     have "eventually (\<lambda>x. g z \<le> x) at_top"
  1115       by (rule eventually_ge_at_top)
  1116     with Q show "eventually (\<lambda>x. z \<le> f x) at_top"
  1117       by eventually_elim (metis mono bij `P z`)
  1118   qed
  1119 qed
  1120 
  1121 lemma filterlim_at_top_gt:
  1122   fixes f :: "'a \<Rightarrow> ('b::unbounded_dense_linorder)" and c :: "'b"
  1123   shows "(LIM x F. f x :> at_top) \<longleftrightarrow> (\<forall>Z>c. eventually (\<lambda>x. Z \<le> f x) F)"
  1124   by (metis filterlim_at_top order_less_le_trans gt_ex filterlim_at_top_ge)
  1125 
  1126 lemma filterlim_at_bot: 
  1127   fixes f :: "'a \<Rightarrow> ('b::linorder)"
  1128   shows "(LIM x F. f x :> at_bot) \<longleftrightarrow> (\<forall>Z. eventually (\<lambda>x. f x \<le> Z) F)"
  1129   by (auto simp: filterlim_iff eventually_at_bot_linorder elim!: eventually_elim1)
  1130 
  1131 lemma filterlim_at_bot_le:
  1132   fixes f :: "'a \<Rightarrow> ('b::linorder)" and c :: "'b"
  1133   shows "(LIM x F. f x :> at_bot) \<longleftrightarrow> (\<forall>Z\<le>c. eventually (\<lambda>x. Z \<ge> f x) F)"
  1134   unfolding filterlim_at_bot
  1135 proof safe
  1136   fix Z assume *: "\<forall>Z\<le>c. eventually (\<lambda>x. Z \<ge> f x) F"
  1137   with *[THEN spec, of "min Z c"] show "eventually (\<lambda>x. Z \<ge> f x) F"
  1138     by (auto elim!: eventually_elim1)
  1139 qed simp
  1140 
  1141 lemma filterlim_at_bot_lt:
  1142   fixes f :: "'a \<Rightarrow> ('b::unbounded_dense_linorder)" and c :: "'b"
  1143   shows "(LIM x F. f x :> at_bot) \<longleftrightarrow> (\<forall>Z<c. eventually (\<lambda>x. Z \<ge> f x) F)"
  1144   by (metis filterlim_at_bot filterlim_at_bot_le lt_ex order_le_less_trans)
  1145 
  1146 lemma filterlim_at_bot_at_right:
  1147   fixes f :: "'a::{no_top, linorder_topology} \<Rightarrow> 'b::linorder"
  1148   assumes mono: "\<And>x y. Q x \<Longrightarrow> Q y \<Longrightarrow> x \<le> y \<Longrightarrow> f x \<le> f y"
  1149   assumes bij: "\<And>x. P x \<Longrightarrow> f (g x) = x" "\<And>x. P x \<Longrightarrow> Q (g x)"
  1150   assumes Q: "eventually Q (at_right a)" and bound: "\<And>b. Q b \<Longrightarrow> a < b"
  1151   assumes P: "eventually P at_bot"
  1152   shows "filterlim f at_bot (at_right a)"
  1153 proof -
  1154   from P obtain x where x: "\<And>y. y \<le> x \<Longrightarrow> P y"
  1155     unfolding eventually_at_bot_linorder by auto
  1156   show ?thesis
  1157   proof (intro filterlim_at_bot_le[THEN iffD2] allI impI)
  1158     fix z assume "z \<le> x"
  1159     with x have "P z" by auto
  1160     have "eventually (\<lambda>x. x \<le> g z) (at_right a)"
  1161       using bound[OF bij(2)[OF `P z`]]
  1162       unfolding eventually_at_right by (auto intro!: exI[of _ "g z"])
  1163     with Q show "eventually (\<lambda>x. f x \<le> z) (at_right a)"
  1164       by eventually_elim (metis bij `P z` mono)
  1165   qed
  1166 qed
  1167 
  1168 lemma filterlim_at_top_at_left:
  1169   fixes f :: "'a::{no_bot, linorder_topology} \<Rightarrow> 'b::linorder"
  1170   assumes mono: "\<And>x y. Q x \<Longrightarrow> Q y \<Longrightarrow> x \<le> y \<Longrightarrow> f x \<le> f y"
  1171   assumes bij: "\<And>x. P x \<Longrightarrow> f (g x) = x" "\<And>x. P x \<Longrightarrow> Q (g x)"
  1172   assumes Q: "eventually Q (at_left a)" and bound: "\<And>b. Q b \<Longrightarrow> b < a"
  1173   assumes P: "eventually P at_top"
  1174   shows "filterlim f at_top (at_left a)"
  1175 proof -
  1176   from P obtain x where x: "\<And>y. x \<le> y \<Longrightarrow> P y"
  1177     unfolding eventually_at_top_linorder by auto
  1178   show ?thesis
  1179   proof (intro filterlim_at_top_ge[THEN iffD2] allI impI)
  1180     fix z assume "x \<le> z"
  1181     with x have "P z" by auto
  1182     have "eventually (\<lambda>x. g z \<le> x) (at_left a)"
  1183       using bound[OF bij(2)[OF `P z`]]
  1184       unfolding eventually_at_left by (auto intro!: exI[of _ "g z"])
  1185     with Q show "eventually (\<lambda>x. z \<le> f x) (at_left a)"
  1186       by eventually_elim (metis bij `P z` mono)
  1187   qed
  1188 qed
  1189 
  1190 lemma filterlim_split_at:
  1191   "filterlim f F (at_left x) \<Longrightarrow> filterlim f F (at_right x) \<Longrightarrow> filterlim f F (at (x::'a::linorder_topology))"
  1192   by (subst at_eq_sup_left_right) (rule filterlim_sup)
  1193 
  1194 lemma filterlim_at_split:
  1195   "filterlim f F (at (x::'a::linorder_topology)) \<longleftrightarrow> filterlim f F (at_left x) \<and> filterlim f F (at_right x)"
  1196   by (subst at_eq_sup_left_right) (simp add: filterlim_def filtermap_sup)
  1197 
  1198 
  1199 subsection {* Limits on sequences *}
  1200 
  1201 abbreviation (in topological_space)
  1202   LIMSEQ :: "[nat \<Rightarrow> 'a, 'a] \<Rightarrow> bool"
  1203     ("((_)/ ----> (_))" [60, 60] 60) where
  1204   "X ----> L \<equiv> (X ---> L) sequentially"
  1205 
  1206 abbreviation (in t2_space) lim :: "(nat \<Rightarrow> 'a) \<Rightarrow> 'a" where
  1207   "lim X \<equiv> Lim sequentially X"
  1208 
  1209 definition (in topological_space) convergent :: "(nat \<Rightarrow> 'a) \<Rightarrow> bool" where
  1210   "convergent X = (\<exists>L. X ----> L)"
  1211 
  1212 lemma lim_def: "lim X = (THE L. X ----> L)"
  1213   unfolding Lim_def ..
  1214 
  1215 subsubsection {* Monotone sequences and subsequences *}
  1216 
  1217 definition
  1218   monoseq :: "(nat \<Rightarrow> 'a::order) \<Rightarrow> bool" where
  1219     --{*Definition of monotonicity.
  1220         The use of disjunction here complicates proofs considerably.
  1221         One alternative is to add a Boolean argument to indicate the direction.
  1222         Another is to develop the notions of increasing and decreasing first.*}
  1223   "monoseq X = ((\<forall>m. \<forall>n\<ge>m. X m \<le> X n) \<or> (\<forall>m. \<forall>n\<ge>m. X n \<le> X m))"
  1224 
  1225 abbreviation incseq :: "(nat \<Rightarrow> 'a::order) \<Rightarrow> bool" where
  1226   "incseq X \<equiv> mono X"
  1227 
  1228 lemma incseq_def: "incseq X \<longleftrightarrow> (\<forall>m. \<forall>n\<ge>m. X n \<ge> X m)"
  1229   unfolding mono_def ..
  1230 
  1231 abbreviation decseq :: "(nat \<Rightarrow> 'a::order) \<Rightarrow> bool" where
  1232   "decseq X \<equiv> antimono X"
  1233 
  1234 lemma decseq_def: "decseq X \<longleftrightarrow> (\<forall>m. \<forall>n\<ge>m. X n \<le> X m)"
  1235   unfolding antimono_def ..
  1236 
  1237 definition
  1238   subseq :: "(nat \<Rightarrow> nat) \<Rightarrow> bool" where
  1239     --{*Definition of subsequence*}
  1240   "subseq f \<longleftrightarrow> (\<forall>m. \<forall>n>m. f m < f n)"
  1241 
  1242 lemma incseq_SucI:
  1243   "(\<And>n. X n \<le> X (Suc n)) \<Longrightarrow> incseq X"
  1244   using lift_Suc_mono_le[of X]
  1245   by (auto simp: incseq_def)
  1246 
  1247 lemma incseqD: "\<And>i j. incseq f \<Longrightarrow> i \<le> j \<Longrightarrow> f i \<le> f j"
  1248   by (auto simp: incseq_def)
  1249 
  1250 lemma incseq_SucD: "incseq A \<Longrightarrow> A i \<le> A (Suc i)"
  1251   using incseqD[of A i "Suc i"] by auto
  1252 
  1253 lemma incseq_Suc_iff: "incseq f \<longleftrightarrow> (\<forall>n. f n \<le> f (Suc n))"
  1254   by (auto intro: incseq_SucI dest: incseq_SucD)
  1255 
  1256 lemma incseq_const[simp, intro]: "incseq (\<lambda>x. k)"
  1257   unfolding incseq_def by auto
  1258 
  1259 lemma decseq_SucI:
  1260   "(\<And>n. X (Suc n) \<le> X n) \<Longrightarrow> decseq X"
  1261   using order.lift_Suc_mono_le[OF dual_order, of X]
  1262   by (auto simp: decseq_def)
  1263 
  1264 lemma decseqD: "\<And>i j. decseq f \<Longrightarrow> i \<le> j \<Longrightarrow> f j \<le> f i"
  1265   by (auto simp: decseq_def)
  1266 
  1267 lemma decseq_SucD: "decseq A \<Longrightarrow> A (Suc i) \<le> A i"
  1268   using decseqD[of A i "Suc i"] by auto
  1269 
  1270 lemma decseq_Suc_iff: "decseq f \<longleftrightarrow> (\<forall>n. f (Suc n) \<le> f n)"
  1271   by (auto intro: decseq_SucI dest: decseq_SucD)
  1272 
  1273 lemma decseq_const[simp, intro]: "decseq (\<lambda>x. k)"
  1274   unfolding decseq_def by auto
  1275 
  1276 lemma monoseq_iff: "monoseq X \<longleftrightarrow> incseq X \<or> decseq X"
  1277   unfolding monoseq_def incseq_def decseq_def ..
  1278 
  1279 lemma monoseq_Suc:
  1280   "monoseq X \<longleftrightarrow> (\<forall>n. X n \<le> X (Suc n)) \<or> (\<forall>n. X (Suc n) \<le> X n)"
  1281   unfolding monoseq_iff incseq_Suc_iff decseq_Suc_iff ..
  1282 
  1283 lemma monoI1: "\<forall>m. \<forall> n \<ge> m. X m \<le> X n ==> monoseq X"
  1284 by (simp add: monoseq_def)
  1285 
  1286 lemma monoI2: "\<forall>m. \<forall> n \<ge> m. X n \<le> X m ==> monoseq X"
  1287 by (simp add: monoseq_def)
  1288 
  1289 lemma mono_SucI1: "\<forall>n. X n \<le> X (Suc n) ==> monoseq X"
  1290 by (simp add: monoseq_Suc)
  1291 
  1292 lemma mono_SucI2: "\<forall>n. X (Suc n) \<le> X n ==> monoseq X"
  1293 by (simp add: monoseq_Suc)
  1294 
  1295 lemma monoseq_minus:
  1296   fixes a :: "nat \<Rightarrow> 'a::ordered_ab_group_add"
  1297   assumes "monoseq a"
  1298   shows "monoseq (\<lambda> n. - a n)"
  1299 proof (cases "\<forall> m. \<forall> n \<ge> m. a m \<le> a n")
  1300   case True
  1301   hence "\<forall> m. \<forall> n \<ge> m. - a n \<le> - a m" by auto
  1302   thus ?thesis by (rule monoI2)
  1303 next
  1304   case False
  1305   hence "\<forall> m. \<forall> n \<ge> m. - a m \<le> - a n" using `monoseq a`[unfolded monoseq_def] by auto
  1306   thus ?thesis by (rule monoI1)
  1307 qed
  1308 
  1309 text{*Subsequence (alternative definition, (e.g. Hoskins)*}
  1310 
  1311 lemma subseq_Suc_iff: "subseq f = (\<forall>n. (f n) < (f (Suc n)))"
  1312 apply (simp add: subseq_def)
  1313 apply (auto dest!: less_imp_Suc_add)
  1314 apply (induct_tac k)
  1315 apply (auto intro: less_trans)
  1316 done
  1317 
  1318 text{* for any sequence, there is a monotonic subsequence *}
  1319 lemma seq_monosub:
  1320   fixes s :: "nat => 'a::linorder"
  1321   shows "\<exists>f. subseq f \<and> monoseq (\<lambda> n. (s (f n)))"
  1322 proof cases
  1323   let "?P p n" = "p > n \<and> (\<forall>m\<ge>p. s m \<le> s p)"
  1324   assume *: "\<forall>n. \<exists>p. ?P p n"
  1325   def f \<equiv> "rec_nat (SOME p. ?P p 0) (\<lambda>_ n. SOME p. ?P p n)"
  1326   have f_0: "f 0 = (SOME p. ?P p 0)" unfolding f_def by simp
  1327   have f_Suc: "\<And>i. f (Suc i) = (SOME p. ?P p (f i))" unfolding f_def nat.rec(2) ..
  1328   have P_0: "?P (f 0) 0" unfolding f_0 using *[rule_format] by (rule someI2_ex) auto
  1329   have P_Suc: "\<And>i. ?P (f (Suc i)) (f i)" unfolding f_Suc using *[rule_format] by (rule someI2_ex) auto
  1330   then have "subseq f" unfolding subseq_Suc_iff by auto
  1331   moreover have "monoseq (\<lambda>n. s (f n))" unfolding monoseq_Suc
  1332   proof (intro disjI2 allI)
  1333     fix n show "s (f (Suc n)) \<le> s (f n)"
  1334     proof (cases n)
  1335       case 0 with P_Suc[of 0] P_0 show ?thesis by auto
  1336     next
  1337       case (Suc m)
  1338       from P_Suc[of n] Suc have "f (Suc m) \<le> f (Suc (Suc m))" by simp
  1339       with P_Suc Suc show ?thesis by simp
  1340     qed
  1341   qed
  1342   ultimately show ?thesis by auto
  1343 next
  1344   let "?P p m" = "m < p \<and> s m < s p"
  1345   assume "\<not> (\<forall>n. \<exists>p>n. (\<forall>m\<ge>p. s m \<le> s p))"
  1346   then obtain N where N: "\<And>p. p > N \<Longrightarrow> \<exists>m>p. s p < s m" by (force simp: not_le le_less)
  1347   def f \<equiv> "rec_nat (SOME p. ?P p (Suc N)) (\<lambda>_ n. SOME p. ?P p n)"
  1348   have f_0: "f 0 = (SOME p. ?P p (Suc N))" unfolding f_def by simp
  1349   have f_Suc: "\<And>i. f (Suc i) = (SOME p. ?P p (f i))" unfolding f_def nat.rec(2) ..
  1350   have P_0: "?P (f 0) (Suc N)"
  1351     unfolding f_0 some_eq_ex[of "\<lambda>p. ?P p (Suc N)"] using N[of "Suc N"] by auto
  1352   { fix i have "N < f i \<Longrightarrow> ?P (f (Suc i)) (f i)"
  1353       unfolding f_Suc some_eq_ex[of "\<lambda>p. ?P p (f i)"] using N[of "f i"] . }
  1354   note P' = this
  1355   { fix i have "N < f i \<and> ?P (f (Suc i)) (f i)"
  1356       by (induct i) (insert P_0 P', auto) }
  1357   then have "subseq f" "monoseq (\<lambda>x. s (f x))"
  1358     unfolding subseq_Suc_iff monoseq_Suc by (auto simp: not_le intro: less_imp_le)
  1359   then show ?thesis by auto
  1360 qed
  1361 
  1362 lemma seq_suble: assumes sf: "subseq f" shows "n \<le> f n"
  1363 proof(induct n)
  1364   case 0 thus ?case by simp
  1365 next
  1366   case (Suc n)
  1367   from sf[unfolded subseq_Suc_iff, rule_format, of n] Suc.hyps
  1368   have "n < f (Suc n)" by arith
  1369   thus ?case by arith
  1370 qed
  1371 
  1372 lemma eventually_subseq:
  1373   "subseq r \<Longrightarrow> eventually P sequentially \<Longrightarrow> eventually (\<lambda>n. P (r n)) sequentially"
  1374   unfolding eventually_sequentially by (metis seq_suble le_trans)
  1375 
  1376 lemma not_eventually_sequentiallyD:
  1377   assumes P: "\<not> eventually P sequentially"
  1378   shows "\<exists>r. subseq r \<and> (\<forall>n. \<not> P (r n))"
  1379 proof -
  1380   from P have "\<forall>n. \<exists>m\<ge>n. \<not> P m"
  1381     unfolding eventually_sequentially by (simp add: not_less)
  1382   then obtain r where "\<And>n. r n \<ge> n" "\<And>n. \<not> P (r n)"
  1383     by (auto simp: choice_iff)
  1384   then show ?thesis
  1385     by (auto intro!: exI[of _ "\<lambda>n. r (((Suc \<circ> r) ^^ Suc n) 0)"]
  1386              simp: less_eq_Suc_le subseq_Suc_iff)
  1387 qed
  1388 
  1389 lemma filterlim_subseq: "subseq f \<Longrightarrow> filterlim f sequentially sequentially"
  1390   unfolding filterlim_iff by (metis eventually_subseq)
  1391 
  1392 lemma subseq_o: "subseq r \<Longrightarrow> subseq s \<Longrightarrow> subseq (r \<circ> s)"
  1393   unfolding subseq_def by simp
  1394 
  1395 lemma subseq_mono: assumes "subseq r" "m < n" shows "r m < r n"
  1396   using assms by (auto simp: subseq_def)
  1397 
  1398 lemma incseq_imp_monoseq:  "incseq X \<Longrightarrow> monoseq X"
  1399   by (simp add: incseq_def monoseq_def)
  1400 
  1401 lemma decseq_imp_monoseq:  "decseq X \<Longrightarrow> monoseq X"
  1402   by (simp add: decseq_def monoseq_def)
  1403 
  1404 lemma decseq_eq_incseq:
  1405   fixes X :: "nat \<Rightarrow> 'a::ordered_ab_group_add" shows "decseq X = incseq (\<lambda>n. - X n)" 
  1406   by (simp add: decseq_def incseq_def)
  1407 
  1408 lemma INT_decseq_offset:
  1409   assumes "decseq F"
  1410   shows "(\<Inter>i. F i) = (\<Inter>i\<in>{n..}. F i)"
  1411 proof safe
  1412   fix x i assume x: "x \<in> (\<Inter>i\<in>{n..}. F i)"
  1413   show "x \<in> F i"
  1414   proof cases
  1415     from x have "x \<in> F n" by auto
  1416     also assume "i \<le> n" with `decseq F` have "F n \<subseteq> F i"
  1417       unfolding decseq_def by simp
  1418     finally show ?thesis .
  1419   qed (insert x, simp)
  1420 qed auto
  1421 
  1422 lemma LIMSEQ_const_iff:
  1423   fixes k l :: "'a::t2_space"
  1424   shows "(\<lambda>n. k) ----> l \<longleftrightarrow> k = l"
  1425   using trivial_limit_sequentially by (rule tendsto_const_iff)
  1426 
  1427 lemma LIMSEQ_SUP:
  1428   "incseq X \<Longrightarrow> X ----> (SUP i. X i :: 'a :: {complete_linorder, linorder_topology})"
  1429   by (intro increasing_tendsto)
  1430      (auto simp: SUP_upper less_SUP_iff incseq_def eventually_sequentially intro: less_le_trans)
  1431 
  1432 lemma LIMSEQ_INF:
  1433   "decseq X \<Longrightarrow> X ----> (INF i. X i :: 'a :: {complete_linorder, linorder_topology})"
  1434   by (intro decreasing_tendsto)
  1435      (auto simp: INF_lower INF_less_iff decseq_def eventually_sequentially intro: le_less_trans)
  1436 
  1437 lemma LIMSEQ_ignore_initial_segment:
  1438   "f ----> a \<Longrightarrow> (\<lambda>n. f (n + k)) ----> a"
  1439   unfolding tendsto_def
  1440   by (subst eventually_sequentially_seg[where k=k])
  1441 
  1442 lemma LIMSEQ_offset:
  1443   "(\<lambda>n. f (n + k)) ----> a \<Longrightarrow> f ----> a"
  1444   unfolding tendsto_def
  1445   by (subst (asm) eventually_sequentially_seg[where k=k])
  1446 
  1447 lemma LIMSEQ_Suc: "f ----> l \<Longrightarrow> (\<lambda>n. f (Suc n)) ----> l"
  1448 by (drule_tac k="Suc 0" in LIMSEQ_ignore_initial_segment, simp)
  1449 
  1450 lemma LIMSEQ_imp_Suc: "(\<lambda>n. f (Suc n)) ----> l \<Longrightarrow> f ----> l"
  1451 by (rule_tac k="Suc 0" in LIMSEQ_offset, simp)
  1452 
  1453 lemma LIMSEQ_Suc_iff: "(\<lambda>n. f (Suc n)) ----> l = f ----> l"
  1454 by (blast intro: LIMSEQ_imp_Suc LIMSEQ_Suc)
  1455 
  1456 lemma LIMSEQ_unique:
  1457   fixes a b :: "'a::t2_space"
  1458   shows "\<lbrakk>X ----> a; X ----> b\<rbrakk> \<Longrightarrow> a = b"
  1459   using trivial_limit_sequentially by (rule tendsto_unique)
  1460 
  1461 lemma LIMSEQ_le_const:
  1462   "\<lbrakk>X ----> (x::'a::linorder_topology); \<exists>N. \<forall>n\<ge>N. a \<le> X n\<rbrakk> \<Longrightarrow> a \<le> x"
  1463   using tendsto_le_const[of sequentially X x a] by (simp add: eventually_sequentially)
  1464 
  1465 lemma LIMSEQ_le:
  1466   "\<lbrakk>X ----> x; Y ----> y; \<exists>N. \<forall>n\<ge>N. X n \<le> Y n\<rbrakk> \<Longrightarrow> x \<le> (y::'a::linorder_topology)"
  1467   using tendsto_le[of sequentially Y y X x] by (simp add: eventually_sequentially)
  1468 
  1469 lemma LIMSEQ_le_const2:
  1470   "\<lbrakk>X ----> (x::'a::linorder_topology); \<exists>N. \<forall>n\<ge>N. X n \<le> a\<rbrakk> \<Longrightarrow> x \<le> a"
  1471   by (rule LIMSEQ_le[of X x "\<lambda>n. a"]) (auto simp: tendsto_const)
  1472 
  1473 lemma convergentD: "convergent X ==> \<exists>L. (X ----> L)"
  1474 by (simp add: convergent_def)
  1475 
  1476 lemma convergentI: "(X ----> L) ==> convergent X"
  1477 by (auto simp add: convergent_def)
  1478 
  1479 lemma convergent_LIMSEQ_iff: "convergent X = (X ----> lim X)"
  1480 by (auto intro: theI LIMSEQ_unique simp add: convergent_def lim_def)
  1481 
  1482 lemma convergent_const: "convergent (\<lambda>n. c)"
  1483   by (rule convergentI, rule tendsto_const)
  1484 
  1485 lemma monoseq_le:
  1486   "monoseq a \<Longrightarrow> a ----> (x::'a::linorder_topology) \<Longrightarrow>
  1487     ((\<forall> n. a n \<le> x) \<and> (\<forall>m. \<forall>n\<ge>m. a m \<le> a n)) \<or> ((\<forall> n. x \<le> a n) \<and> (\<forall>m. \<forall>n\<ge>m. a n \<le> a m))"
  1488   by (metis LIMSEQ_le_const LIMSEQ_le_const2 decseq_def incseq_def monoseq_iff)
  1489 
  1490 lemma LIMSEQ_subseq_LIMSEQ:
  1491   "\<lbrakk> X ----> L; subseq f \<rbrakk> \<Longrightarrow> (X o f) ----> L"
  1492   unfolding comp_def by (rule filterlim_compose[of X, OF _ filterlim_subseq])
  1493 
  1494 lemma convergent_subseq_convergent:
  1495   "\<lbrakk>convergent X; subseq f\<rbrakk> \<Longrightarrow> convergent (X o f)"
  1496   unfolding convergent_def by (auto intro: LIMSEQ_subseq_LIMSEQ)
  1497 
  1498 lemma limI: "X ----> L ==> lim X = L"
  1499 apply (simp add: lim_def)
  1500 apply (blast intro: LIMSEQ_unique)
  1501 done
  1502 
  1503 lemma lim_le: "convergent f \<Longrightarrow> (\<And>n. f n \<le> (x::'a::linorder_topology)) \<Longrightarrow> lim f \<le> x"
  1504   using LIMSEQ_le_const2[of f "lim f" x] by (simp add: convergent_LIMSEQ_iff)
  1505 
  1506 subsubsection{*Increasing and Decreasing Series*}
  1507 
  1508 lemma incseq_le: "incseq X \<Longrightarrow> X ----> L \<Longrightarrow> X n \<le> (L::'a::linorder_topology)"
  1509   by (metis incseq_def LIMSEQ_le_const)
  1510 
  1511 lemma decseq_le: "decseq X \<Longrightarrow> X ----> L \<Longrightarrow> (L::'a::linorder_topology) \<le> X n"
  1512   by (metis decseq_def LIMSEQ_le_const2)
  1513 
  1514 subsection {* First countable topologies *}
  1515 
  1516 class first_countable_topology = topological_space +
  1517   assumes first_countable_basis:
  1518     "\<exists>A::nat \<Rightarrow> 'a set. (\<forall>i. x \<in> A i \<and> open (A i)) \<and> (\<forall>S. open S \<and> x \<in> S \<longrightarrow> (\<exists>i. A i \<subseteq> S))"
  1519 
  1520 lemma (in first_countable_topology) countable_basis_at_decseq:
  1521   obtains A :: "nat \<Rightarrow> 'a set" where
  1522     "\<And>i. open (A i)" "\<And>i. x \<in> (A i)"
  1523     "\<And>S. open S \<Longrightarrow> x \<in> S \<Longrightarrow> eventually (\<lambda>i. A i \<subseteq> S) sequentially"
  1524 proof atomize_elim
  1525   from first_countable_basis[of x] obtain A :: "nat \<Rightarrow> 'a set" where
  1526     nhds: "\<And>i. open (A i)" "\<And>i. x \<in> A i"
  1527     and incl: "\<And>S. open S \<Longrightarrow> x \<in> S \<Longrightarrow> \<exists>i. A i \<subseteq> S"  by auto
  1528   def F \<equiv> "\<lambda>n. \<Inter>i\<le>n. A i"
  1529   show "\<exists>A. (\<forall>i. open (A i)) \<and> (\<forall>i. x \<in> A i) \<and>
  1530       (\<forall>S. open S \<longrightarrow> x \<in> S \<longrightarrow> eventually (\<lambda>i. A i \<subseteq> S) sequentially)"
  1531   proof (safe intro!: exI[of _ F])
  1532     fix i
  1533     show "open (F i)" using nhds(1) by (auto simp: F_def)
  1534     show "x \<in> F i" using nhds(2) by (auto simp: F_def)
  1535   next
  1536     fix S assume "open S" "x \<in> S"
  1537     from incl[OF this] obtain i where "F i \<subseteq> S" unfolding F_def by auto
  1538     moreover have "\<And>j. i \<le> j \<Longrightarrow> F j \<subseteq> F i"
  1539       by (auto simp: F_def)
  1540     ultimately show "eventually (\<lambda>i. F i \<subseteq> S) sequentially"
  1541       by (auto simp: eventually_sequentially)
  1542   qed
  1543 qed
  1544 
  1545 lemma (in first_countable_topology) countable_basis:
  1546   obtains A :: "nat \<Rightarrow> 'a set" where
  1547     "\<And>i. open (A i)" "\<And>i. x \<in> A i"
  1548     "\<And>F. (\<forall>n. F n \<in> A n) \<Longrightarrow> F ----> x"
  1549 proof atomize_elim
  1550   obtain A :: "nat \<Rightarrow> 'a set" where A:
  1551     "\<And>i. open (A i)"
  1552     "\<And>i. x \<in> A i"
  1553     "\<And>S. open S \<Longrightarrow> x \<in> S \<Longrightarrow> eventually (\<lambda>i. A i \<subseteq> S) sequentially"
  1554     by (rule countable_basis_at_decseq) blast
  1555   {
  1556     fix F S assume "\<forall>n. F n \<in> A n" "open S" "x \<in> S"
  1557     with A(3)[of S] have "eventually (\<lambda>n. F n \<in> S) sequentially"
  1558       by (auto elim: eventually_elim1 simp: subset_eq)
  1559   }
  1560   with A show "\<exists>A. (\<forall>i. open (A i)) \<and> (\<forall>i. x \<in> A i) \<and> (\<forall>F. (\<forall>n. F n \<in> A n) \<longrightarrow> F ----> x)"
  1561     by (intro exI[of _ A]) (auto simp: tendsto_def)
  1562 qed
  1563 
  1564 lemma (in first_countable_topology) sequentially_imp_eventually_nhds_within:
  1565   assumes "\<forall>f. (\<forall>n. f n \<in> s) \<and> f ----> a \<longrightarrow> eventually (\<lambda>n. P (f n)) sequentially"
  1566   shows "eventually P (inf (nhds a) (principal s))"
  1567 proof (rule ccontr)
  1568   obtain A :: "nat \<Rightarrow> 'a set" where A:
  1569     "\<And>i. open (A i)"
  1570     "\<And>i. a \<in> A i"
  1571     "\<And>F. \<forall>n. F n \<in> A n \<Longrightarrow> F ----> a"
  1572     by (rule countable_basis) blast
  1573   assume "\<not> ?thesis"
  1574   with A have P: "\<exists>F. \<forall>n. F n \<in> s \<and> F n \<in> A n \<and> \<not> P (F n)"
  1575     unfolding eventually_inf_principal eventually_nhds by (intro choice) fastforce
  1576   then obtain F where F0: "\<forall>n. F n \<in> s" and F2: "\<forall>n. F n \<in> A n" and F3: "\<forall>n. \<not> P (F n)"
  1577     by blast
  1578   with A have "F ----> a" by auto
  1579   hence "eventually (\<lambda>n. P (F n)) sequentially"
  1580     using assms F0 by simp
  1581   thus "False" by (simp add: F3)
  1582 qed
  1583 
  1584 lemma (in first_countable_topology) eventually_nhds_within_iff_sequentially:
  1585   "eventually P (inf (nhds a) (principal s)) \<longleftrightarrow> 
  1586     (\<forall>f. (\<forall>n. f n \<in> s) \<and> f ----> a \<longrightarrow> eventually (\<lambda>n. P (f n)) sequentially)"
  1587 proof (safe intro!: sequentially_imp_eventually_nhds_within)
  1588   assume "eventually P (inf (nhds a) (principal s))" 
  1589   then obtain S where "open S" "a \<in> S" "\<forall>x\<in>S. x \<in> s \<longrightarrow> P x"
  1590     by (auto simp: eventually_inf_principal eventually_nhds)
  1591   moreover fix f assume "\<forall>n. f n \<in> s" "f ----> a"
  1592   ultimately show "eventually (\<lambda>n. P (f n)) sequentially"
  1593     by (auto dest!: topological_tendstoD elim: eventually_elim1)
  1594 qed
  1595 
  1596 lemma (in first_countable_topology) eventually_nhds_iff_sequentially:
  1597   "eventually P (nhds a) \<longleftrightarrow> (\<forall>f. f ----> a \<longrightarrow> eventually (\<lambda>n. P (f n)) sequentially)"
  1598   using eventually_nhds_within_iff_sequentially[of P a UNIV] by simp
  1599 
  1600 subsection {* Function limit at a point *}
  1601 
  1602 abbreviation
  1603   LIM :: "('a::topological_space \<Rightarrow> 'b::topological_space) \<Rightarrow> 'a \<Rightarrow> 'b \<Rightarrow> bool"
  1604         ("((_)/ -- (_)/ --> (_))" [60, 0, 60] 60) where
  1605   "f -- a --> L \<equiv> (f ---> L) (at a)"
  1606 
  1607 lemma tendsto_within_open: "a \<in> S \<Longrightarrow> open S \<Longrightarrow> (f ---> l) (at a within S) \<longleftrightarrow> (f -- a --> l)"
  1608   unfolding tendsto_def by (simp add: at_within_open[where S=S])
  1609 
  1610 lemma LIM_const_not_eq[tendsto_intros]:
  1611   fixes a :: "'a::perfect_space"
  1612   fixes k L :: "'b::t2_space"
  1613   shows "k \<noteq> L \<Longrightarrow> \<not> (\<lambda>x. k) -- a --> L"
  1614   by (simp add: tendsto_const_iff)
  1615 
  1616 lemmas LIM_not_zero = LIM_const_not_eq [where L = 0]
  1617 
  1618 lemma LIM_const_eq:
  1619   fixes a :: "'a::perfect_space"
  1620   fixes k L :: "'b::t2_space"
  1621   shows "(\<lambda>x. k) -- a --> L \<Longrightarrow> k = L"
  1622   by (simp add: tendsto_const_iff)
  1623 
  1624 lemma LIM_unique:
  1625   fixes a :: "'a::perfect_space" and L M :: "'b::t2_space"
  1626   shows "f -- a --> L \<Longrightarrow> f -- a --> M \<Longrightarrow> L = M"
  1627   using at_neq_bot by (rule tendsto_unique)
  1628 
  1629 text {* Limits are equal for functions equal except at limit point *}
  1630 
  1631 lemma LIM_equal: "\<forall>x. x \<noteq> a --> (f x = g x) \<Longrightarrow> (f -- a --> l) \<longleftrightarrow> (g -- a --> l)"
  1632   unfolding tendsto_def eventually_at_topological by simp
  1633 
  1634 lemma LIM_cong: "a = b \<Longrightarrow> (\<And>x. x \<noteq> b \<Longrightarrow> f x = g x) \<Longrightarrow> l = m \<Longrightarrow> (f -- a --> l) \<longleftrightarrow> (g -- b --> m)"
  1635   by (simp add: LIM_equal)
  1636 
  1637 lemma LIM_cong_limit: "f -- x --> L \<Longrightarrow> K = L \<Longrightarrow> f -- x --> K"
  1638   by simp
  1639 
  1640 lemma tendsto_at_iff_tendsto_nhds:
  1641   "g -- l --> g l \<longleftrightarrow> (g ---> g l) (nhds l)"
  1642   unfolding tendsto_def eventually_at_filter
  1643   by (intro ext all_cong imp_cong) (auto elim!: eventually_elim1)
  1644 
  1645 lemma tendsto_compose:
  1646   "g -- l --> g l \<Longrightarrow> (f ---> l) F \<Longrightarrow> ((\<lambda>x. g (f x)) ---> g l) F"
  1647   unfolding tendsto_at_iff_tendsto_nhds by (rule filterlim_compose[of g])
  1648 
  1649 lemma LIM_o: "\<lbrakk>g -- l --> g l; f -- a --> l\<rbrakk> \<Longrightarrow> (g \<circ> f) -- a --> g l"
  1650   unfolding o_def by (rule tendsto_compose)
  1651 
  1652 lemma tendsto_compose_eventually:
  1653   "g -- l --> m \<Longrightarrow> (f ---> l) F \<Longrightarrow> eventually (\<lambda>x. f x \<noteq> l) F \<Longrightarrow> ((\<lambda>x. g (f x)) ---> m) F"
  1654   by (rule filterlim_compose[of g _ "at l"]) (auto simp add: filterlim_at)
  1655 
  1656 lemma LIM_compose_eventually:
  1657   assumes f: "f -- a --> b"
  1658   assumes g: "g -- b --> c"
  1659   assumes inj: "eventually (\<lambda>x. f x \<noteq> b) (at a)"
  1660   shows "(\<lambda>x. g (f x)) -- a --> c"
  1661   using g f inj by (rule tendsto_compose_eventually)
  1662 
  1663 subsubsection {* Relation of LIM and LIMSEQ *}
  1664 
  1665 lemma (in first_countable_topology) sequentially_imp_eventually_within:
  1666   "(\<forall>f. (\<forall>n. f n \<in> s \<and> f n \<noteq> a) \<and> f ----> a \<longrightarrow> eventually (\<lambda>n. P (f n)) sequentially) \<Longrightarrow>
  1667     eventually P (at a within s)"
  1668   unfolding at_within_def
  1669   by (intro sequentially_imp_eventually_nhds_within) auto
  1670 
  1671 lemma (in first_countable_topology) sequentially_imp_eventually_at:
  1672   "(\<forall>f. (\<forall>n. f n \<noteq> a) \<and> f ----> a \<longrightarrow> eventually (\<lambda>n. P (f n)) sequentially) \<Longrightarrow> eventually P (at a)"
  1673   using assms sequentially_imp_eventually_within [where s=UNIV] by simp
  1674 
  1675 lemma LIMSEQ_SEQ_conv1:
  1676   fixes f :: "'a::topological_space \<Rightarrow> 'b::topological_space"
  1677   assumes f: "f -- a --> l"
  1678   shows "\<forall>S. (\<forall>n. S n \<noteq> a) \<and> S ----> a \<longrightarrow> (\<lambda>n. f (S n)) ----> l"
  1679   using tendsto_compose_eventually [OF f, where F=sequentially] by simp
  1680 
  1681 lemma LIMSEQ_SEQ_conv2:
  1682   fixes f :: "'a::first_countable_topology \<Rightarrow> 'b::topological_space"
  1683   assumes "\<forall>S. (\<forall>n. S n \<noteq> a) \<and> S ----> a \<longrightarrow> (\<lambda>n. f (S n)) ----> l"
  1684   shows "f -- a --> l"
  1685   using assms unfolding tendsto_def [where l=l] by (simp add: sequentially_imp_eventually_at)
  1686 
  1687 lemma LIMSEQ_SEQ_conv:
  1688   "(\<forall>S. (\<forall>n. S n \<noteq> a) \<and> S ----> (a::'a::first_countable_topology) \<longrightarrow> (\<lambda>n. X (S n)) ----> L) =
  1689    (X -- a --> (L::'b::topological_space))"
  1690   using LIMSEQ_SEQ_conv2 LIMSEQ_SEQ_conv1 ..
  1691 
  1692 subsection {* Continuity *}
  1693 
  1694 subsubsection {* Continuity on a set *}
  1695 
  1696 definition continuous_on :: "'a set \<Rightarrow> ('a :: topological_space \<Rightarrow> 'b :: topological_space) \<Rightarrow> bool" where
  1697   "continuous_on s f \<longleftrightarrow> (\<forall>x\<in>s. (f ---> f x) (at x within s))"
  1698 
  1699 lemma continuous_on_cong [cong]:
  1700   "s = t \<Longrightarrow> (\<And>x. x \<in> t \<Longrightarrow> f x = g x) \<Longrightarrow> continuous_on s f \<longleftrightarrow> continuous_on t g"
  1701   unfolding continuous_on_def by (intro ball_cong filterlim_cong) (auto simp: eventually_at_filter)
  1702 
  1703 lemma continuous_on_topological:
  1704   "continuous_on s f \<longleftrightarrow>
  1705     (\<forall>x\<in>s. \<forall>B. open B \<longrightarrow> f x \<in> B \<longrightarrow> (\<exists>A. open A \<and> x \<in> A \<and> (\<forall>y\<in>s. y \<in> A \<longrightarrow> f y \<in> B)))"
  1706   unfolding continuous_on_def tendsto_def eventually_at_topological by metis
  1707 
  1708 lemma continuous_on_open_invariant:
  1709   "continuous_on s f \<longleftrightarrow> (\<forall>B. open B \<longrightarrow> (\<exists>A. open A \<and> A \<inter> s = f -` B \<inter> s))"
  1710 proof safe
  1711   fix B :: "'b set" assume "continuous_on s f" "open B"
  1712   then have "\<forall>x\<in>f -` B \<inter> s. (\<exists>A. open A \<and> x \<in> A \<and> s \<inter> A \<subseteq> f -` B)"
  1713     by (auto simp: continuous_on_topological subset_eq Ball_def imp_conjL)
  1714   then obtain A where "\<forall>x\<in>f -` B \<inter> s. open (A x) \<and> x \<in> A x \<and> s \<inter> A x \<subseteq> f -` B"
  1715     unfolding bchoice_iff ..
  1716   then show "\<exists>A. open A \<and> A \<inter> s = f -` B \<inter> s"
  1717     by (intro exI[of _ "\<Union>x\<in>f -` B \<inter> s. A x"]) auto
  1718 next
  1719   assume B: "\<forall>B. open B \<longrightarrow> (\<exists>A. open A \<and> A \<inter> s = f -` B \<inter> s)"
  1720   show "continuous_on s f"
  1721     unfolding continuous_on_topological
  1722   proof safe
  1723     fix x B assume "x \<in> s" "open B" "f x \<in> B"
  1724     with B obtain A where A: "open A" "A \<inter> s = f -` B \<inter> s" by auto
  1725     with `x \<in> s` `f x \<in> B` show "\<exists>A. open A \<and> x \<in> A \<and> (\<forall>y\<in>s. y \<in> A \<longrightarrow> f y \<in> B)"
  1726       by (intro exI[of _ A]) auto
  1727   qed
  1728 qed
  1729 
  1730 lemma continuous_on_open_vimage:
  1731   "open s \<Longrightarrow> continuous_on s f \<longleftrightarrow> (\<forall>B. open B \<longrightarrow> open (f -` B \<inter> s))"
  1732   unfolding continuous_on_open_invariant
  1733   by (metis open_Int Int_absorb Int_commute[of s] Int_assoc[of _ _ s])
  1734 
  1735 corollary continuous_imp_open_vimage:
  1736   assumes "continuous_on s f" "open s" "open B" "f -` B \<subseteq> s"
  1737     shows "open (f -` B)"
  1738 by (metis assms continuous_on_open_vimage le_iff_inf)
  1739 
  1740 corollary open_vimage[continuous_intros]:
  1741   assumes "open s" and "continuous_on UNIV f"
  1742   shows "open (f -` s)"
  1743   using assms unfolding continuous_on_open_vimage [OF open_UNIV]
  1744   by simp
  1745 
  1746 lemma continuous_on_closed_invariant:
  1747   "continuous_on s f \<longleftrightarrow> (\<forall>B. closed B \<longrightarrow> (\<exists>A. closed A \<and> A \<inter> s = f -` B \<inter> s))"
  1748 proof -
  1749   have *: "\<And>P Q::'b set\<Rightarrow>bool. (\<And>A. P A \<longleftrightarrow> Q (- A)) \<Longrightarrow> (\<forall>A. P A) \<longleftrightarrow> (\<forall>A. Q A)"
  1750     by (metis double_compl)
  1751   show ?thesis
  1752     unfolding continuous_on_open_invariant by (intro *) (auto simp: open_closed[symmetric])
  1753 qed
  1754 
  1755 lemma continuous_on_closed_vimage:
  1756   "closed s \<Longrightarrow> continuous_on s f \<longleftrightarrow> (\<forall>B. closed B \<longrightarrow> closed (f -` B \<inter> s))"
  1757   unfolding continuous_on_closed_invariant
  1758   by (metis closed_Int Int_absorb Int_commute[of s] Int_assoc[of _ _ s])
  1759 
  1760 corollary closed_vimage[continuous_intros]:
  1761   assumes "closed s" and "continuous_on UNIV f"
  1762   shows "closed (f -` s)"
  1763   using assms unfolding continuous_on_closed_vimage [OF closed_UNIV]
  1764   by simp
  1765 
  1766 lemma continuous_on_open_Union:
  1767   "(\<And>s. s \<in> S \<Longrightarrow> open s) \<Longrightarrow> (\<And>s. s \<in> S \<Longrightarrow> continuous_on s f) \<Longrightarrow> continuous_on (\<Union>S) f"
  1768   unfolding continuous_on_def by safe (metis open_Union at_within_open UnionI)
  1769 
  1770 lemma continuous_on_open_UN:
  1771   "(\<And>s. s \<in> S \<Longrightarrow> open (A s)) \<Longrightarrow> (\<And>s. s \<in> S \<Longrightarrow> continuous_on (A s) f) \<Longrightarrow> continuous_on (\<Union>s\<in>S. A s) f"
  1772   unfolding Union_image_eq[symmetric] by (rule continuous_on_open_Union) auto
  1773 
  1774 lemma continuous_on_closed_Un:
  1775   "closed s \<Longrightarrow> closed t \<Longrightarrow> continuous_on s f \<Longrightarrow> continuous_on t f \<Longrightarrow> continuous_on (s \<union> t) f"
  1776   by (auto simp add: continuous_on_closed_vimage closed_Un Int_Un_distrib)
  1777 
  1778 lemma continuous_on_If:
  1779   assumes closed: "closed s" "closed t" and cont: "continuous_on s f" "continuous_on t g"
  1780     and P: "\<And>x. x \<in> s \<Longrightarrow> \<not> P x \<Longrightarrow> f x = g x" "\<And>x. x \<in> t \<Longrightarrow> P x \<Longrightarrow> f x = g x"
  1781   shows "continuous_on (s \<union> t) (\<lambda>x. if P x then f x else g x)" (is "continuous_on _ ?h")
  1782 proof-
  1783   from P have "\<forall>x\<in>s. f x = ?h x" "\<forall>x\<in>t. g x = ?h x"
  1784     by auto
  1785   with cont have "continuous_on s ?h" "continuous_on t ?h"
  1786     by simp_all
  1787   with closed show ?thesis
  1788     by (rule continuous_on_closed_Un)
  1789 qed
  1790 
  1791 lemma continuous_on_id[continuous_intros]: "continuous_on s (\<lambda>x. x)"
  1792   unfolding continuous_on_def by (fast intro: tendsto_ident_at)
  1793 
  1794 lemma continuous_on_const[continuous_intros]: "continuous_on s (\<lambda>x. c)"
  1795   unfolding continuous_on_def by (auto intro: tendsto_const)
  1796 
  1797 lemma continuous_on_compose[continuous_intros]:
  1798   "continuous_on s f \<Longrightarrow> continuous_on (f ` s) g \<Longrightarrow> continuous_on s (g o f)"
  1799   unfolding continuous_on_topological by simp metis
  1800 
  1801 lemma continuous_on_compose2:
  1802   "continuous_on t g \<Longrightarrow> continuous_on s f \<Longrightarrow> t = f ` s \<Longrightarrow> continuous_on s (\<lambda>x. g (f x))"
  1803   using continuous_on_compose[of s f g] by (simp add: comp_def)
  1804 
  1805 subsubsection {* Continuity at a point *}
  1806 
  1807 definition continuous :: "'a::t2_space filter \<Rightarrow> ('a \<Rightarrow> 'b::topological_space) \<Rightarrow> bool" where
  1808   "continuous F f \<longleftrightarrow> (f ---> f (Lim F (\<lambda>x. x))) F"
  1809 
  1810 lemma continuous_bot[continuous_intros, simp]: "continuous bot f"
  1811   unfolding continuous_def by auto
  1812 
  1813 lemma continuous_trivial_limit: "trivial_limit net \<Longrightarrow> continuous net f"
  1814   by simp
  1815 
  1816 lemma continuous_within: "continuous (at x within s) f \<longleftrightarrow> (f ---> f x) (at x within s)"
  1817   by (cases "trivial_limit (at x within s)") (auto simp add: Lim_ident_at continuous_def)
  1818 
  1819 lemma continuous_within_topological:
  1820   "continuous (at x within s) f \<longleftrightarrow>
  1821     (\<forall>B. open B \<longrightarrow> f x \<in> B \<longrightarrow> (\<exists>A. open A \<and> x \<in> A \<and> (\<forall>y\<in>s. y \<in> A \<longrightarrow> f y \<in> B)))"
  1822   unfolding continuous_within tendsto_def eventually_at_topological by metis
  1823 
  1824 lemma continuous_within_compose[continuous_intros]:
  1825   "continuous (at x within s) f \<Longrightarrow> continuous (at (f x) within f ` s) g \<Longrightarrow>
  1826   continuous (at x within s) (g o f)"
  1827   by (simp add: continuous_within_topological) metis
  1828 
  1829 lemma continuous_within_compose2:
  1830   "continuous (at x within s) f \<Longrightarrow> continuous (at (f x) within f ` s) g \<Longrightarrow>
  1831   continuous (at x within s) (\<lambda>x. g (f x))"
  1832   using continuous_within_compose[of x s f g] by (simp add: comp_def)
  1833 
  1834 lemma continuous_at: "continuous (at x) f \<longleftrightarrow> f -- x --> f x"
  1835   using continuous_within[of x UNIV f] by simp
  1836 
  1837 lemma continuous_ident[continuous_intros, simp]: "continuous (at x within S) (\<lambda>x. x)"
  1838   unfolding continuous_within by (rule tendsto_ident_at)
  1839 
  1840 lemma continuous_const[continuous_intros, simp]: "continuous F (\<lambda>x. c)"
  1841   unfolding continuous_def by (rule tendsto_const)
  1842 
  1843 lemma continuous_on_eq_continuous_within:
  1844   "continuous_on s f \<longleftrightarrow> (\<forall>x\<in>s. continuous (at x within s) f)"
  1845   unfolding continuous_on_def continuous_within ..
  1846 
  1847 abbreviation isCont :: "('a::t2_space \<Rightarrow> 'b::topological_space) \<Rightarrow> 'a \<Rightarrow> bool" where
  1848   "isCont f a \<equiv> continuous (at a) f"
  1849 
  1850 lemma isCont_def: "isCont f a \<longleftrightarrow> f -- a --> f a"
  1851   by (rule continuous_at)
  1852 
  1853 lemma continuous_at_within: "isCont f x \<Longrightarrow> continuous (at x within s) f"
  1854   by (auto intro: tendsto_mono at_le simp: continuous_at continuous_within)
  1855 
  1856 lemma continuous_on_eq_continuous_at: "open s \<Longrightarrow> continuous_on s f \<longleftrightarrow> (\<forall>x\<in>s. isCont f x)"
  1857   by (simp add: continuous_on_def continuous_at at_within_open[of _ s])
  1858 
  1859 lemma continuous_on_subset: "continuous_on s f \<Longrightarrow> t \<subseteq> s \<Longrightarrow> continuous_on t f"
  1860   unfolding continuous_on_def by (metis subset_eq tendsto_within_subset)
  1861 
  1862 lemma continuous_at_imp_continuous_on: "\<forall>x\<in>s. isCont f x \<Longrightarrow> continuous_on s f"
  1863   by (auto intro: continuous_at_within simp: continuous_on_eq_continuous_within)
  1864 
  1865 lemma isContI_continuous: "continuous (at x within UNIV) f \<Longrightarrow> isCont f x"
  1866   by simp
  1867 
  1868 lemma isCont_ident[continuous_intros, simp]: "isCont (\<lambda>x. x) a"
  1869   using continuous_ident by (rule isContI_continuous)
  1870 
  1871 lemmas isCont_const = continuous_const
  1872 
  1873 lemma isCont_o2: "isCont f a \<Longrightarrow> isCont g (f a) \<Longrightarrow> isCont (\<lambda>x. g (f x)) a"
  1874   unfolding isCont_def by (rule tendsto_compose)
  1875 
  1876 lemma isCont_o[continuous_intros]: "isCont f a \<Longrightarrow> isCont g (f a) \<Longrightarrow> isCont (g \<circ> f) a"
  1877   unfolding o_def by (rule isCont_o2)
  1878 
  1879 lemma isCont_tendsto_compose: "isCont g l \<Longrightarrow> (f ---> l) F \<Longrightarrow> ((\<lambda>x. g (f x)) ---> g l) F"
  1880   unfolding isCont_def by (rule tendsto_compose)
  1881 
  1882 lemma continuous_within_compose3:
  1883   "isCont g (f x) \<Longrightarrow> continuous (at x within s) f \<Longrightarrow> continuous (at x within s) (\<lambda>x. g (f x))"
  1884   using continuous_within_compose2[of x s f g] by (simp add: continuous_at_within)
  1885 
  1886 subsubsection{* Open-cover compactness *}
  1887 
  1888 context topological_space
  1889 begin
  1890 
  1891 definition compact :: "'a set \<Rightarrow> bool" where
  1892   compact_eq_heine_borel: -- "This name is used for backwards compatibility"
  1893     "compact S \<longleftrightarrow> (\<forall>C. (\<forall>c\<in>C. open c) \<and> S \<subseteq> \<Union>C \<longrightarrow> (\<exists>D\<subseteq>C. finite D \<and> S \<subseteq> \<Union>D))"
  1894 
  1895 lemma compactI:
  1896   assumes "\<And>C. \<forall>t\<in>C. open t \<Longrightarrow> s \<subseteq> \<Union> C \<Longrightarrow> \<exists>C'. C' \<subseteq> C \<and> finite C' \<and> s \<subseteq> \<Union> C'"
  1897   shows "compact s"
  1898   unfolding compact_eq_heine_borel using assms by metis
  1899 
  1900 lemma compact_empty[simp]: "compact {}"
  1901   by (auto intro!: compactI)
  1902 
  1903 lemma compactE:
  1904   assumes "compact s" and "\<forall>t\<in>C. open t" and "s \<subseteq> \<Union>C"
  1905   obtains C' where "C' \<subseteq> C" and "finite C'" and "s \<subseteq> \<Union>C'"
  1906   using assms unfolding compact_eq_heine_borel by metis
  1907 
  1908 lemma compactE_image:
  1909   assumes "compact s" and "\<forall>t\<in>C. open (f t)" and "s \<subseteq> (\<Union>c\<in>C. f c)"
  1910   obtains C' where "C' \<subseteq> C" and "finite C'" and "s \<subseteq> (\<Union>c\<in>C'. f c)"
  1911   using assms unfolding ball_simps[symmetric] SUP_def
  1912   by (metis (lifting) finite_subset_image compact_eq_heine_borel[of s])
  1913 
  1914 lemma compact_inter_closed [intro]:
  1915   assumes "compact s" and "closed t"
  1916   shows "compact (s \<inter> t)"
  1917 proof (rule compactI)
  1918   fix C assume C: "\<forall>c\<in>C. open c" and cover: "s \<inter> t \<subseteq> \<Union>C"
  1919   from C `closed t` have "\<forall>c\<in>C \<union> {-t}. open c" by auto
  1920   moreover from cover have "s \<subseteq> \<Union>(C \<union> {-t})" by auto
  1921   ultimately have "\<exists>D\<subseteq>C \<union> {-t}. finite D \<and> s \<subseteq> \<Union>D"
  1922     using `compact s` unfolding compact_eq_heine_borel by auto
  1923   then obtain D where "D \<subseteq> C \<union> {- t} \<and> finite D \<and> s \<subseteq> \<Union>D" ..
  1924   then show "\<exists>D\<subseteq>C. finite D \<and> s \<inter> t \<subseteq> \<Union>D"
  1925     by (intro exI[of _ "D - {-t}"]) auto
  1926 qed
  1927 
  1928 lemma inj_setminus: "inj_on uminus (A::'a set set)"
  1929   by (auto simp: inj_on_def)
  1930 
  1931 lemma compact_fip:
  1932   "compact U \<longleftrightarrow>
  1933     (\<forall>A. (\<forall>a\<in>A. closed a) \<longrightarrow> (\<forall>B \<subseteq> A. finite B \<longrightarrow> U \<inter> \<Inter>B \<noteq> {}) \<longrightarrow> U \<inter> \<Inter>A \<noteq> {})"
  1934   (is "_ \<longleftrightarrow> ?R")
  1935 proof (safe intro!: compact_eq_heine_borel[THEN iffD2])
  1936   fix A
  1937   assume "compact U"
  1938     and A: "\<forall>a\<in>A. closed a" "U \<inter> \<Inter>A = {}"
  1939     and fi: "\<forall>B \<subseteq> A. finite B \<longrightarrow> U \<inter> \<Inter>B \<noteq> {}"
  1940   from A have "(\<forall>a\<in>uminus`A. open a) \<and> U \<subseteq> \<Union>(uminus`A)"
  1941     by auto
  1942   with `compact U` obtain B where "B \<subseteq> A" "finite (uminus`B)" "U \<subseteq> \<Union>(uminus`B)"
  1943     unfolding compact_eq_heine_borel by (metis subset_image_iff)
  1944   with fi[THEN spec, of B] show False
  1945     by (auto dest: finite_imageD intro: inj_setminus)
  1946 next
  1947   fix A
  1948   assume ?R
  1949   assume "\<forall>a\<in>A. open a" "U \<subseteq> \<Union>A"
  1950   then have "U \<inter> \<Inter>(uminus`A) = {}" "\<forall>a\<in>uminus`A. closed a"
  1951     by auto
  1952   with `?R` obtain B where "B \<subseteq> A" "finite (uminus`B)" "U \<inter> \<Inter>(uminus`B) = {}"
  1953     by (metis subset_image_iff)
  1954   then show "\<exists>T\<subseteq>A. finite T \<and> U \<subseteq> \<Union>T"
  1955     by  (auto intro!: exI[of _ B] inj_setminus dest: finite_imageD)
  1956 qed
  1957 
  1958 lemma compact_imp_fip:
  1959   "compact s \<Longrightarrow> \<forall>t \<in> f. closed t \<Longrightarrow> \<forall>f'. finite f' \<and> f' \<subseteq> f \<longrightarrow> (s \<inter> (\<Inter> f') \<noteq> {}) \<Longrightarrow>
  1960     s \<inter> (\<Inter> f) \<noteq> {}"
  1961   unfolding compact_fip by auto
  1962 
  1963 lemma compact_imp_fip_image:
  1964   assumes "compact s"
  1965     and P: "\<And>i. i \<in> I \<Longrightarrow> closed (f i)"
  1966     and Q: "\<And>I'. finite I' \<Longrightarrow> I' \<subseteq> I \<Longrightarrow> (s \<inter> (\<Inter>i\<in>I'. f i) \<noteq> {})"
  1967   shows "s \<inter> (\<Inter>i\<in>I. f i) \<noteq> {}"
  1968 proof -
  1969   note `compact s`
  1970   moreover from P have "\<forall>i \<in> f ` I. closed i" by blast
  1971   moreover have "\<forall>A. finite A \<and> A \<subseteq> f ` I \<longrightarrow> (s \<inter> (\<Inter>A) \<noteq> {})"
  1972   proof (rule, rule, erule conjE)
  1973     fix A :: "'a set set"
  1974     assume "finite A"
  1975     moreover assume "A \<subseteq> f ` I"
  1976     ultimately obtain B where "B \<subseteq> I" and "finite B" and "A = f ` B"
  1977       using finite_subset_image [of A f I] by blast
  1978     with Q [of B] show "s \<inter> \<Inter>A \<noteq> {}" by simp
  1979   qed
  1980   ultimately have "s \<inter> (\<Inter>(f ` I)) \<noteq> {}" by (rule compact_imp_fip)
  1981   then show ?thesis by simp
  1982 qed
  1983 
  1984 end
  1985 
  1986 lemma (in t2_space) compact_imp_closed:
  1987   assumes "compact s" shows "closed s"
  1988 unfolding closed_def
  1989 proof (rule openI)
  1990   fix y assume "y \<in> - s"
  1991   let ?C = "\<Union>x\<in>s. {u. open u \<and> x \<in> u \<and> eventually (\<lambda>y. y \<notin> u) (nhds y)}"
  1992   note `compact s`
  1993   moreover have "\<forall>u\<in>?C. open u" by simp
  1994   moreover have "s \<subseteq> \<Union>?C"
  1995   proof
  1996     fix x assume "x \<in> s"
  1997     with `y \<in> - s` have "x \<noteq> y" by clarsimp
  1998     hence "\<exists>u v. open u \<and> open v \<and> x \<in> u \<and> y \<in> v \<and> u \<inter> v = {}"
  1999       by (rule hausdorff)
  2000     with `x \<in> s` show "x \<in> \<Union>?C"
  2001       unfolding eventually_nhds by auto
  2002   qed
  2003   ultimately obtain D where "D \<subseteq> ?C" and "finite D" and "s \<subseteq> \<Union>D"
  2004     by (rule compactE)
  2005   from `D \<subseteq> ?C` have "\<forall>x\<in>D. eventually (\<lambda>y. y \<notin> x) (nhds y)" by auto
  2006   with `finite D` have "eventually (\<lambda>y. y \<notin> \<Union>D) (nhds y)"
  2007     by (simp add: eventually_Ball_finite)
  2008   with `s \<subseteq> \<Union>D` have "eventually (\<lambda>y. y \<notin> s) (nhds y)"
  2009     by (auto elim!: eventually_mono [rotated])
  2010   thus "\<exists>t. open t \<and> y \<in> t \<and> t \<subseteq> - s"
  2011     by (simp add: eventually_nhds subset_eq)
  2012 qed
  2013 
  2014 lemma compact_continuous_image:
  2015   assumes f: "continuous_on s f" and s: "compact s"
  2016   shows "compact (f ` s)"
  2017 proof (rule compactI)
  2018   fix C assume "\<forall>c\<in>C. open c" and cover: "f`s \<subseteq> \<Union>C"
  2019   with f have "\<forall>c\<in>C. \<exists>A. open A \<and> A \<inter> s = f -` c \<inter> s"
  2020     unfolding continuous_on_open_invariant by blast
  2021   then obtain A where A: "\<forall>c\<in>C. open (A c) \<and> A c \<inter> s = f -` c \<inter> s"
  2022     unfolding bchoice_iff ..
  2023   with cover have "\<forall>c\<in>C. open (A c)" "s \<subseteq> (\<Union>c\<in>C. A c)"
  2024     by (fastforce simp add: subset_eq set_eq_iff)+
  2025   from compactE_image[OF s this] obtain D where "D \<subseteq> C" "finite D" "s \<subseteq> (\<Union>c\<in>D. A c)" .
  2026   with A show "\<exists>D \<subseteq> C. finite D \<and> f`s \<subseteq> \<Union>D"
  2027     by (intro exI[of _ D]) (fastforce simp add: subset_eq set_eq_iff)+
  2028 qed
  2029 
  2030 lemma continuous_on_inv:
  2031   fixes f :: "'a::topological_space \<Rightarrow> 'b::t2_space"
  2032   assumes "continuous_on s f"  "compact s"  "\<forall>x\<in>s. g (f x) = x"
  2033   shows "continuous_on (f ` s) g"
  2034 unfolding continuous_on_topological
  2035 proof (clarsimp simp add: assms(3))
  2036   fix x :: 'a and B :: "'a set"
  2037   assume "x \<in> s" and "open B" and "x \<in> B"
  2038   have 1: "\<forall>x\<in>s. f x \<in> f ` (s - B) \<longleftrightarrow> x \<in> s - B"
  2039     using assms(3) by (auto, metis)
  2040   have "continuous_on (s - B) f"
  2041     using `continuous_on s f` Diff_subset
  2042     by (rule continuous_on_subset)
  2043   moreover have "compact (s - B)"
  2044     using `open B` and `compact s`
  2045     unfolding Diff_eq by (intro compact_inter_closed closed_Compl)
  2046   ultimately have "compact (f ` (s - B))"
  2047     by (rule compact_continuous_image)
  2048   hence "closed (f ` (s - B))"
  2049     by (rule compact_imp_closed)
  2050   hence "open (- f ` (s - B))"
  2051     by (rule open_Compl)
  2052   moreover have "f x \<in> - f ` (s - B)"
  2053     using `x \<in> s` and `x \<in> B` by (simp add: 1)
  2054   moreover have "\<forall>y\<in>s. f y \<in> - f ` (s - B) \<longrightarrow> y \<in> B"
  2055     by (simp add: 1)
  2056   ultimately show "\<exists>A. open A \<and> f x \<in> A \<and> (\<forall>y\<in>s. f y \<in> A \<longrightarrow> y \<in> B)"
  2057     by fast
  2058 qed
  2059 
  2060 lemma continuous_on_inv_into:
  2061   fixes f :: "'a::topological_space \<Rightarrow> 'b::t2_space"
  2062   assumes s: "continuous_on s f" "compact s" and f: "inj_on f s"
  2063   shows "continuous_on (f ` s) (the_inv_into s f)"
  2064   by (rule continuous_on_inv[OF s]) (auto simp: the_inv_into_f_f[OF f])
  2065 
  2066 lemma (in linorder_topology) compact_attains_sup:
  2067   assumes "compact S" "S \<noteq> {}"
  2068   shows "\<exists>s\<in>S. \<forall>t\<in>S. t \<le> s"
  2069 proof (rule classical)
  2070   assume "\<not> (\<exists>s\<in>S. \<forall>t\<in>S. t \<le> s)"
  2071   then obtain t where t: "\<forall>s\<in>S. t s \<in> S" and "\<forall>s\<in>S. s < t s"
  2072     by (metis not_le)
  2073   then have "\<forall>s\<in>S. open {..< t s}" "S \<subseteq> (\<Union>s\<in>S. {..< t s})"
  2074     by auto
  2075   with `compact S` obtain C where "C \<subseteq> S" "finite C" and C: "S \<subseteq> (\<Union>s\<in>C. {..< t s})"
  2076     by (erule compactE_image)
  2077   with `S \<noteq> {}` have Max: "Max (t`C) \<in> t`C" and "\<forall>s\<in>t`C. s \<le> Max (t`C)"
  2078     by (auto intro!: Max_in)
  2079   with C have "S \<subseteq> {..< Max (t`C)}"
  2080     by (auto intro: less_le_trans simp: subset_eq)
  2081   with t Max `C \<subseteq> S` show ?thesis
  2082     by fastforce
  2083 qed
  2084 
  2085 lemma (in linorder_topology) compact_attains_inf:
  2086   assumes "compact S" "S \<noteq> {}"
  2087   shows "\<exists>s\<in>S. \<forall>t\<in>S. s \<le> t"
  2088 proof (rule classical)
  2089   assume "\<not> (\<exists>s\<in>S. \<forall>t\<in>S. s \<le> t)"
  2090   then obtain t where t: "\<forall>s\<in>S. t s \<in> S" and "\<forall>s\<in>S. t s < s"
  2091     by (metis not_le)
  2092   then have "\<forall>s\<in>S. open {t s <..}" "S \<subseteq> (\<Union>s\<in>S. {t s <..})"
  2093     by auto
  2094   with `compact S` obtain C where "C \<subseteq> S" "finite C" and C: "S \<subseteq> (\<Union>s\<in>C. {t s <..})"
  2095     by (erule compactE_image)
  2096   with `S \<noteq> {}` have Min: "Min (t`C) \<in> t`C" and "\<forall>s\<in>t`C. Min (t`C) \<le> s"
  2097     by (auto intro!: Min_in)
  2098   with C have "S \<subseteq> {Min (t`C) <..}"
  2099     by (auto intro: le_less_trans simp: subset_eq)
  2100   with t Min `C \<subseteq> S` show ?thesis
  2101     by fastforce
  2102 qed
  2103 
  2104 lemma continuous_attains_sup:
  2105   fixes f :: "'a::topological_space \<Rightarrow> 'b::linorder_topology"
  2106   shows "compact s \<Longrightarrow> s \<noteq> {} \<Longrightarrow> continuous_on s f \<Longrightarrow> (\<exists>x\<in>s. \<forall>y\<in>s.  f y \<le> f x)"
  2107   using compact_attains_sup[of "f ` s"] compact_continuous_image[of s f] by auto
  2108 
  2109 lemma continuous_attains_inf:
  2110   fixes f :: "'a::topological_space \<Rightarrow> 'b::linorder_topology"
  2111   shows "compact s \<Longrightarrow> s \<noteq> {} \<Longrightarrow> continuous_on s f \<Longrightarrow> (\<exists>x\<in>s. \<forall>y\<in>s. f x \<le> f y)"
  2112   using compact_attains_inf[of "f ` s"] compact_continuous_image[of s f] by auto
  2113 
  2114 
  2115 subsection {* Connectedness *}
  2116 
  2117 context topological_space
  2118 begin
  2119 
  2120 definition "connected S \<longleftrightarrow>
  2121   \<not> (\<exists>A B. open A \<and> open B \<and> S \<subseteq> A \<union> B \<and> A \<inter> B \<inter> S = {} \<and> A \<inter> S \<noteq> {} \<and> B \<inter> S \<noteq> {})"
  2122 
  2123 lemma connectedI:
  2124   "(\<And>A B. open A \<Longrightarrow> open B \<Longrightarrow> A \<inter> U \<noteq> {} \<Longrightarrow> B \<inter> U \<noteq> {} \<Longrightarrow> A \<inter> B \<inter> U = {} \<Longrightarrow> U \<subseteq> A \<union> B \<Longrightarrow> False)
  2125   \<Longrightarrow> connected U"
  2126   by (auto simp: connected_def)
  2127 
  2128 lemma connected_empty[simp]: "connected {}"
  2129   by (auto intro!: connectedI)
  2130 
  2131 lemma connectedD:
  2132   "connected A \<Longrightarrow> open U \<Longrightarrow> open V \<Longrightarrow> U \<inter> V \<inter> A = {} \<Longrightarrow> A \<subseteq> U \<union> V \<Longrightarrow> U \<inter> A = {} \<or> V \<inter> A = {}" 
  2133   by (auto simp: connected_def)
  2134 
  2135 end
  2136 
  2137 lemma connected_local_const:
  2138   assumes "connected A" "a \<in> A" "b \<in> A"
  2139   assumes *: "\<forall>a\<in>A. eventually (\<lambda>b. f a = f b) (at a within A)"
  2140   shows "f a = f b"
  2141 proof -
  2142   obtain S where S: "\<And>a. a \<in> A \<Longrightarrow> a \<in> S a" "\<And>a. a \<in> A \<Longrightarrow> open (S a)"
  2143     "\<And>a x. a \<in> A \<Longrightarrow> x \<in> S a \<Longrightarrow> x \<in> A \<Longrightarrow> f a = f x"
  2144     using * unfolding eventually_at_topological by metis
  2145 
  2146   let ?P = "\<Union>b\<in>{b\<in>A. f a = f b}. S b" and ?N = "\<Union>b\<in>{b\<in>A. f a \<noteq> f b}. S b"
  2147   have "?P \<inter> A = {} \<or> ?N \<inter> A = {}"
  2148     using `connected A` S `a\<in>A`
  2149     by (intro connectedD) (auto, metis)
  2150   then show "f a = f b"
  2151   proof
  2152     assume "?N \<inter> A = {}"
  2153     then have "\<forall>x\<in>A. f a = f x"
  2154       using S(1) by auto
  2155     with `b\<in>A` show ?thesis by auto
  2156   next
  2157     assume "?P \<inter> A = {}" then show ?thesis
  2158       using `a \<in> A` S(1)[of a] by auto
  2159   qed
  2160 qed
  2161 
  2162 lemma (in linorder_topology) connectedD_interval:
  2163   assumes "connected U" and xy: "x \<in> U" "y \<in> U" and "x \<le> z" "z \<le> y"
  2164   shows "z \<in> U"
  2165 proof -
  2166   have eq: "{..<z} \<union> {z<..} = - {z}"
  2167     by auto
  2168   { assume "z \<notin> U" "x < z" "z < y"
  2169     with xy have "\<not> connected U"
  2170       unfolding connected_def simp_thms
  2171       apply (rule_tac exI[of _ "{..< z}"])
  2172       apply (rule_tac exI[of _ "{z <..}"])
  2173       apply (auto simp add: eq)
  2174       done }
  2175   with assms show "z \<in> U"
  2176     by (metis less_le)
  2177 qed
  2178 
  2179 lemma connected_continuous_image:
  2180   assumes *: "continuous_on s f"
  2181   assumes "connected s"
  2182   shows "connected (f ` s)"
  2183 proof (rule connectedI)
  2184   fix A B assume A: "open A" "A \<inter> f ` s \<noteq> {}" and B: "open B" "B \<inter> f ` s \<noteq> {}" and
  2185     AB: "A \<inter> B \<inter> f ` s = {}" "f ` s \<subseteq> A \<union> B"
  2186   obtain A' where A': "open A'" "f -` A \<inter> s = A' \<inter> s"
  2187     using * `open A` unfolding continuous_on_open_invariant by metis
  2188   obtain B' where B': "open B'" "f -` B \<inter> s = B' \<inter> s"
  2189     using * `open B` unfolding continuous_on_open_invariant by metis
  2190 
  2191   have "\<exists>A B. open A \<and> open B \<and> s \<subseteq> A \<union> B \<and> A \<inter> B \<inter> s = {} \<and> A \<inter> s \<noteq> {} \<and> B \<inter> s \<noteq> {}"
  2192   proof (rule exI[of _ A'], rule exI[of _ B'], intro conjI)
  2193     have "s \<subseteq> (f -` A \<inter> s) \<union> (f -` B \<inter> s)" using AB by auto
  2194     then show "s \<subseteq> A' \<union> B'" using A' B' by auto
  2195   next
  2196     have "(f -` A \<inter> s) \<inter> (f -` B \<inter> s) = {}" using AB by auto
  2197     then show "A' \<inter> B' \<inter> s = {}" using A' B' by auto
  2198   qed (insert A' B' A B, auto)
  2199   with `connected s` show False
  2200     unfolding connected_def by blast
  2201 qed
  2202 
  2203 
  2204 section {* Connectedness *}
  2205 
  2206 class linear_continuum_topology = linorder_topology + linear_continuum
  2207 begin
  2208 
  2209 lemma Inf_notin_open:
  2210   assumes A: "open A" and bnd: "\<forall>a\<in>A. x < a"
  2211   shows "Inf A \<notin> A"
  2212 proof
  2213   assume "Inf A \<in> A"
  2214   then obtain b where "b < Inf A" "{b <.. Inf A} \<subseteq> A"
  2215     using open_left[of A "Inf A" x] assms by auto
  2216   with dense[of b "Inf A"] obtain c where "c < Inf A" "c \<in> A"
  2217     by (auto simp: subset_eq)
  2218   then show False
  2219     using cInf_lower[OF `c \<in> A`] bnd by (metis not_le less_imp_le bdd_belowI)
  2220 qed
  2221 
  2222 lemma Sup_notin_open:
  2223   assumes A: "open A" and bnd: "\<forall>a\<in>A. a < x"
  2224   shows "Sup A \<notin> A"
  2225 proof
  2226   assume "Sup A \<in> A"
  2227   then obtain b where "Sup A < b" "{Sup A ..< b} \<subseteq> A"
  2228     using open_right[of A "Sup A" x] assms by auto
  2229   with dense[of "Sup A" b] obtain c where "Sup A < c" "c \<in> A"
  2230     by (auto simp: subset_eq)
  2231   then show False
  2232     using cSup_upper[OF `c \<in> A`] bnd by (metis less_imp_le not_le bdd_aboveI)
  2233 qed
  2234 
  2235 end
  2236 
  2237 instance linear_continuum_topology \<subseteq> perfect_space
  2238 proof
  2239   fix x :: 'a
  2240   obtain y where "x < y \<or> y < x"
  2241     using ex_gt_or_lt [of x] ..
  2242   with Inf_notin_open[of "{x}" y] Sup_notin_open[of "{x}" y]
  2243   show "\<not> open {x}"
  2244     by auto
  2245 qed
  2246 
  2247 lemma connectedI_interval:
  2248   fixes U :: "'a :: linear_continuum_topology set"
  2249   assumes *: "\<And>x y z. x \<in> U \<Longrightarrow> y \<in> U \<Longrightarrow> x \<le> z \<Longrightarrow> z \<le> y \<Longrightarrow> z \<in> U"
  2250   shows "connected U"
  2251 proof (rule connectedI)
  2252   { fix A B assume "open A" "open B" "A \<inter> B \<inter> U = {}" "U \<subseteq> A \<union> B"
  2253     fix x y assume "x < y" "x \<in> A" "y \<in> B" "x \<in> U" "y \<in> U"
  2254 
  2255     let ?z = "Inf (B \<inter> {x <..})"
  2256 
  2257     have "x \<le> ?z" "?z \<le> y"
  2258       using `y \<in> B` `x < y` by (auto intro: cInf_lower cInf_greatest)
  2259     with `x \<in> U` `y \<in> U` have "?z \<in> U"
  2260       by (rule *)
  2261     moreover have "?z \<notin> B \<inter> {x <..}"
  2262       using `open B` by (intro Inf_notin_open) auto
  2263     ultimately have "?z \<in> A"
  2264       using `x \<le> ?z` `A \<inter> B \<inter> U = {}` `x \<in> A` `U \<subseteq> A \<union> B` by auto
  2265 
  2266     { assume "?z < y"
  2267       obtain a where "?z < a" "{?z ..< a} \<subseteq> A"
  2268         using open_right[OF `open A` `?z \<in> A` `?z < y`] by auto
  2269       moreover obtain b where "b \<in> B" "x < b" "b < min a y"
  2270         using cInf_less_iff[of "B \<inter> {x <..}" "min a y"] `?z < a` `?z < y` `x < y` `y \<in> B`
  2271         by (auto intro: less_imp_le)
  2272       moreover have "?z \<le> b"
  2273         using `b \<in> B` `x < b`
  2274         by (intro cInf_lower) auto
  2275       moreover have "b \<in> U"
  2276         using `x \<le> ?z` `?z \<le> b` `b < min a y`
  2277         by (intro *[OF `x \<in> U` `y \<in> U`]) (auto simp: less_imp_le)
  2278       ultimately have "\<exists>b\<in>B. b \<in> A \<and> b \<in> U"
  2279         by (intro bexI[of _ b]) auto }
  2280     then have False
  2281       using `?z \<le> y` `?z \<in> A` `y \<in> B` `y \<in> U` `A \<inter> B \<inter> U = {}` unfolding le_less by blast }
  2282   note not_disjoint = this
  2283 
  2284   fix A B assume AB: "open A" "open B" "U \<subseteq> A \<union> B" "A \<inter> B \<inter> U = {}"
  2285   moreover assume "A \<inter> U \<noteq> {}" then obtain x where x: "x \<in> U" "x \<in> A" by auto
  2286   moreover assume "B \<inter> U \<noteq> {}" then obtain y where y: "y \<in> U" "y \<in> B" by auto
  2287   moreover note not_disjoint[of B A y x] not_disjoint[of A B x y]
  2288   ultimately show False by (cases x y rule: linorder_cases) auto
  2289 qed
  2290 
  2291 lemma connected_iff_interval:
  2292   fixes U :: "'a :: linear_continuum_topology set"
  2293   shows "connected U \<longleftrightarrow> (\<forall>x\<in>U. \<forall>y\<in>U. \<forall>z. x \<le> z \<longrightarrow> z \<le> y \<longrightarrow> z \<in> U)"
  2294   by (auto intro: connectedI_interval dest: connectedD_interval)
  2295 
  2296 lemma connected_UNIV[simp]: "connected (UNIV::'a::linear_continuum_topology set)"
  2297   unfolding connected_iff_interval by auto
  2298 
  2299 lemma connected_Ioi[simp]: "connected {a::'a::linear_continuum_topology <..}"
  2300   unfolding connected_iff_interval by auto
  2301 
  2302 lemma connected_Ici[simp]: "connected {a::'a::linear_continuum_topology ..}"
  2303   unfolding connected_iff_interval by auto
  2304 
  2305 lemma connected_Iio[simp]: "connected {..< a::'a::linear_continuum_topology}"
  2306   unfolding connected_iff_interval by auto
  2307 
  2308 lemma connected_Iic[simp]: "connected {.. a::'a::linear_continuum_topology}"
  2309   unfolding connected_iff_interval by auto
  2310 
  2311 lemma connected_Ioo[simp]: "connected {a <..< b::'a::linear_continuum_topology}"
  2312   unfolding connected_iff_interval by auto
  2313 
  2314 lemma connected_Ioc[simp]: "connected {a <.. b::'a::linear_continuum_topology}"
  2315   unfolding connected_iff_interval by auto
  2316 
  2317 lemma connected_Ico[simp]: "connected {a ..< b::'a::linear_continuum_topology}"
  2318   unfolding connected_iff_interval by auto
  2319 
  2320 lemma connected_Icc[simp]: "connected {a .. b::'a::linear_continuum_topology}"
  2321   unfolding connected_iff_interval by auto
  2322 
  2323 lemma connected_contains_Ioo: 
  2324   fixes A :: "'a :: linorder_topology set"
  2325   assumes A: "connected A" "a \<in> A" "b \<in> A" shows "{a <..< b} \<subseteq> A"
  2326   using connectedD_interval[OF A] by (simp add: subset_eq Ball_def less_imp_le)
  2327 
  2328 subsection {* Intermediate Value Theorem *}
  2329 
  2330 lemma IVT':
  2331   fixes f :: "'a :: linear_continuum_topology \<Rightarrow> 'b :: linorder_topology"
  2332   assumes y: "f a \<le> y" "y \<le> f b" "a \<le> b"
  2333   assumes *: "continuous_on {a .. b} f"
  2334   shows "\<exists>x. a \<le> x \<and> x \<le> b \<and> f x = y"
  2335 proof -
  2336   have "connected {a..b}"
  2337     unfolding connected_iff_interval by auto
  2338   from connected_continuous_image[OF * this, THEN connectedD_interval, of "f a" "f b" y] y
  2339   show ?thesis
  2340     by (auto simp add: atLeastAtMost_def atLeast_def atMost_def)
  2341 qed
  2342 
  2343 lemma IVT2':
  2344   fixes f :: "'a :: linear_continuum_topology \<Rightarrow> 'b :: linorder_topology"
  2345   assumes y: "f b \<le> y" "y \<le> f a" "a \<le> b"
  2346   assumes *: "continuous_on {a .. b} f"
  2347   shows "\<exists>x. a \<le> x \<and> x \<le> b \<and> f x = y"
  2348 proof -
  2349   have "connected {a..b}"
  2350     unfolding connected_iff_interval by auto
  2351   from connected_continuous_image[OF * this, THEN connectedD_interval, of "f b" "f a" y] y
  2352   show ?thesis
  2353     by (auto simp add: atLeastAtMost_def atLeast_def atMost_def)
  2354 qed
  2355 
  2356 lemma IVT:
  2357   fixes f :: "'a :: linear_continuum_topology \<Rightarrow> 'b :: linorder_topology"
  2358   shows "f a \<le> y \<Longrightarrow> y \<le> f b \<Longrightarrow> a \<le> b \<Longrightarrow> (\<forall>x. a \<le> x \<and> x \<le> b \<longrightarrow> isCont f x) \<Longrightarrow> \<exists>x. a \<le> x \<and> x \<le> b \<and> f x = y"
  2359   by (rule IVT') (auto intro: continuous_at_imp_continuous_on)
  2360 
  2361 lemma IVT2:
  2362   fixes f :: "'a :: linear_continuum_topology \<Rightarrow> 'b :: linorder_topology"
  2363   shows "f b \<le> y \<Longrightarrow> y \<le> f a \<Longrightarrow> a \<le> b \<Longrightarrow> (\<forall>x. a \<le> x \<and> x \<le> b \<longrightarrow> isCont f x) \<Longrightarrow> \<exists>x. a \<le> x \<and> x \<le> b \<and> f x = y"
  2364   by (rule IVT2') (auto intro: continuous_at_imp_continuous_on)
  2365 
  2366 lemma continuous_inj_imp_mono:
  2367   fixes f :: "'a::linear_continuum_topology \<Rightarrow> 'b :: linorder_topology"
  2368   assumes x: "a < x" "x < b"
  2369   assumes cont: "continuous_on {a..b} f"
  2370   assumes inj: "inj_on f {a..b}"
  2371   shows "(f a < f x \<and> f x < f b) \<or> (f b < f x \<and> f x < f a)"
  2372 proof -
  2373   note I = inj_on_iff[OF inj]
  2374   { assume "f x < f a" "f x < f b"
  2375     then obtain s t where "x \<le> s" "s \<le> b" "a \<le> t" "t \<le> x" "f s = f t" "f x < f s"
  2376       using IVT'[of f x "min (f a) (f b)" b] IVT2'[of f x "min (f a) (f b)" a] x
  2377       by (auto simp: continuous_on_subset[OF cont] less_imp_le)
  2378     with x I have False by auto }
  2379   moreover
  2380   { assume "f a < f x" "f b < f x"
  2381     then obtain s t where "x \<le> s" "s \<le> b" "a \<le> t" "t \<le> x" "f s = f t" "f s < f x"
  2382       using IVT'[of f a "max (f a) (f b)" x] IVT2'[of f b "max (f a) (f b)" x] x
  2383       by (auto simp: continuous_on_subset[OF cont] less_imp_le)
  2384     with x I have False by auto }
  2385   ultimately show ?thesis
  2386     using I[of a x] I[of x b] x less_trans[OF x] by (auto simp add: le_less less_imp_neq neq_iff)
  2387 qed
  2388 
  2389 subsection {* Setup @{typ "'a filter"} for lifting and transfer *}
  2390 
  2391 context begin interpretation lifting_syntax .
  2392 
  2393 definition rel_filter :: "('a \<Rightarrow> 'b \<Rightarrow> bool) \<Rightarrow> 'a filter \<Rightarrow> 'b filter \<Rightarrow> bool"
  2394 where "rel_filter R F G = ((R ===> op =) ===> op =) (Rep_filter F) (Rep_filter G)"
  2395 
  2396 lemma rel_filter_eventually:
  2397   "rel_filter R F G \<longleftrightarrow> 
  2398   ((R ===> op =) ===> op =) (\<lambda>P. eventually P F) (\<lambda>P. eventually P G)"
  2399 by(simp add: rel_filter_def eventually_def)
  2400 
  2401 lemma filtermap_id [simp, id_simps]: "filtermap id = id"
  2402 by(simp add: fun_eq_iff id_def filtermap_ident)
  2403 
  2404 lemma filtermap_id' [simp]: "filtermap (\<lambda>x. x) = (\<lambda>F. F)"
  2405 using filtermap_id unfolding id_def .
  2406 
  2407 lemma Quotient_filter [quot_map]:
  2408   assumes Q: "Quotient R Abs Rep T"
  2409   shows "Quotient (rel_filter R) (filtermap Abs) (filtermap Rep) (rel_filter T)"
  2410 unfolding Quotient_alt_def
  2411 proof(intro conjI strip)
  2412   from Q have *: "\<And>x y. T x y \<Longrightarrow> Abs x = y"
  2413     unfolding Quotient_alt_def by blast
  2414 
  2415   fix F G
  2416   assume "rel_filter T F G"
  2417   thus "filtermap Abs F = G" unfolding filter_eq_iff
  2418     by(auto simp add: eventually_filtermap rel_filter_eventually * rel_funI del: iffI elim!: rel_funD)
  2419 next
  2420   from Q have *: "\<And>x. T (Rep x) x" unfolding Quotient_alt_def by blast
  2421 
  2422   fix F
  2423   show "rel_filter T (filtermap Rep F) F" 
  2424     by(auto elim: rel_funD intro: * intro!: ext arg_cong[where f="\<lambda>P. eventually P F"] rel_funI
  2425             del: iffI simp add: eventually_filtermap rel_filter_eventually)
  2426 qed(auto simp add: map_fun_def o_def eventually_filtermap filter_eq_iff fun_eq_iff rel_filter_eventually
  2427          fun_quotient[OF fun_quotient[OF Q identity_quotient] identity_quotient, unfolded Quotient_alt_def])
  2428 
  2429 lemma eventually_parametric [transfer_rule]:
  2430   "((A ===> op =) ===> rel_filter A ===> op =) eventually eventually"
  2431 by(simp add: rel_fun_def rel_filter_eventually)
  2432 
  2433 lemma rel_filter_eq [relator_eq]: "rel_filter op = = op ="
  2434 by(auto simp add: rel_filter_eventually rel_fun_eq fun_eq_iff filter_eq_iff)
  2435 
  2436 lemma rel_filter_mono [relator_mono]:
  2437   "A \<le> B \<Longrightarrow> rel_filter A \<le> rel_filter B"
  2438 unfolding rel_filter_eventually[abs_def]
  2439 by(rule le_funI)+(intro fun_mono fun_mono[THEN le_funD, THEN le_funD] order.refl)
  2440 
  2441 lemma rel_filter_conversep [simp]: "rel_filter A\<inverse>\<inverse> = (rel_filter A)\<inverse>\<inverse>"
  2442 by(auto simp add: rel_filter_eventually fun_eq_iff rel_fun_def)
  2443 
  2444 lemma is_filter_parametric_aux:
  2445   assumes "is_filter F"
  2446   assumes [transfer_rule]: "bi_total A" "bi_unique A"
  2447   and [transfer_rule]: "((A ===> op =) ===> op =) F G"
  2448   shows "is_filter G"
  2449 proof -
  2450   interpret is_filter F by fact
  2451   show ?thesis
  2452   proof
  2453     have "F (\<lambda>_. True) = G (\<lambda>x. True)" by transfer_prover
  2454     thus "G (\<lambda>x. True)" by(simp add: True)
  2455   next
  2456     fix P' Q'
  2457     assume "G P'" "G Q'"
  2458     moreover
  2459     from bi_total_fun[OF `bi_unique A` bi_total_eq, unfolded bi_total_def]
  2460     obtain P Q where [transfer_rule]: "(A ===> op =) P P'" "(A ===> op =) Q Q'" by blast
  2461     have "F P = G P'" "F Q = G Q'" by transfer_prover+
  2462     ultimately have "F (\<lambda>x. P x \<and> Q x)" by(simp add: conj)
  2463     moreover have "F (\<lambda>x. P x \<and> Q x) = G (\<lambda>x. P' x \<and> Q' x)" by transfer_prover
  2464     ultimately show "G (\<lambda>x. P' x \<and> Q' x)" by simp
  2465   next
  2466     fix P' Q'
  2467     assume "\<forall>x. P' x \<longrightarrow> Q' x" "G P'"
  2468     moreover
  2469     from bi_total_fun[OF `bi_unique A` bi_total_eq, unfolded bi_total_def]
  2470     obtain P Q where [transfer_rule]: "(A ===> op =) P P'" "(A ===> op =) Q Q'" by blast
  2471     have "F P = G P'" by transfer_prover
  2472     moreover have "(\<forall>x. P x \<longrightarrow> Q x) \<longleftrightarrow> (\<forall>x. P' x \<longrightarrow> Q' x)" by transfer_prover
  2473     ultimately have "F Q" by(simp add: mono)
  2474     moreover have "F Q = G Q'" by transfer_prover
  2475     ultimately show "G Q'" by simp
  2476   qed
  2477 qed
  2478 
  2479 lemma is_filter_parametric [transfer_rule]:
  2480   "\<lbrakk> bi_total A; bi_unique A \<rbrakk>
  2481   \<Longrightarrow> (((A ===> op =) ===> op =) ===> op =) is_filter is_filter"
  2482 apply(rule rel_funI)
  2483 apply(rule iffI)
  2484  apply(erule (3) is_filter_parametric_aux)
  2485 apply(erule is_filter_parametric_aux[where A="conversep A"])
  2486 apply(auto simp add: rel_fun_def)
  2487 done
  2488 
  2489 lemma left_total_rel_filter [transfer_rule]:
  2490   assumes [transfer_rule]: "bi_total A" "bi_unique A"
  2491   shows "left_total (rel_filter A)"
  2492 proof(rule left_totalI)
  2493   fix F :: "'a filter"
  2494   from bi_total_fun[OF bi_unique_fun[OF `bi_total A` bi_unique_eq] bi_total_eq]
  2495   obtain G where [transfer_rule]: "((A ===> op =) ===> op =) (\<lambda>P. eventually P F) G" 
  2496     unfolding  bi_total_def by blast
  2497   moreover have "is_filter (\<lambda>P. eventually P F) \<longleftrightarrow> is_filter G" by transfer_prover
  2498   hence "is_filter G" by(simp add: eventually_def is_filter_Rep_filter)
  2499   ultimately have "rel_filter A F (Abs_filter G)"
  2500     by(simp add: rel_filter_eventually eventually_Abs_filter)
  2501   thus "\<exists>G. rel_filter A F G" ..
  2502 qed
  2503 
  2504 lemma right_total_rel_filter [transfer_rule]:
  2505   "\<lbrakk> bi_total A; bi_unique A \<rbrakk> \<Longrightarrow> right_total (rel_filter A)"
  2506 using left_total_rel_filter[of "A\<inverse>\<inverse>"] by simp
  2507 
  2508 lemma bi_total_rel_filter [transfer_rule]:
  2509   assumes "bi_total A" "bi_unique A"
  2510   shows "bi_total (rel_filter A)"
  2511 unfolding bi_total_alt_def using assms
  2512 by(simp add: left_total_rel_filter right_total_rel_filter)
  2513 
  2514 lemma left_unique_rel_filter [transfer_rule]:
  2515   assumes "left_unique A"
  2516   shows "left_unique (rel_filter A)"
  2517 proof(rule left_uniqueI)
  2518   fix F F' G
  2519   assume [transfer_rule]: "rel_filter A F G" "rel_filter A F' G"
  2520   show "F = F'"
  2521     unfolding filter_eq_iff
  2522   proof
  2523     fix P :: "'a \<Rightarrow> bool"
  2524     obtain P' where [transfer_rule]: "(A ===> op =) P P'"
  2525       using left_total_fun[OF assms left_total_eq] unfolding left_total_def by blast
  2526     have "eventually P F = eventually P' G" 
  2527       and "eventually P F' = eventually P' G" by transfer_prover+
  2528     thus "eventually P F = eventually P F'" by simp
  2529   qed
  2530 qed
  2531 
  2532 lemma right_unique_rel_filter [transfer_rule]:
  2533   "right_unique A \<Longrightarrow> right_unique (rel_filter A)"
  2534 using left_unique_rel_filter[of "A\<inverse>\<inverse>"] by simp
  2535 
  2536 lemma bi_unique_rel_filter [transfer_rule]:
  2537   "bi_unique A \<Longrightarrow> bi_unique (rel_filter A)"
  2538 by(simp add: bi_unique_alt_def left_unique_rel_filter right_unique_rel_filter)
  2539 
  2540 lemma top_filter_parametric [transfer_rule]:
  2541   "bi_total A \<Longrightarrow> (rel_filter A) top top"
  2542 by(simp add: rel_filter_eventually All_transfer)
  2543 
  2544 lemma bot_filter_parametric [transfer_rule]: "(rel_filter A) bot bot"
  2545 by(simp add: rel_filter_eventually rel_fun_def)
  2546 
  2547 lemma sup_filter_parametric [transfer_rule]:
  2548   "(rel_filter A ===> rel_filter A ===> rel_filter A) sup sup"
  2549 by(fastforce simp add: rel_filter_eventually[abs_def] eventually_sup dest: rel_funD)
  2550 
  2551 lemma Sup_filter_parametric [transfer_rule]:
  2552   "(rel_set (rel_filter A) ===> rel_filter A) Sup Sup"
  2553 proof(rule rel_funI)
  2554   fix S T
  2555   assume [transfer_rule]: "rel_set (rel_filter A) S T"
  2556   show "rel_filter A (Sup S) (Sup T)"
  2557     by(simp add: rel_filter_eventually eventually_Sup) transfer_prover
  2558 qed
  2559 
  2560 lemma principal_parametric [transfer_rule]:
  2561   "(rel_set A ===> rel_filter A) principal principal"
  2562 proof(rule rel_funI)
  2563   fix S S'
  2564   assume [transfer_rule]: "rel_set A S S'"
  2565   show "rel_filter A (principal S) (principal S')"
  2566     by(simp add: rel_filter_eventually eventually_principal) transfer_prover
  2567 qed
  2568 
  2569 context
  2570   fixes A :: "'a \<Rightarrow> 'b \<Rightarrow> bool"
  2571   assumes [transfer_rule]: "bi_unique A" 
  2572 begin
  2573 
  2574 lemma le_filter_parametric [transfer_rule]:
  2575   "(rel_filter A ===> rel_filter A ===> op =) op \<le> op \<le>"
  2576 unfolding le_filter_def[abs_def] by transfer_prover
  2577 
  2578 lemma less_filter_parametric [transfer_rule]:
  2579   "(rel_filter A ===> rel_filter A ===> op =) op < op <"
  2580 unfolding less_filter_def[abs_def] by transfer_prover
  2581 
  2582 context
  2583   assumes [transfer_rule]: "bi_total A"
  2584 begin
  2585 
  2586 lemma Inf_filter_parametric [transfer_rule]:
  2587   "(rel_set (rel_filter A) ===> rel_filter A) Inf Inf"
  2588 unfolding Inf_filter_def[abs_def] by transfer_prover
  2589 
  2590 lemma inf_filter_parametric [transfer_rule]:
  2591   "(rel_filter A ===> rel_filter A ===> rel_filter A) inf inf"
  2592 proof(intro rel_funI)+
  2593   fix F F' G G'
  2594   assume [transfer_rule]: "rel_filter A F F'" "rel_filter A G G'"
  2595   have "rel_filter A (Inf {F, G}) (Inf {F', G'})" by transfer_prover
  2596   thus "rel_filter A (inf F G) (inf F' G')" by simp
  2597 qed
  2598 
  2599 end
  2600 
  2601 end
  2602 
  2603 end
  2604 
  2605 end