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