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