src/HOL/Topological_Spaces.thy
author wenzelm
Mon, 25 Apr 2016 16:09:26 +0200
changeset 63040 eb4ddd18d635
parent 63007 aa894a49f77d
child 63092 a949b2a5f51d
permissions -rw-r--r--
eliminated old 'def'; tuned comments;
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
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
     6
section \<open>Topological Spaces\<close>
51471
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
57953
69728243a614 updated to named_theorems;
wenzelm
parents: 57448
diff changeset
    12
named_theorems continuous_intros "structural introduction rules for continuity"
69728243a614 updated to named_theorems;
wenzelm
parents: 57448
diff changeset
    13
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
    14
subsection \<open>Topological space\<close>
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
    15
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
    16
class "open" =
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
    17
  fixes "open" :: "'a set \<Rightarrow> bool"
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
    18
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
    19
class topological_space = "open" +
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
    20
  assumes open_UNIV [simp, intro]: "open UNIV"
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
    21
  assumes open_Int [intro]: "open S \<Longrightarrow> open T \<Longrightarrow> open (S \<inter> T)"
60585
48fdff264eb2 tuned whitespace;
wenzelm
parents: 60182
diff changeset
    22
  assumes open_Union [intro]: "\<forall>S\<in>K. open S \<Longrightarrow> open (\<Union>K)"
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
    23
begin
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
    24
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
    25
definition
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
    26
  closed :: "'a set \<Rightarrow> bool" where
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
    27
  "closed S \<longleftrightarrow> open (- S)"
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
    28
56371
fb9ae0727548 extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents: 56329
diff changeset
    29
lemma open_empty [continuous_intros, intro, simp]: "open {}"
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
    30
  using open_Union [of "{}"] by simp
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
    31
56371
fb9ae0727548 extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents: 56329
diff changeset
    32
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
    33
  using open_Union [of "{S, T}"] by simp
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
    34
56371
fb9ae0727548 extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents: 56329
diff changeset
    35
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
    36
  using open_Union [of "B ` A"] by simp
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
    37
56371
fb9ae0727548 extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents: 56329
diff changeset
    38
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
    39
  by (induct set: finite) auto
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
    40
56371
fb9ae0727548 extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents: 56329
diff changeset
    41
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
    42
  using open_Inter [of "B ` A"] by simp
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
    43
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
    44
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
    45
  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
    46
  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
    47
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
    48
  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
    49
  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
    50
  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
    51
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
    52
56371
fb9ae0727548 extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents: 56329
diff changeset
    53
lemma closed_empty [continuous_intros, intro, simp]:  "closed {}"
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
    54
  unfolding closed_def by simp
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
    55
56371
fb9ae0727548 extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents: 56329
diff changeset
    56
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
    57
  unfolding closed_def by auto
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
    58
56371
fb9ae0727548 extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents: 56329
diff changeset
    59
lemma closed_UNIV [continuous_intros, intro, simp]: "closed UNIV"
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
    60
  unfolding closed_def by simp
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
    61
56371
fb9ae0727548 extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents: 56329
diff changeset
    62
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
    63
  unfolding closed_def by auto
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
    64
56371
fb9ae0727548 extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents: 56329
diff changeset
    65
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
    66
  unfolding closed_def by auto
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
    67
60585
48fdff264eb2 tuned whitespace;
wenzelm
parents: 60182
diff changeset
    68
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
    69
  unfolding closed_def uminus_Inf by auto
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
    70
56371
fb9ae0727548 extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents: 56329
diff changeset
    71
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
    72
  by (induct set: finite) auto
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
    73
56371
fb9ae0727548 extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents: 56329
diff changeset
    74
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
    75
  using closed_Union [of "B ` A"] by simp
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
    76
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
    77
lemma open_closed: "open S \<longleftrightarrow> closed (- S)"
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
    78
  unfolding closed_def by simp
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
    79
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
    80
lemma closed_open: "closed S \<longleftrightarrow> open (- S)"
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
    81
  unfolding closed_def by simp
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
    82
56371
fb9ae0727548 extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents: 56329
diff changeset
    83
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
    84
  unfolding closed_open Diff_eq by (rule open_Int)
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
    85
56371
fb9ae0727548 extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents: 56329
diff changeset
    86
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
    87
  unfolding open_closed Diff_eq by (rule closed_Int)
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
    88
56371
fb9ae0727548 extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents: 56329
diff changeset
    89
lemma open_Compl [continuous_intros, intro]: "closed S \<Longrightarrow> open (- S)"
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
    90
  unfolding closed_open .
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
    91
56371
fb9ae0727548 extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents: 56329
diff changeset
    92
lemma closed_Compl [continuous_intros, intro]: "open S \<Longrightarrow> closed (- S)"
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
    93
  unfolding open_closed .
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
    94
57447
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
    95
lemma open_Collect_neg: "closed {x. P x} \<Longrightarrow> open {x. \<not> P x}"
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
    96
  unfolding Collect_neg_eq by (rule open_Compl)
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
    97
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
    98
lemma open_Collect_conj: assumes "open {x. P x}" "open {x. Q x}" shows "open {x. P x \<and> Q x}"
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
    99
  using open_Int[OF assms] by (simp add: Int_def)
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
   100
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
   101
lemma open_Collect_disj: assumes "open {x. P x}" "open {x. Q x}" shows "open {x. P x \<or> Q x}"
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
   102
  using open_Un[OF assms] by (simp add: Un_def)
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
   103
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
   104
lemma open_Collect_ex: "(\<And>i. open {x. P i x}) \<Longrightarrow> open {x. \<exists>i. P i x}"
62102
877463945ce9 fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents: 62101
diff changeset
   105
  using open_UN[of UNIV "\<lambda>i. {x. P i x}"] unfolding Collect_ex_eq by simp
57447
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
   106
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
   107
lemma open_Collect_imp: "closed {x. P x} \<Longrightarrow> open {x. Q x} \<Longrightarrow> open {x. P x \<longrightarrow> Q x}"
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
   108
  unfolding imp_conv_disj by (intro open_Collect_disj open_Collect_neg)
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
   109
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
   110
lemma open_Collect_const: "open {x. P}"
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
   111
  by (cases P) auto
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
   112
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
   113
lemma closed_Collect_neg: "open {x. P x} \<Longrightarrow> closed {x. \<not> P x}"
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
   114
  unfolding Collect_neg_eq by (rule closed_Compl)
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
   115
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
   116
lemma closed_Collect_conj: assumes "closed {x. P x}" "closed {x. Q x}" shows "closed {x. P x \<and> Q x}"
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
   117
  using closed_Int[OF assms] by (simp add: Int_def)
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
   118
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
   119
lemma closed_Collect_disj: assumes "closed {x. P x}" "closed {x. Q x}" shows "closed {x. P x \<or> Q x}"
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
   120
  using closed_Un[OF assms] by (simp add: Un_def)
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
   121
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
   122
lemma closed_Collect_all: "(\<And>i. closed {x. P i x}) \<Longrightarrow> closed {x. \<forall>i. P i x}"
62102
877463945ce9 fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents: 62101
diff changeset
   123
  using closed_INT[of UNIV "\<lambda>i. {x. P i x}"] unfolding Collect_all_eq by simp
57447
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
   124
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
   125
lemma closed_Collect_imp: "open {x. P x} \<Longrightarrow> closed {x. Q x} \<Longrightarrow> closed {x. P x \<longrightarrow> Q x}"
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
   126
  unfolding imp_conv_disj by (intro closed_Collect_disj closed_Collect_neg)
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
   127
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
   128
lemma closed_Collect_const: "closed {x. P}"
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
   129
  by (cases P) auto
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
   130
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   131
end
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   132
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
   133
subsection\<open>Hausdorff and other separation properties\<close>
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   134
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   135
class t0_space = topological_space +
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   136
  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
   137
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   138
class t1_space = topological_space +
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   139
  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
   140
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   141
instance t1_space \<subseteq> t0_space
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   142
proof qed (fast dest: t1_space)
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   143
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   144
lemma separation_t1:
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   145
  fixes x y :: "'a::t1_space"
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   146
  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
   147
  using t1_space[of x y] by blast
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   148
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   149
lemma closed_singleton:
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   150
  fixes a :: "'a::t1_space"
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   151
  shows "closed {a}"
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   152
proof -
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   153
  let ?T = "\<Union>{S. open S \<and> a \<notin> S}"
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   154
  have "open ?T" by (simp add: open_Union)
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   155
  also have "?T = - {a}"
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   156
    by (simp add: set_eq_iff separation_t1, auto)
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   157
  finally show "closed {a}" unfolding closed_def .
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   158
qed
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   159
56371
fb9ae0727548 extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents: 56329
diff changeset
   160
lemma closed_insert [continuous_intros, simp]:
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   161
  fixes a :: "'a::t1_space"
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   162
  assumes "closed S" shows "closed (insert a S)"
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   163
proof -
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   164
  from closed_singleton assms
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   165
  have "closed ({a} \<union> S)" by (rule closed_Un)
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   166
  thus "closed (insert a S)" by simp
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   167
qed
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   168
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   169
lemma finite_imp_closed:
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   170
  fixes S :: "'a::t1_space set"
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   171
  shows "finite S \<Longrightarrow> closed S"
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   172
by (induct set: finite, simp_all)
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   173
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
   174
text \<open>T2 spaces are also known as Hausdorff spaces.\<close>
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   175
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   176
class t2_space = topological_space +
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   177
  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
   178
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   179
instance t2_space \<subseteq> t1_space
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   180
proof qed (fast dest: hausdorff)
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 separation_t2:
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   183
  fixes x y :: "'a::t2_space"
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   184
  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
   185
  using hausdorff[of x y] by blast
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   186
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   187
lemma separation_t0:
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   188
  fixes x y :: "'a::t0_space"
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   189
  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
   190
  using t0_space[of x y] by blast
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   191
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
   192
text \<open>A perfect space is a topological space with no isolated points.\<close>
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   193
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   194
class perfect_space = topological_space +
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   195
  assumes not_open_singleton: "\<not> open {x}"
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   196
62381
a6479cb85944 New and revised material for (multivariate) analysis
paulson <lp15@cam.ac.uk>
parents: 62369
diff changeset
   197
lemma UNIV_not_singleton: "UNIV \<noteq> {x::'a::perfect_space}"
a6479cb85944 New and revised material for (multivariate) analysis
paulson <lp15@cam.ac.uk>
parents: 62369
diff changeset
   198
  by (metis open_UNIV not_open_singleton)
a6479cb85944 New and revised material for (multivariate) analysis
paulson <lp15@cam.ac.uk>
parents: 62369
diff changeset
   199
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   200
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
   201
subsection \<open>Generators for toplogies\<close>
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   202
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   203
inductive generate_topology for S where
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   204
  UNIV: "generate_topology S UNIV"
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   205
| 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
   206
| 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
   207
| Basis: "s \<in> S \<Longrightarrow> generate_topology S s"
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   208
62102
877463945ce9 fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents: 62101
diff changeset
   209
hide_fact (open) UNIV Int UN Basis
877463945ce9 fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents: 62101
diff changeset
   210
877463945ce9 fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents: 62101
diff changeset
   211
lemma generate_topology_Union:
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   212
  "(\<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
   213
  using generate_topology.UN [of "K ` I"] by auto
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   214
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   215
lemma topological_space_generate_topology:
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   216
  "class.topological_space (generate_topology S)"
61169
4de9ff3ea29a tuned proofs -- less legacy;
wenzelm
parents: 60762
diff changeset
   217
  by standard (auto intro: generate_topology.intros)
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   218
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
   219
subsection \<open>Order topologies\<close>
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   220
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   221
class order_topology = order + "open" +
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   222
  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
   223
begin
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   224
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   225
subclass topological_space
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   226
  unfolding open_generated_order
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   227
  by (rule topological_space_generate_topology)
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   228
56371
fb9ae0727548 extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents: 56329
diff changeset
   229
lemma open_greaterThan [continuous_intros, simp]: "open {a <..}"
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   230
  unfolding open_generated_order by (auto intro: generate_topology.Basis)
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   231
56371
fb9ae0727548 extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents: 56329
diff changeset
   232
lemma open_lessThan [continuous_intros, simp]: "open {..< a}"
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   233
  unfolding open_generated_order by (auto intro: generate_topology.Basis)
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   234
56371
fb9ae0727548 extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents: 56329
diff changeset
   235
lemma open_greaterThanLessThan [continuous_intros, simp]: "open {a <..< b}"
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   236
   unfolding greaterThanLessThan_eq by (simp add: open_Int)
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   237
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   238
end
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   239
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   240
class linorder_topology = linorder + order_topology
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   241
56371
fb9ae0727548 extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents: 56329
diff changeset
   242
lemma closed_atMost [continuous_intros, simp]: "closed {.. a::'a::linorder_topology}"
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   243
  by (simp add: closed_open)
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   244
56371
fb9ae0727548 extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents: 56329
diff changeset
   245
lemma closed_atLeast [continuous_intros, simp]: "closed {a::'a::linorder_topology ..}"
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   246
  by (simp add: closed_open)
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   247
56371
fb9ae0727548 extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents: 56329
diff changeset
   248
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
   249
proof -
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   250
  have "{a .. b} = {a ..} \<inter> {.. b}"
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   251
    by auto
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   252
  then show ?thesis
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   253
    by (simp add: closed_Int)
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   254
qed
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   255
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   256
lemma (in linorder) less_separate:
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   257
  assumes "x < y"
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   258
  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
   259
proof (cases "\<exists>z. x < z \<and> z < y")
355a4cac5440 tuned proofs -- less guessing;
wenzelm
parents: 53374
diff changeset
   260
  case True
355a4cac5440 tuned proofs -- less guessing;
wenzelm
parents: 53374
diff changeset
   261
  then obtain z where "x < z \<and> z < y" ..
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   262
  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
   263
    by auto
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   264
  then show ?thesis by blast
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   265
next
53381
355a4cac5440 tuned proofs -- less guessing;
wenzelm
parents: 53374
diff changeset
   266
  case False
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
   267
  with \<open>x < y\<close> have "x \<in> {..< y} \<and> y \<in> {x <..} \<and> {x <..} \<inter> {..< y} = {}"
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   268
    by auto
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   269
  then show ?thesis by blast
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   270
qed
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   271
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   272
instance linorder_topology \<subseteq> t2_space
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   273
proof
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   274
  fix x y :: 'a
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   275
  from less_separate[of x y] less_separate[of y x]
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   276
  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
   277
    by (elim neqE) (metis open_lessThan open_greaterThan Int_commute)+
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   278
qed
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   279
51480
3793c3a11378 move connected to HOL image; used to show intermediate value theorem
hoelzl
parents: 51479
diff changeset
   280
lemma (in linorder_topology) open_right:
3793c3a11378 move connected to HOL image; used to show intermediate value theorem
hoelzl
parents: 51479
diff changeset
   281
  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
   282
  using assms unfolding open_generated_order
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   283
proof induction
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   284
  case (Int A B)
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   285
  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
   286
  then show ?case by (auto intro!: exI[of _ "min a b"])
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   287
next
51480
3793c3a11378 move connected to HOL image; used to show intermediate value theorem
hoelzl
parents: 51479
diff changeset
   288
  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
   289
qed blast+
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   290
51480
3793c3a11378 move connected to HOL image; used to show intermediate value theorem
hoelzl
parents: 51479
diff changeset
   291
lemma (in linorder_topology) open_left:
3793c3a11378 move connected to HOL image; used to show intermediate value theorem
hoelzl
parents: 51479
diff changeset
   292
  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
   293
  using assms unfolding open_generated_order
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   294
proof induction
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   295
  case (Int A B)
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   296
  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
   297
  then show ?case by (auto intro!: exI[of _ "max a b"])
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   298
next
51480
3793c3a11378 move connected to HOL image; used to show intermediate value theorem
hoelzl
parents: 51479
diff changeset
   299
  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
   300
qed blast+
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   301
62369
acfc4ad7b76a instantiate topologies for nat, int and enat
hoelzl
parents: 62367
diff changeset
   302
subsection \<open>Setup some topologies\<close>
acfc4ad7b76a instantiate topologies for nat, int and enat
hoelzl
parents: 62367
diff changeset
   303
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
   304
subsubsection \<open>Boolean is an order topology\<close>
59106
af691e67f71f instance bool and enat as topologies
hoelzl
parents: 58889
diff changeset
   305
62369
acfc4ad7b76a instantiate topologies for nat, int and enat
hoelzl
parents: 62367
diff changeset
   306
text \<open>It is a discrete topology, but don't have a type class for it (yet).\<close>
acfc4ad7b76a instantiate topologies for nat, int and enat
hoelzl
parents: 62367
diff changeset
   307
acfc4ad7b76a instantiate topologies for nat, int and enat
hoelzl
parents: 62367
diff changeset
   308
class discrete_topology = topological_space +
acfc4ad7b76a instantiate topologies for nat, int and enat
hoelzl
parents: 62367
diff changeset
   309
  assumes open_discrete: "\<And>A. open A"
acfc4ad7b76a instantiate topologies for nat, int and enat
hoelzl
parents: 62367
diff changeset
   310
acfc4ad7b76a instantiate topologies for nat, int and enat
hoelzl
parents: 62367
diff changeset
   311
instance discrete_topology < t2_space
acfc4ad7b76a instantiate topologies for nat, int and enat
hoelzl
parents: 62367
diff changeset
   312
proof
acfc4ad7b76a instantiate topologies for nat, int and enat
hoelzl
parents: 62367
diff changeset
   313
  fix x y :: 'a assume "x \<noteq> y" then show "\<exists>U V. open U \<and> open V \<and> x \<in> U \<and> y \<in> V \<and> U \<inter> V = {}"
acfc4ad7b76a instantiate topologies for nat, int and enat
hoelzl
parents: 62367
diff changeset
   314
    by (intro exI[of _ "{_}"]) (auto intro!: open_discrete)
acfc4ad7b76a instantiate topologies for nat, int and enat
hoelzl
parents: 62367
diff changeset
   315
qed
acfc4ad7b76a instantiate topologies for nat, int and enat
hoelzl
parents: 62367
diff changeset
   316
acfc4ad7b76a instantiate topologies for nat, int and enat
hoelzl
parents: 62367
diff changeset
   317
instantiation bool :: linorder_topology
59106
af691e67f71f instance bool and enat as topologies
hoelzl
parents: 58889
diff changeset
   318
begin
af691e67f71f instance bool and enat as topologies
hoelzl
parents: 58889
diff changeset
   319
af691e67f71f instance bool and enat as topologies
hoelzl
parents: 58889
diff changeset
   320
definition open_bool :: "bool set \<Rightarrow> bool" where
af691e67f71f instance bool and enat as topologies
hoelzl
parents: 58889
diff changeset
   321
  "open_bool = generate_topology (range (\<lambda>a. {..< a}) \<union> range (\<lambda>a. {a <..}))"
af691e67f71f instance bool and enat as topologies
hoelzl
parents: 58889
diff changeset
   322
af691e67f71f instance bool and enat as topologies
hoelzl
parents: 58889
diff changeset
   323
instance
af691e67f71f instance bool and enat as topologies
hoelzl
parents: 58889
diff changeset
   324
  proof qed (rule open_bool_def)
af691e67f71f instance bool and enat as topologies
hoelzl
parents: 58889
diff changeset
   325
af691e67f71f instance bool and enat as topologies
hoelzl
parents: 58889
diff changeset
   326
end
af691e67f71f instance bool and enat as topologies
hoelzl
parents: 58889
diff changeset
   327
62369
acfc4ad7b76a instantiate topologies for nat, int and enat
hoelzl
parents: 62367
diff changeset
   328
instance bool :: discrete_topology
acfc4ad7b76a instantiate topologies for nat, int and enat
hoelzl
parents: 62367
diff changeset
   329
proof
acfc4ad7b76a instantiate topologies for nat, int and enat
hoelzl
parents: 62367
diff changeset
   330
  fix A :: "bool set"
59106
af691e67f71f instance bool and enat as topologies
hoelzl
parents: 58889
diff changeset
   331
  have *: "{False <..} = {True}" "{..< True} = {False}"
af691e67f71f instance bool and enat as topologies
hoelzl
parents: 58889
diff changeset
   332
    by auto
af691e67f71f instance bool and enat as topologies
hoelzl
parents: 58889
diff changeset
   333
  have "A = UNIV \<or> A = {} \<or> A = {False <..} \<or> A = {..< True}"
af691e67f71f instance bool and enat as topologies
hoelzl
parents: 58889
diff changeset
   334
    using subset_UNIV[of A] unfolding UNIV_bool * by auto
af691e67f71f instance bool and enat as topologies
hoelzl
parents: 58889
diff changeset
   335
  then show "open A"
af691e67f71f instance bool and enat as topologies
hoelzl
parents: 58889
diff changeset
   336
    by auto
af691e67f71f instance bool and enat as topologies
hoelzl
parents: 58889
diff changeset
   337
qed
af691e67f71f instance bool and enat as topologies
hoelzl
parents: 58889
diff changeset
   338
62369
acfc4ad7b76a instantiate topologies for nat, int and enat
hoelzl
parents: 62367
diff changeset
   339
instantiation nat :: linorder_topology
acfc4ad7b76a instantiate topologies for nat, int and enat
hoelzl
parents: 62367
diff changeset
   340
begin
acfc4ad7b76a instantiate topologies for nat, int and enat
hoelzl
parents: 62367
diff changeset
   341
acfc4ad7b76a instantiate topologies for nat, int and enat
hoelzl
parents: 62367
diff changeset
   342
definition open_nat :: "nat set \<Rightarrow> bool" where
acfc4ad7b76a instantiate topologies for nat, int and enat
hoelzl
parents: 62367
diff changeset
   343
  "open_nat = generate_topology (range (\<lambda>a. {..< a}) \<union> range (\<lambda>a. {a <..}))"
acfc4ad7b76a instantiate topologies for nat, int and enat
hoelzl
parents: 62367
diff changeset
   344
acfc4ad7b76a instantiate topologies for nat, int and enat
hoelzl
parents: 62367
diff changeset
   345
instance
acfc4ad7b76a instantiate topologies for nat, int and enat
hoelzl
parents: 62367
diff changeset
   346
  proof qed (rule open_nat_def)
acfc4ad7b76a instantiate topologies for nat, int and enat
hoelzl
parents: 62367
diff changeset
   347
acfc4ad7b76a instantiate topologies for nat, int and enat
hoelzl
parents: 62367
diff changeset
   348
end
acfc4ad7b76a instantiate topologies for nat, int and enat
hoelzl
parents: 62367
diff changeset
   349
acfc4ad7b76a instantiate topologies for nat, int and enat
hoelzl
parents: 62367
diff changeset
   350
instance nat :: discrete_topology
acfc4ad7b76a instantiate topologies for nat, int and enat
hoelzl
parents: 62367
diff changeset
   351
proof
acfc4ad7b76a instantiate topologies for nat, int and enat
hoelzl
parents: 62367
diff changeset
   352
  fix A :: "nat set"
acfc4ad7b76a instantiate topologies for nat, int and enat
hoelzl
parents: 62367
diff changeset
   353
  have "open {n}" for n :: nat
acfc4ad7b76a instantiate topologies for nat, int and enat
hoelzl
parents: 62367
diff changeset
   354
  proof (cases n)
acfc4ad7b76a instantiate topologies for nat, int and enat
hoelzl
parents: 62367
diff changeset
   355
    case 0
acfc4ad7b76a instantiate topologies for nat, int and enat
hoelzl
parents: 62367
diff changeset
   356
    moreover have "{0} = {..<1::nat}"
acfc4ad7b76a instantiate topologies for nat, int and enat
hoelzl
parents: 62367
diff changeset
   357
      by auto
acfc4ad7b76a instantiate topologies for nat, int and enat
hoelzl
parents: 62367
diff changeset
   358
    ultimately show ?thesis
acfc4ad7b76a instantiate topologies for nat, int and enat
hoelzl
parents: 62367
diff changeset
   359
       by auto
acfc4ad7b76a instantiate topologies for nat, int and enat
hoelzl
parents: 62367
diff changeset
   360
  next
acfc4ad7b76a instantiate topologies for nat, int and enat
hoelzl
parents: 62367
diff changeset
   361
    case (Suc n')
acfc4ad7b76a instantiate topologies for nat, int and enat
hoelzl
parents: 62367
diff changeset
   362
    moreover then have "{n} = {..<Suc n} \<inter> {n' <..}"
acfc4ad7b76a instantiate topologies for nat, int and enat
hoelzl
parents: 62367
diff changeset
   363
      by auto
acfc4ad7b76a instantiate topologies for nat, int and enat
hoelzl
parents: 62367
diff changeset
   364
    ultimately show ?thesis
acfc4ad7b76a instantiate topologies for nat, int and enat
hoelzl
parents: 62367
diff changeset
   365
      by (auto intro: open_lessThan open_greaterThan)
acfc4ad7b76a instantiate topologies for nat, int and enat
hoelzl
parents: 62367
diff changeset
   366
  qed
acfc4ad7b76a instantiate topologies for nat, int and enat
hoelzl
parents: 62367
diff changeset
   367
  then have "open (\<Union>a\<in>A. {a})"
acfc4ad7b76a instantiate topologies for nat, int and enat
hoelzl
parents: 62367
diff changeset
   368
    by (intro open_UN) auto
acfc4ad7b76a instantiate topologies for nat, int and enat
hoelzl
parents: 62367
diff changeset
   369
  then show "open A"
acfc4ad7b76a instantiate topologies for nat, int and enat
hoelzl
parents: 62367
diff changeset
   370
    by simp
acfc4ad7b76a instantiate topologies for nat, int and enat
hoelzl
parents: 62367
diff changeset
   371
qed
acfc4ad7b76a instantiate topologies for nat, int and enat
hoelzl
parents: 62367
diff changeset
   372
acfc4ad7b76a instantiate topologies for nat, int and enat
hoelzl
parents: 62367
diff changeset
   373
instantiation int :: linorder_topology
acfc4ad7b76a instantiate topologies for nat, int and enat
hoelzl
parents: 62367
diff changeset
   374
begin
acfc4ad7b76a instantiate topologies for nat, int and enat
hoelzl
parents: 62367
diff changeset
   375
acfc4ad7b76a instantiate topologies for nat, int and enat
hoelzl
parents: 62367
diff changeset
   376
definition open_int :: "int set \<Rightarrow> bool" where
acfc4ad7b76a instantiate topologies for nat, int and enat
hoelzl
parents: 62367
diff changeset
   377
  "open_int = generate_topology (range (\<lambda>a. {..< a}) \<union> range (\<lambda>a. {a <..}))"
acfc4ad7b76a instantiate topologies for nat, int and enat
hoelzl
parents: 62367
diff changeset
   378
acfc4ad7b76a instantiate topologies for nat, int and enat
hoelzl
parents: 62367
diff changeset
   379
instance
acfc4ad7b76a instantiate topologies for nat, int and enat
hoelzl
parents: 62367
diff changeset
   380
  proof qed (rule open_int_def)
acfc4ad7b76a instantiate topologies for nat, int and enat
hoelzl
parents: 62367
diff changeset
   381
acfc4ad7b76a instantiate topologies for nat, int and enat
hoelzl
parents: 62367
diff changeset
   382
end
acfc4ad7b76a instantiate topologies for nat, int and enat
hoelzl
parents: 62367
diff changeset
   383
acfc4ad7b76a instantiate topologies for nat, int and enat
hoelzl
parents: 62367
diff changeset
   384
instance int :: discrete_topology
acfc4ad7b76a instantiate topologies for nat, int and enat
hoelzl
parents: 62367
diff changeset
   385
proof
acfc4ad7b76a instantiate topologies for nat, int and enat
hoelzl
parents: 62367
diff changeset
   386
  fix A :: "int set"
acfc4ad7b76a instantiate topologies for nat, int and enat
hoelzl
parents: 62367
diff changeset
   387
  have "{..<i + 1} \<inter> {i-1 <..} = {i}" for i :: int
acfc4ad7b76a instantiate topologies for nat, int and enat
hoelzl
parents: 62367
diff changeset
   388
    by auto
acfc4ad7b76a instantiate topologies for nat, int and enat
hoelzl
parents: 62367
diff changeset
   389
  then have "open {i}" for i :: int
acfc4ad7b76a instantiate topologies for nat, int and enat
hoelzl
parents: 62367
diff changeset
   390
    using open_Int[OF open_lessThan[of "i + 1"] open_greaterThan[of "i - 1"]] by auto
acfc4ad7b76a instantiate topologies for nat, int and enat
hoelzl
parents: 62367
diff changeset
   391
  then have "open (\<Union>a\<in>A. {a})"
acfc4ad7b76a instantiate topologies for nat, int and enat
hoelzl
parents: 62367
diff changeset
   392
    by (intro open_UN) auto
acfc4ad7b76a instantiate topologies for nat, int and enat
hoelzl
parents: 62367
diff changeset
   393
  then show "open A"
acfc4ad7b76a instantiate topologies for nat, int and enat
hoelzl
parents: 62367
diff changeset
   394
    by simp
acfc4ad7b76a instantiate topologies for nat, int and enat
hoelzl
parents: 62367
diff changeset
   395
qed
acfc4ad7b76a instantiate topologies for nat, int and enat
hoelzl
parents: 62367
diff changeset
   396
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
   397
subsubsection \<open>Topological filters\<close>
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   398
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   399
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
   400
  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
   401
62533
bc25f3916a99 new material to Blochj's theorem, as well as supporting lemmas
paulson <lp15@cam.ac.uk>
parents: 62397
diff changeset
   402
definition (in topological_space) at_within :: "'a \<Rightarrow> 'a set \<Rightarrow> 'a filter" ("at (_)/ within (_)" [1000, 60] 60)
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
   403
  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
   404
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
   405
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
   406
  "at x \<equiv> at x within (CONST UNIV)"
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   407
51473
1210309fddab move first_countable_topology to the HOL image
hoelzl
parents: 51471
diff changeset
   408
abbreviation (in order_topology) at_right :: "'a \<Rightarrow> 'a filter" where
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   409
  "at_right x \<equiv> at x within {x <..}"
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   410
51473
1210309fddab move first_countable_topology to the HOL image
hoelzl
parents: 51471
diff changeset
   411
abbreviation (in order_topology) at_left :: "'a \<Rightarrow> 'a filter" where
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   412
  "at_left x \<equiv> at x within {..< x}"
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   413
57448
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
   414
lemma (in topological_space) nhds_generated_topology:
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
   415
  "open = generate_topology T \<Longrightarrow> nhds x = (INF S:{S\<in>T. x \<in> S}. principal S)"
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
   416
  unfolding nhds_def
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
   417
proof (safe intro!: antisym INF_greatest)
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
   418
  fix S assume "generate_topology T S" "x \<in> S"
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
   419
  then show "(INF S:{S \<in> T. x \<in> S}. principal S) \<le> principal S"
62102
877463945ce9 fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents: 62101
diff changeset
   420
    by induction
57448
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
   421
       (auto intro: INF_lower order_trans simp add: inf_principal[symmetric] simp del: inf_principal)
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
   422
qed (auto intro!: INF_lower intro: generate_topology.intros)
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
   423
51473
1210309fddab move first_countable_topology to the HOL image
hoelzl
parents: 51471
diff changeset
   424
lemma (in topological_space) eventually_nhds:
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   425
  "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
   426
  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
   427
62102
877463945ce9 fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents: 62101
diff changeset
   428
lemma (in topological_space) eventually_nhds_in_open:
61531
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61520
diff changeset
   429
  "open s \<Longrightarrow> x \<in> s \<Longrightarrow> eventually (\<lambda>y. y \<in> s) (nhds x)"
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61520
diff changeset
   430
  by (subst eventually_nhds) blast
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61520
diff changeset
   431
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   432
lemma nhds_neq_bot [simp]: "nhds a \<noteq> bot"
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   433
  unfolding trivial_limit_def eventually_nhds by simp
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   434
60182
e1ea5a6379c9 generalized tends over powr; added DERIV rule for powr
hoelzl
parents: 60172
diff changeset
   435
lemma (in t1_space) t1_space_nhds:
e1ea5a6379c9 generalized tends over powr; added DERIV rule for powr
hoelzl
parents: 60172
diff changeset
   436
  "x \<noteq> y \<Longrightarrow> (\<forall>\<^sub>F x in nhds x. x \<noteq> y)"
e1ea5a6379c9 generalized tends over powr; added DERIV rule for powr
hoelzl
parents: 60172
diff changeset
   437
  by (drule t1_space) (auto simp: eventually_nhds)
e1ea5a6379c9 generalized tends over powr; added DERIV rule for powr
hoelzl
parents: 60172
diff changeset
   438
62369
acfc4ad7b76a instantiate topologies for nat, int and enat
hoelzl
parents: 62367
diff changeset
   439
lemma (in topological_space) nhds_discrete_open: "open {x} \<Longrightarrow> nhds x = principal {x}"
acfc4ad7b76a instantiate topologies for nat, int and enat
hoelzl
parents: 62367
diff changeset
   440
  by (auto simp: nhds_def intro!: antisym INF_greatest INF_lower2[of "{x}"])
acfc4ad7b76a instantiate topologies for nat, int and enat
hoelzl
parents: 62367
diff changeset
   441
acfc4ad7b76a instantiate topologies for nat, int and enat
hoelzl
parents: 62367
diff changeset
   442
lemma (in discrete_topology) nhds_discrete: "nhds x = principal {x}"
acfc4ad7b76a instantiate topologies for nat, int and enat
hoelzl
parents: 62367
diff changeset
   443
  by (simp add: nhds_discrete_open open_discrete)
acfc4ad7b76a instantiate topologies for nat, int and enat
hoelzl
parents: 62367
diff changeset
   444
acfc4ad7b76a instantiate topologies for nat, int and enat
hoelzl
parents: 62367
diff changeset
   445
lemma (in discrete_topology) at_discrete: "at x within S = bot"
acfc4ad7b76a instantiate topologies for nat, int and enat
hoelzl
parents: 62367
diff changeset
   446
  unfolding at_within_def nhds_discrete by simp
acfc4ad7b76a instantiate topologies for nat, int and enat
hoelzl
parents: 62367
diff changeset
   447
57448
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
   448
lemma at_within_eq: "at x within s = (INF S:{S. open S \<and> x \<in> S}. principal (S \<inter> s - {x}))"
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
   449
  unfolding nhds_def at_within_def by (subst INF_inf_const2[symmetric]) (auto simp add: Diff_Int_distrib)
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
   450
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
   451
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
   452
  "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
   453
  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
   454
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
   455
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
   456
  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
   457
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   458
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
   459
  "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
   460
  unfolding eventually_nhds eventually_at_filter by simp
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   461
51481
ef949192e5d6 move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents: 51480
diff changeset
   462
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
   463
  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
   464
61234
a9e6052188fa New lemmas
paulson <lp15@cam.ac.uk>
parents: 61204
diff changeset
   465
lemma at_within_open_NO_MATCH:
a9e6052188fa New lemmas
paulson <lp15@cam.ac.uk>
parents: 61204
diff changeset
   466
  "a \<in> s \<Longrightarrow> open s \<Longrightarrow> NO_MATCH UNIV s \<Longrightarrow> at a within s = at a"
a9e6052188fa New lemmas
paulson <lp15@cam.ac.uk>
parents: 61204
diff changeset
   467
  by (simp only: at_within_open)
a9e6052188fa New lemmas
paulson <lp15@cam.ac.uk>
parents: 61204
diff changeset
   468
61245
b77bf45efe21 prove Liminf_inverse_ereal
hoelzl
parents: 61234
diff changeset
   469
lemma at_within_nhd:
b77bf45efe21 prove Liminf_inverse_ereal
hoelzl
parents: 61234
diff changeset
   470
  assumes "x \<in> S" "open S" "T \<inter> S - {x} = U \<inter> S - {x}"
b77bf45efe21 prove Liminf_inverse_ereal
hoelzl
parents: 61234
diff changeset
   471
  shows "at x within T = at x within U"
b77bf45efe21 prove Liminf_inverse_ereal
hoelzl
parents: 61234
diff changeset
   472
  unfolding filter_eq_iff eventually_at_filter
b77bf45efe21 prove Liminf_inverse_ereal
hoelzl
parents: 61234
diff changeset
   473
proof (intro allI eventually_subst)
b77bf45efe21 prove Liminf_inverse_ereal
hoelzl
parents: 61234
diff changeset
   474
  have "eventually (\<lambda>x. x \<in> S) (nhds x)"
b77bf45efe21 prove Liminf_inverse_ereal
hoelzl
parents: 61234
diff changeset
   475
    using \<open>x \<in> S\<close> \<open>open S\<close> by (auto simp: eventually_nhds)
62102
877463945ce9 fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents: 62101
diff changeset
   476
  then show "\<forall>\<^sub>F n in nhds x. (n \<noteq> x \<longrightarrow> n \<in> T \<longrightarrow> P n) = (n \<noteq> x \<longrightarrow> n \<in> U \<longrightarrow> P n)" for P
61245
b77bf45efe21 prove Liminf_inverse_ereal
hoelzl
parents: 61234
diff changeset
   477
    by eventually_elim (insert \<open>T \<inter> S - {x} = U \<inter> S - {x}\<close>, blast)
b77bf45efe21 prove Liminf_inverse_ereal
hoelzl
parents: 61234
diff changeset
   478
qed
b77bf45efe21 prove Liminf_inverse_ereal
hoelzl
parents: 61234
diff changeset
   479
53859
e6cb01686f7b replace lemma with more general simp rule
huffman
parents: 53381
diff changeset
   480
lemma at_within_empty [simp]: "at a within {} = bot"
e6cb01686f7b replace lemma with more general simp rule
huffman
parents: 53381
diff changeset
   481
  unfolding at_within_def by simp
e6cb01686f7b replace lemma with more general simp rule
huffman
parents: 53381
diff changeset
   482
53860
f2d683432580 factor out new lemma
huffman
parents: 53859
diff changeset
   483
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
   484
  unfolding filter_eq_iff eventually_sup eventually_at_filter
f2d683432580 factor out new lemma
huffman
parents: 53859
diff changeset
   485
  by (auto elim!: eventually_rev_mp)
f2d683432580 factor out new lemma
huffman
parents: 53859
diff changeset
   486
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   487
lemma at_eq_bot_iff: "at a = bot \<longleftrightarrow> open {a}"
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   488
  unfolding trivial_limit_def eventually_at_topological
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   489
  by (safe, case_tac "S = {a}", simp, fast, fast)
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   490
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   491
lemma at_neq_bot [simp]: "at (a::'a::perfect_space) \<noteq> bot"
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   492
  by (simp add: at_eq_bot_iff not_open_singleton)
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   493
57448
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
   494
lemma (in order_topology) nhds_order: "nhds x =
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
   495
  inf (INF a:{x <..}. principal {..< a}) (INF a:{..< x}. principal {a <..})"
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
   496
proof -
62102
877463945ce9 fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents: 62101
diff changeset
   497
  have 1: "{S \<in> range lessThan \<union> range greaterThan. x \<in> S} =
57448
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
   498
      (\<lambda>a. {..< a}) ` {x <..} \<union> (\<lambda>a. {a <..}) ` {..< x}"
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
   499
    by auto
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
   500
  show ?thesis
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
   501
    unfolding nhds_generated_topology[OF open_generated_order] INF_union 1 INF_image comp_def ..
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   502
qed
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   503
62102
877463945ce9 fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents: 62101
diff changeset
   504
lemma (in linorder_topology) at_within_order: "UNIV \<noteq> {x} \<Longrightarrow>
57448
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
   505
  at x within s = inf (INF a:{x <..}. principal ({..< a} \<inter> s - {x}))
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
   506
                      (INF a:{..< x}. principal ({a <..} \<inter> s - {x}))"
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
   507
proof (cases "{x <..} = {}" "{..< x} = {}" rule: case_split[case_product case_split])
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
   508
  assume "UNIV \<noteq> {x}" "{x<..} = {}" "{..< x} = {}"
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
   509
  moreover have "UNIV = {..< x} \<union> {x} \<union> {x <..}"
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
   510
    by auto
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
   511
  ultimately show ?thesis
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
   512
    by auto
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
   513
qed (auto simp: at_within_def nhds_order Int_Diff inf_principal[symmetric] INF_inf_const2
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
   514
                inf_sup_aci[where 'a="'a filter"]
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
   515
          simp del: inf_principal)
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
   516
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
   517
lemma (in linorder_topology) at_left_eq:
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
   518
  "y < x \<Longrightarrow> at_left x = (INF a:{..< x}. principal {a <..< x})"
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
   519
  by (subst at_within_order)
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
   520
     (auto simp: greaterThan_Int_greaterThan greaterThanLessThan_eq[symmetric] min.absorb2 INF_constant
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
   521
           intro!: INF_lower2 inf_absorb2)
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
   522
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
   523
lemma (in linorder_topology) eventually_at_left:
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
   524
  "y < x \<Longrightarrow> eventually P (at_left x) \<longleftrightarrow> (\<exists>b<x. \<forall>y>b. y < x \<longrightarrow> P y)"
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
   525
  unfolding at_left_eq by (subst eventually_INF_base) (auto simp: eventually_principal Ball_def)
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
   526
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
   527
lemma (in linorder_topology) at_right_eq:
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
   528
  "x < y \<Longrightarrow> at_right x = (INF a:{x <..}. principal {x <..< a})"
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
   529
  by (subst at_within_order)
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
   530
     (auto simp: lessThan_Int_lessThan greaterThanLessThan_eq[symmetric] max.absorb2 INF_constant Int_commute
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
   531
           intro!: INF_lower2 inf_absorb1)
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
   532
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
   533
lemma (in linorder_topology) eventually_at_right:
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
   534
  "x < y \<Longrightarrow> eventually P (at_right x) \<longleftrightarrow> (\<exists>b>x. \<forall>y>x. y < b \<longrightarrow> P y)"
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
   535
  unfolding at_right_eq by (subst eventually_INF_base) (auto simp: eventually_principal Ball_def)
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   536
62083
7582b39f51ed add the proof of the central limit theorem
hoelzl
parents: 62049
diff changeset
   537
lemma eventually_at_right_less: "\<forall>\<^sub>F y in at_right (x::'a::{linorder_topology, no_top}). x < y"
7582b39f51ed add the proof of the central limit theorem
hoelzl
parents: 62049
diff changeset
   538
  using gt_ex[of x] eventually_at_right[of x] by auto
7582b39f51ed add the proof of the central limit theorem
hoelzl
parents: 62049
diff changeset
   539
57275
0ddb5b755cdc moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents: 57025
diff changeset
   540
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
   541
  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
   542
0ddb5b755cdc moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents: 57025
diff changeset
   543
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
   544
  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
   545
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   546
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
   547
  "\<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
   548
  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
   549
  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
   550
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   551
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
   552
  "\<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
   553
  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
   554
  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
   555
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   556
lemma at_eq_sup_left_right: "at (x::'a::linorder_topology) = sup (at_left x) (at_right x)"
62102
877463945ce9 fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents: 62101
diff changeset
   557
  by (auto simp: eventually_at_filter filter_eq_iff eventually_sup
61810
3c5040d5694a sorted out eventually_mono
paulson <lp15@cam.ac.uk>
parents: 61806
diff changeset
   558
           elim: eventually_elim2 eventually_mono)
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   559
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   560
lemma eventually_at_split:
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   561
  "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
   562
  by (subst at_eq_sup_left_right) (simp add: eventually_sup)
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   563
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
   564
subsubsection \<open>Tendsto\<close>
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   565
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   566
abbreviation (in topological_space)
61973
0c7e865fa7cb more symbols;
wenzelm
parents: 61969
diff changeset
   567
  tendsto :: "('b \<Rightarrow> 'a) \<Rightarrow> 'a \<Rightarrow> 'b filter \<Rightarrow> bool" (infixr "\<longlongrightarrow>" 55) where
0c7e865fa7cb more symbols;
wenzelm
parents: 61969
diff changeset
   568
  "(f \<longlongrightarrow> l) F \<equiv> filterlim f (nhds l) F"
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   569
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
   570
definition (in t2_space) Lim :: "'f filter \<Rightarrow> ('f \<Rightarrow> 'a) \<Rightarrow> 'a" where
61973
0c7e865fa7cb more symbols;
wenzelm
parents: 61969
diff changeset
   571
  "Lim A f = (THE l. (f \<longlongrightarrow> l) A)"
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
   572
61973
0c7e865fa7cb more symbols;
wenzelm
parents: 61969
diff changeset
   573
lemma tendsto_eq_rhs: "(f \<longlongrightarrow> x) F \<Longrightarrow> x = y \<Longrightarrow> (f \<longlongrightarrow> y) F"
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   574
  by simp
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   575
57953
69728243a614 updated to named_theorems;
wenzelm
parents: 57448
diff changeset
   576
named_theorems tendsto_intros "introduction rules for tendsto"
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
   577
setup \<open>
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   578
  Global_Theory.add_thms_dynamic (@{binding tendsto_eq_intros},
57953
69728243a614 updated to named_theorems;
wenzelm
parents: 57448
diff changeset
   579
    fn context =>
69728243a614 updated to named_theorems;
wenzelm
parents: 57448
diff changeset
   580
      Named_Theorems.get (Context.proof_of context) @{named_theorems tendsto_intros}
69728243a614 updated to named_theorems;
wenzelm
parents: 57448
diff changeset
   581
      |> map_filter (try (fn thm => @{thm tendsto_eq_rhs} OF [thm])))
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
   582
\<close>
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   583
51473
1210309fddab move first_countable_topology to the HOL image
hoelzl
parents: 51471
diff changeset
   584
lemma (in topological_space) tendsto_def:
61973
0c7e865fa7cb more symbols;
wenzelm
parents: 61969
diff changeset
   585
   "(f \<longlongrightarrow> 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
   586
   unfolding nhds_def filterlim_INF filterlim_principal by auto
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   587
61531
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61520
diff changeset
   588
lemma tendsto_cong:
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61520
diff changeset
   589
  assumes "eventually (\<lambda>x. f x = g x) F"
61973
0c7e865fa7cb more symbols;
wenzelm
parents: 61969
diff changeset
   590
  shows   "(f \<longlongrightarrow> c) F \<longleftrightarrow> (g \<longlongrightarrow> c) F"
61531
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61520
diff changeset
   591
  by (rule filterlim_cong[OF refl refl assms])
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61520
diff changeset
   592
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61520
diff changeset
   593
61973
0c7e865fa7cb more symbols;
wenzelm
parents: 61969
diff changeset
   594
lemma tendsto_mono: "F \<le> F' \<Longrightarrow> (f \<longlongrightarrow> l) F' \<Longrightarrow> (f \<longlongrightarrow> l) F"
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   595
  unfolding tendsto_def le_filter_def by fast
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   596
61973
0c7e865fa7cb more symbols;
wenzelm
parents: 61969
diff changeset
   597
lemma tendsto_within_subset: "(f \<longlongrightarrow> l) (at x within S) \<Longrightarrow> T \<subseteq> S \<Longrightarrow> (f \<longlongrightarrow> l) (at x within T)"
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
   598
  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
   599
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
   600
lemma filterlim_at:
61973
0c7e865fa7cb more symbols;
wenzelm
parents: 61969
diff changeset
   601
  "(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 \<longlongrightarrow> b) 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
   602
  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
   603
51473
1210309fddab move first_countable_topology to the HOL image
hoelzl
parents: 51471
diff changeset
   604
lemma (in topological_space) topological_tendstoI:
61973
0c7e865fa7cb more symbols;
wenzelm
parents: 61969
diff changeset
   605
  "(\<And>S. open S \<Longrightarrow> l \<in> S \<Longrightarrow> eventually (\<lambda>x. f x \<in> S) F) \<Longrightarrow> (f \<longlongrightarrow> l) F"
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   606
  unfolding tendsto_def by auto
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   607
51473
1210309fddab move first_countable_topology to the HOL image
hoelzl
parents: 51471
diff changeset
   608
lemma (in topological_space) topological_tendstoD:
61973
0c7e865fa7cb more symbols;
wenzelm
parents: 61969
diff changeset
   609
  "(f \<longlongrightarrow> l) F \<Longrightarrow> open S \<Longrightarrow> l \<in> S \<Longrightarrow> eventually (\<lambda>x. f x \<in> S) F"
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   610
  unfolding tendsto_def by auto
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   611
57448
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
   612
lemma (in order_topology) order_tendsto_iff:
61973
0c7e865fa7cb more symbols;
wenzelm
parents: 61969
diff changeset
   613
  "(f \<longlongrightarrow> x) F \<longleftrightarrow> (\<forall>l<x. eventually (\<lambda>x. l < f x) F) \<and> (\<forall>u>x. eventually (\<lambda>x. f x < u) F)"
57448
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
   614
  unfolding nhds_order filterlim_inf filterlim_INF filterlim_principal by auto
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
   615
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
   616
lemma (in order_topology) order_tendstoI:
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
   617
  "(\<And>a. a < y \<Longrightarrow> eventually (\<lambda>x. a < f x) F) \<Longrightarrow> (\<And>a. y < a \<Longrightarrow> eventually (\<lambda>x. f x < a) F) \<Longrightarrow>
61973
0c7e865fa7cb more symbols;
wenzelm
parents: 61969
diff changeset
   618
    (f \<longlongrightarrow> y) F"
57448
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
   619
  unfolding order_tendsto_iff by auto
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
   620
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
   621
lemma (in order_topology) order_tendstoD:
61973
0c7e865fa7cb more symbols;
wenzelm
parents: 61969
diff changeset
   622
  assumes "(f \<longlongrightarrow> y) F"
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   623
  shows "a < y \<Longrightarrow> eventually (\<lambda>x. a < f x) F"
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   624
    and "y < a \<Longrightarrow> eventually (\<lambda>x. f x < a) F"
57448
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
   625
  using assms unfolding order_tendsto_iff by auto
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   626
61973
0c7e865fa7cb more symbols;
wenzelm
parents: 61969
diff changeset
   627
lemma tendsto_bot [simp]: "(f \<longlongrightarrow> a) bot"
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   628
  unfolding tendsto_def by simp
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   629
57448
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
   630
lemma (in linorder_topology) tendsto_max:
61973
0c7e865fa7cb more symbols;
wenzelm
parents: 61969
diff changeset
   631
  assumes X: "(X \<longlongrightarrow> x) net"
0c7e865fa7cb more symbols;
wenzelm
parents: 61969
diff changeset
   632
  assumes Y: "(Y \<longlongrightarrow> y) net"
0c7e865fa7cb more symbols;
wenzelm
parents: 61969
diff changeset
   633
  shows "((\<lambda>x. max (X x) (Y x)) \<longlongrightarrow> max x y) net"
56949
d1a937cbf858 clean up Lebesgue integration
hoelzl
parents: 56524
diff changeset
   634
proof (rule order_tendstoI)
d1a937cbf858 clean up Lebesgue integration
hoelzl
parents: 56524
diff changeset
   635
  fix a assume "a < max x y"
d1a937cbf858 clean up Lebesgue integration
hoelzl
parents: 56524
diff changeset
   636
  then show "eventually (\<lambda>x. a < max (X x) (Y x)) net"
d1a937cbf858 clean up Lebesgue integration
hoelzl
parents: 56524
diff changeset
   637
    using order_tendstoD(1)[OF X, of a] order_tendstoD(1)[OF Y, of a]
61810
3c5040d5694a sorted out eventually_mono
paulson <lp15@cam.ac.uk>
parents: 61806
diff changeset
   638
    by (auto simp: less_max_iff_disj elim: eventually_mono)
56949
d1a937cbf858 clean up Lebesgue integration
hoelzl
parents: 56524
diff changeset
   639
next
d1a937cbf858 clean up Lebesgue integration
hoelzl
parents: 56524
diff changeset
   640
  fix a assume "max x y < a"
d1a937cbf858 clean up Lebesgue integration
hoelzl
parents: 56524
diff changeset
   641
  then show "eventually (\<lambda>x. max (X x) (Y x) < a) net"
d1a937cbf858 clean up Lebesgue integration
hoelzl
parents: 56524
diff changeset
   642
    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
   643
    by (auto simp: eventually_conj_iff)
d1a937cbf858 clean up Lebesgue integration
hoelzl
parents: 56524
diff changeset
   644
qed
d1a937cbf858 clean up Lebesgue integration
hoelzl
parents: 56524
diff changeset
   645
57448
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
   646
lemma (in linorder_topology) tendsto_min:
61973
0c7e865fa7cb more symbols;
wenzelm
parents: 61969
diff changeset
   647
  assumes X: "(X \<longlongrightarrow> x) net"
0c7e865fa7cb more symbols;
wenzelm
parents: 61969
diff changeset
   648
  assumes Y: "(Y \<longlongrightarrow> y) net"
0c7e865fa7cb more symbols;
wenzelm
parents: 61969
diff changeset
   649
  shows "((\<lambda>x. min (X x) (Y x)) \<longlongrightarrow> min x y) net"
56949
d1a937cbf858 clean up Lebesgue integration
hoelzl
parents: 56524
diff changeset
   650
proof (rule order_tendstoI)
d1a937cbf858 clean up Lebesgue integration
hoelzl
parents: 56524
diff changeset
   651
  fix a assume "a < min x y"
d1a937cbf858 clean up Lebesgue integration
hoelzl
parents: 56524
diff changeset
   652
  then show "eventually (\<lambda>x. a < min (X x) (Y x)) net"
d1a937cbf858 clean up Lebesgue integration
hoelzl
parents: 56524
diff changeset
   653
    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
   654
    by (auto simp: eventually_conj_iff)
d1a937cbf858 clean up Lebesgue integration
hoelzl
parents: 56524
diff changeset
   655
next
d1a937cbf858 clean up Lebesgue integration
hoelzl
parents: 56524
diff changeset
   656
  fix a assume "min x y < a"
d1a937cbf858 clean up Lebesgue integration
hoelzl
parents: 56524
diff changeset
   657
  then show "eventually (\<lambda>x. min (X x) (Y x) < a) net"
d1a937cbf858 clean up Lebesgue integration
hoelzl
parents: 56524
diff changeset
   658
    using order_tendstoD(2)[OF X, of a] order_tendstoD(2)[OF Y, of a]
61810
3c5040d5694a sorted out eventually_mono
paulson <lp15@cam.ac.uk>
parents: 61806
diff changeset
   659
    by (auto simp: min_less_iff_disj elim: eventually_mono)
56949
d1a937cbf858 clean up Lebesgue integration
hoelzl
parents: 56524
diff changeset
   660
qed
d1a937cbf858 clean up Lebesgue integration
hoelzl
parents: 56524
diff changeset
   661
61973
0c7e865fa7cb more symbols;
wenzelm
parents: 61969
diff changeset
   662
lemma tendsto_ident_at [tendsto_intros, simp, intro]: "((\<lambda>x. x) \<longlongrightarrow> a) (at a within s)"
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   663
  unfolding tendsto_def eventually_at_topological by auto
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   664
61973
0c7e865fa7cb more symbols;
wenzelm
parents: 61969
diff changeset
   665
lemma (in topological_space) tendsto_const [tendsto_intros, simp, intro]: "((\<lambda>x. k) \<longlongrightarrow> k) F"
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   666
  by (simp add: tendsto_def)
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   667
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
   668
lemma (in t2_space) tendsto_unique:
61973
0c7e865fa7cb more symbols;
wenzelm
parents: 61969
diff changeset
   669
  assumes "F \<noteq> bot" and "(f \<longlongrightarrow> a) F" and "(f \<longlongrightarrow> b) F"
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   670
  shows "a = b"
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   671
proof (rule ccontr)
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   672
  assume "a \<noteq> b"
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   673
  obtain U V where "open U" "open V" "a \<in> U" "b \<in> V" "U \<inter> V = {}"
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
   674
    using hausdorff [OF \<open>a \<noteq> b\<close>] by fast
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   675
  have "eventually (\<lambda>x. f x \<in> U) F"
61973
0c7e865fa7cb more symbols;
wenzelm
parents: 61969
diff changeset
   676
    using \<open>(f \<longlongrightarrow> a) F\<close> \<open>open U\<close> \<open>a \<in> U\<close> by (rule topological_tendstoD)
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   677
  moreover
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   678
  have "eventually (\<lambda>x. f x \<in> V) F"
61973
0c7e865fa7cb more symbols;
wenzelm
parents: 61969
diff changeset
   679
    using \<open>(f \<longlongrightarrow> b) F\<close> \<open>open V\<close> \<open>b \<in> V\<close> by (rule topological_tendstoD)
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   680
  ultimately
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   681
  have "eventually (\<lambda>x. False) F"
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   682
  proof eventually_elim
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   683
    case (elim x)
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   684
    hence "f x \<in> U \<inter> V" by simp
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
   685
    with \<open>U \<inter> V = {}\<close> show ?case by simp
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   686
  qed
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
   687
  with \<open>\<not> trivial_limit F\<close> show "False"
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   688
    by (simp add: trivial_limit_def)
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   689
qed
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   690
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
   691
lemma (in t2_space) tendsto_const_iff:
61973
0c7e865fa7cb more symbols;
wenzelm
parents: 61969
diff changeset
   692
  assumes "\<not> trivial_limit F" shows "((\<lambda>x. a :: 'a) \<longlongrightarrow> b) F \<longleftrightarrow> a = b"
58729
e8ecc79aee43 add tendsto_const and tendsto_ident_at as simp and intro rules
hoelzl
parents: 57953
diff changeset
   693
  by (auto intro!: tendsto_unique [OF assms tendsto_const])
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   694
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   695
lemma increasing_tendsto:
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   696
  fixes f :: "_ \<Rightarrow> 'a::order_topology"
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   697
  assumes bdd: "eventually (\<lambda>n. f n \<le> l) F"
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   698
      and en: "\<And>x. x < l \<Longrightarrow> eventually (\<lambda>n. x < f n) F"
61973
0c7e865fa7cb more symbols;
wenzelm
parents: 61969
diff changeset
   699
  shows "(f \<longlongrightarrow> l) F"
61810
3c5040d5694a sorted out eventually_mono
paulson <lp15@cam.ac.uk>
parents: 61806
diff changeset
   700
  using assms by (intro order_tendstoI) (auto elim!: eventually_mono)
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   701
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   702
lemma decreasing_tendsto:
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   703
  fixes f :: "_ \<Rightarrow> 'a::order_topology"
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   704
  assumes bdd: "eventually (\<lambda>n. l \<le> f n) F"
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   705
      and en: "\<And>x. l < x \<Longrightarrow> eventually (\<lambda>n. f n < x) F"
61973
0c7e865fa7cb more symbols;
wenzelm
parents: 61969
diff changeset
   706
  shows "(f \<longlongrightarrow> l) F"
61810
3c5040d5694a sorted out eventually_mono
paulson <lp15@cam.ac.uk>
parents: 61806
diff changeset
   707
  using assms by (intro order_tendstoI) (auto elim!: eventually_mono)
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   708
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   709
lemma tendsto_sandwich:
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   710
  fixes f g h :: "'a \<Rightarrow> 'b::order_topology"
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   711
  assumes ev: "eventually (\<lambda>n. f n \<le> g n) net" "eventually (\<lambda>n. g n \<le> h n) net"
61973
0c7e865fa7cb more symbols;
wenzelm
parents: 61969
diff changeset
   712
  assumes lim: "(f \<longlongrightarrow> c) net" "(h \<longlongrightarrow> c) net"
0c7e865fa7cb more symbols;
wenzelm
parents: 61969
diff changeset
   713
  shows "(g \<longlongrightarrow> c) net"
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   714
proof (rule order_tendstoI)
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   715
  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
   716
    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
   717
next
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   718
  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
   719
    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
   720
qed
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   721
61531
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61520
diff changeset
   722
lemma limit_frequently_eq:
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61520
diff changeset
   723
  assumes "F \<noteq> bot"
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61520
diff changeset
   724
  assumes "frequently (\<lambda>x. f x = c) F"
61973
0c7e865fa7cb more symbols;
wenzelm
parents: 61969
diff changeset
   725
  assumes "(f \<longlongrightarrow> d) F"
61531
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61520
diff changeset
   726
  shows   "d = (c :: 'a :: t1_space)"
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61520
diff changeset
   727
proof (rule ccontr)
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61520
diff changeset
   728
  assume "d \<noteq> c"
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61520
diff changeset
   729
  from t1_space[OF this] obtain U where "open U" "d \<in> U" "c \<notin> U" by blast
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61520
diff changeset
   730
  from this assms have "eventually (\<lambda>x. f x \<in> U) F" unfolding tendsto_def by blast
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61738
diff changeset
   731
  hence "eventually (\<lambda>x. f x \<noteq> c) F" by eventually_elim (insert \<open>c \<notin> U\<close>, blast)
61531
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61520
diff changeset
   732
  with assms(2) show False unfolding frequently_def by contradiction
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61520
diff changeset
   733
qed
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61520
diff changeset
   734
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61520
diff changeset
   735
lemma tendsto_imp_eventually_ne:
61973
0c7e865fa7cb more symbols;
wenzelm
parents: 61969
diff changeset
   736
  assumes "F \<noteq> bot" "(f \<longlongrightarrow> c) F" "c \<noteq> (c' :: 'a :: t1_space)"
61531
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61520
diff changeset
   737
  shows   "eventually (\<lambda>z. f z \<noteq> c') F"
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61520
diff changeset
   738
proof (rule ccontr)
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61520
diff changeset
   739
  assume "\<not>eventually (\<lambda>z. f z \<noteq> c') F"
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61520
diff changeset
   740
  hence "frequently (\<lambda>z. f z = c') F" by (simp add: frequently_def)
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61520
diff changeset
   741
  from limit_frequently_eq[OF assms(1) this assms(2)] and assms(3) show False by contradiction
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61520
diff changeset
   742
qed
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61520
diff changeset
   743
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   744
lemma tendsto_le:
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   745
  fixes f g :: "'a \<Rightarrow> 'b::linorder_topology"
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   746
  assumes F: "\<not> trivial_limit F"
61973
0c7e865fa7cb more symbols;
wenzelm
parents: 61969
diff changeset
   747
  assumes x: "(f \<longlongrightarrow> x) F" and y: "(g \<longlongrightarrow> y) F"
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   748
  assumes ev: "eventually (\<lambda>x. g x \<le> f x) F"
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   749
  shows "y \<le> x"
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   750
proof (rule ccontr)
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   751
  assume "\<not> y \<le> x"
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   752
  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
   753
    by (auto simp: not_le)
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   754
  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
   755
    using x y by (auto intro: order_tendstoD)
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   756
  with ev have "eventually (\<lambda>x. False) F"
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   757
    by eventually_elim (insert xy, fastforce)
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   758
  with F show False
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   759
    by (simp add: eventually_False)
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   760
qed
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   761
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   762
lemma tendsto_le_const:
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   763
  fixes f :: "'a \<Rightarrow> 'b::linorder_topology"
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   764
  assumes F: "\<not> trivial_limit F"
61973
0c7e865fa7cb more symbols;
wenzelm
parents: 61969
diff changeset
   765
  assumes x: "(f \<longlongrightarrow> 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
   766
  shows "a \<le> x"
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   767
  using F x tendsto_const a by (rule tendsto_le)
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   768
56289
d8d2a2b97168 Some useful lemmas
paulson <lp15@cam.ac.uk>
parents: 56231
diff changeset
   769
lemma tendsto_ge_const:
d8d2a2b97168 Some useful lemmas
paulson <lp15@cam.ac.uk>
parents: 56231
diff changeset
   770
  fixes f :: "'a \<Rightarrow> 'b::linorder_topology"
d8d2a2b97168 Some useful lemmas
paulson <lp15@cam.ac.uk>
parents: 56231
diff changeset
   771
  assumes F: "\<not> trivial_limit F"
61973
0c7e865fa7cb more symbols;
wenzelm
parents: 61969
diff changeset
   772
  assumes x: "(f \<longlongrightarrow> x) F" and a: "eventually (\<lambda>i. a \<ge> f i) F"
56289
d8d2a2b97168 Some useful lemmas
paulson <lp15@cam.ac.uk>
parents: 56231
diff changeset
   773
  shows "a \<ge> x"
d8d2a2b97168 Some useful lemmas
paulson <lp15@cam.ac.uk>
parents: 56231
diff changeset
   774
  by (rule tendsto_le [OF F tendsto_const x a])
d8d2a2b97168 Some useful lemmas
paulson <lp15@cam.ac.uk>
parents: 56231
diff changeset
   775
61531
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61520
diff changeset
   776
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
   777
subsubsection \<open>Rules about @{const Lim}\<close>
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
   778
57276
49c51eeaa623 filters are easier to define with INF on filters.
hoelzl
parents: 57275
diff changeset
   779
lemma tendsto_Lim:
61973
0c7e865fa7cb more symbols;
wenzelm
parents: 61969
diff changeset
   780
  "\<not>(trivial_limit net) \<Longrightarrow> (f \<longlongrightarrow> l) net \<Longrightarrow> Lim net f = l"
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
   781
  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
   782
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
   783
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
   784
  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
   785
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   786
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
   787
  fixes f :: "'a::linorder_topology \<Rightarrow> 'b::linorder"
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   788
  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
   789
  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
   790
  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
   791
  assumes P: "eventually P at_bot"
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   792
  shows "filterlim f at_bot (at_right a)"
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   793
proof -
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   794
  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
   795
    unfolding eventually_at_bot_linorder by auto
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   796
  show ?thesis
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   797
  proof (intro filterlim_at_bot_le[THEN iffD2] allI impI)
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   798
    fix z assume "z \<le> x"
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   799
    with x have "P z" by auto
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   800
    have "eventually (\<lambda>x. x \<le> g z) (at_right a)"
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
   801
      using bound[OF bij(2)[OF \<open>P z\<close>]]
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
   802
      unfolding eventually_at_right[OF bound[OF bij(2)[OF \<open>P z\<close>]]] by (auto intro!: exI[of _ "g z"])
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   803
    with Q show "eventually (\<lambda>x. f x \<le> z) (at_right a)"
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
   804
      by eventually_elim (metis bij \<open>P z\<close> mono)
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   805
  qed
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   806
qed
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   807
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   808
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
   809
  fixes f :: "'a::linorder_topology \<Rightarrow> 'b::linorder"
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   810
  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
   811
  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
   812
  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
   813
  assumes P: "eventually P at_top"
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   814
  shows "filterlim f at_top (at_left a)"
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   815
proof -
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   816
  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
   817
    unfolding eventually_at_top_linorder by auto
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   818
  show ?thesis
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   819
  proof (intro filterlim_at_top_ge[THEN iffD2] allI impI)
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   820
    fix z assume "x \<le> z"
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   821
    with x have "P z" by auto
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   822
    have "eventually (\<lambda>x. g z \<le> x) (at_left a)"
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
   823
      using bound[OF bij(2)[OF \<open>P z\<close>]]
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
   824
      unfolding eventually_at_left[OF bound[OF bij(2)[OF \<open>P z\<close>]]] by (auto intro!: exI[of _ "g z"])
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   825
    with Q show "eventually (\<lambda>x. z \<le> f x) (at_left a)"
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
   826
      by eventually_elim (metis bij \<open>P z\<close> mono)
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   827
  qed
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   828
qed
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   829
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   830
lemma filterlim_split_at:
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   831
  "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
   832
  by (subst at_eq_sup_left_right) (rule filterlim_sup)
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   833
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   834
lemma filterlim_at_split:
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   835
  "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
   836
  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
   837
57025
e7fd64f82876 add various lemmas
hoelzl
parents: 56949
diff changeset
   838
lemma eventually_nhds_top:
e7fd64f82876 add various lemmas
hoelzl
parents: 56949
diff changeset
   839
  fixes P :: "'a :: {order_top, linorder_topology} \<Rightarrow> bool"
e7fd64f82876 add various lemmas
hoelzl
parents: 56949
diff changeset
   840
  assumes "(b::'a) < top"
e7fd64f82876 add various lemmas
hoelzl
parents: 56949
diff changeset
   841
  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
   842
  unfolding eventually_nhds
e7fd64f82876 add various lemmas
hoelzl
parents: 56949
diff changeset
   843
proof safe
e7fd64f82876 add various lemmas
hoelzl
parents: 56949
diff changeset
   844
  fix S :: "'a set" assume "open S" "top \<in> S"
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
   845
  note open_left[OF this \<open>b < top\<close>]
57025
e7fd64f82876 add various lemmas
hoelzl
parents: 56949
diff changeset
   846
  moreover assume "\<forall>s\<in>S. P s"
e7fd64f82876 add various lemmas
hoelzl
parents: 56949
diff changeset
   847
  ultimately show "\<exists>b<top. \<forall>z>b. P z"
e7fd64f82876 add various lemmas
hoelzl
parents: 56949
diff changeset
   848
    by (auto simp: subset_eq Ball_def)
e7fd64f82876 add various lemmas
hoelzl
parents: 56949
diff changeset
   849
next
e7fd64f82876 add various lemmas
hoelzl
parents: 56949
diff changeset
   850
  fix b assume "b < top" "\<forall>z>b. P z"
e7fd64f82876 add various lemmas
hoelzl
parents: 56949
diff changeset
   851
  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
   852
    by (intro exI[of _ "{b <..}"]) auto
e7fd64f82876 add various lemmas
hoelzl
parents: 56949
diff changeset
   853
qed
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   854
57447
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
   855
lemma tendsto_at_within_iff_tendsto_nhds:
61973
0c7e865fa7cb more symbols;
wenzelm
parents: 61969
diff changeset
   856
  "(g \<longlongrightarrow> g l) (at l within S) \<longleftrightarrow> (g \<longlongrightarrow> g l) (inf (nhds l) (principal S))"
57447
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
   857
  unfolding tendsto_def eventually_at_filter eventually_inf_principal
61810
3c5040d5694a sorted out eventually_mono
paulson <lp15@cam.ac.uk>
parents: 61806
diff changeset
   858
  by (intro ext all_cong imp_cong) (auto elim!: eventually_mono)
57447
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
   859
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
   860
subsection \<open>Limits on sequences\<close>
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   861
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   862
abbreviation (in topological_space)
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   863
  LIMSEQ :: "[nat \<Rightarrow> 'a, 'a] \<Rightarrow> bool"
61969
e01015e49041 more symbols;
wenzelm
parents: 61907
diff changeset
   864
    ("((_)/ \<longlonglongrightarrow> (_))" [60, 60] 60) where
61973
0c7e865fa7cb more symbols;
wenzelm
parents: 61969
diff changeset
   865
  "X \<longlonglongrightarrow> L \<equiv> (X \<longlongrightarrow> L) sequentially"
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   866
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
   867
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
   868
  "lim X \<equiv> Lim sequentially X"
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   869
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   870
definition (in topological_space) convergent :: "(nat \<Rightarrow> 'a) \<Rightarrow> bool" where
61969
e01015e49041 more symbols;
wenzelm
parents: 61907
diff changeset
   871
  "convergent X = (\<exists>L. X \<longlonglongrightarrow> L)"
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   872
61969
e01015e49041 more symbols;
wenzelm
parents: 61907
diff changeset
   873
lemma lim_def: "lim X = (THE L. X \<longlonglongrightarrow> L)"
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
   874
  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
   875
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
   876
subsubsection \<open>Monotone sequences and subsequences\<close>
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   877
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   878
definition
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   879
  monoseq :: "(nat \<Rightarrow> 'a::order) \<Rightarrow> bool" where
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61738
diff changeset
   880
    \<comment>\<open>Definition of monotonicity.
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   881
        The use of disjunction here complicates proofs considerably.
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   882
        One alternative is to add a Boolean argument to indicate the direction.
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
   883
        Another is to develop the notions of increasing and decreasing first.\<close>
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
   884
  "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
   885
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
   886
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
   887
  "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
   888
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
   889
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
   890
  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
   891
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
   892
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
   893
  "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
   894
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
   895
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
   896
  unfolding antimono_def ..
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   897
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   898
definition
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   899
  subseq :: "(nat \<Rightarrow> nat) \<Rightarrow> bool" where
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61738
diff changeset
   900
    \<comment>\<open>Definition of subsequence\<close>
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   901
  "subseq f \<longleftrightarrow> (\<forall>m. \<forall>n>m. f m < f n)"
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   902
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   903
lemma incseq_SucI:
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   904
  "(\<And>n. X n \<le> X (Suc n)) \<Longrightarrow> incseq X"
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   905
  using lift_Suc_mono_le[of X]
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   906
  by (auto simp: incseq_def)
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   907
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   908
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
   909
  by (auto simp: incseq_def)
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   910
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   911
lemma incseq_SucD: "incseq A \<Longrightarrow> A i \<le> A (Suc i)"
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   912
  using incseqD[of A i "Suc i"] by auto
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   913
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   914
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
   915
  by (auto intro: incseq_SucI dest: incseq_SucD)
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   916
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   917
lemma incseq_const[simp, intro]: "incseq (\<lambda>x. k)"
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   918
  unfolding incseq_def by auto
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   919
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   920
lemma decseq_SucI:
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   921
  "(\<And>n. X (Suc n) \<le> X n) \<Longrightarrow> decseq X"
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   922
  using order.lift_Suc_mono_le[OF dual_order, of X]
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   923
  by (auto simp: decseq_def)
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 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
   926
  by (auto simp: decseq_def)
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   927
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   928
lemma decseq_SucD: "decseq A \<Longrightarrow> A (Suc i) \<le> A i"
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   929
  using decseqD[of A i "Suc i"] by auto
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
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
   932
  by (auto intro: decseq_SucI dest: decseq_SucD)
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
lemma decseq_const[simp, intro]: "decseq (\<lambda>x. k)"
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   935
  unfolding decseq_def by auto
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
lemma monoseq_iff: "monoseq X \<longleftrightarrow> incseq X \<or> decseq X"
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   938
  unfolding monoseq_def incseq_def decseq_def ..
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 monoseq_Suc:
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   941
  "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
   942
  unfolding monoseq_iff incseq_Suc_iff decseq_Suc_iff ..
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 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
   945
by (simp add: monoseq_def)
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   946
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   947
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
   948
by (simp add: monoseq_def)
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   949
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   950
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
   951
by (simp add: monoseq_Suc)
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   952
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   953
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
   954
by (simp add: monoseq_Suc)
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   955
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   956
lemma monoseq_minus:
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   957
  fixes a :: "nat \<Rightarrow> 'a::ordered_ab_group_add"
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   958
  assumes "monoseq a"
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   959
  shows "monoseq (\<lambda> n. - a n)"
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   960
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
   961
  case True
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   962
  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
   963
  thus ?thesis by (rule monoI2)
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   964
next
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   965
  case False
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
   966
  hence "\<forall> m. \<forall> n \<ge> m. - a m \<le> - a n" using \<open>monoseq a\<close>[unfolded monoseq_def] by auto
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   967
  thus ?thesis by (rule monoI1)
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   968
qed
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   969
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
   970
text\<open>Subsequence (alternative definition, (e.g. Hoskins)\<close>
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   971
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   972
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
   973
apply (simp add: subseq_def)
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   974
apply (auto dest!: less_imp_Suc_add)
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   975
apply (induct_tac k)
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   976
apply (auto intro: less_trans)
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   977
done
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   978
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
   979
text\<open>for any sequence, there is a monotonic subsequence\<close>
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   980
lemma seq_monosub:
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   981
  fixes s :: "nat => 'a::linorder"
57448
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
   982
  shows "\<exists>f. subseq f \<and> monoseq (\<lambda>n. (s (f n)))"
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   983
proof cases
57448
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
   984
  assume "\<forall>n. \<exists>p>n. \<forall>m\<ge>p. s m \<le> s p"
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
   985
  then have "\<exists>f. \<forall>n. (\<forall>m\<ge>f n. s m \<le> s (f n)) \<and> f n < f (Suc n)"
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
   986
    by (intro dependent_nat_choice) (auto simp: conj_commute)
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
   987
  then obtain f where "subseq f" and mono: "\<And>n m. f n \<le> m \<Longrightarrow> s m \<le> s (f n)"
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
   988
    by (auto simp: subseq_Suc_iff)
62102
877463945ce9 fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents: 62101
diff changeset
   989
  moreover
57448
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
   990
  then have "incseq f"
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
   991
    unfolding subseq_Suc_iff incseq_Suc_iff by (auto intro: less_imp_le)
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
   992
  then have "monoseq (\<lambda>n. s (f n))"
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
   993
    by (auto simp add: incseq_def intro!: mono monoI2)
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
   994
  ultimately show ?thesis
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
   995
    by auto
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   996
next
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
   997
  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
   998
  then obtain N where N: "\<And>p. p > N \<Longrightarrow> \<exists>m>p. s p < s m" by (force simp: not_le le_less)
57448
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
   999
  have "\<exists>f. \<forall>n. N < f n \<and> f n < f (Suc n) \<and> s (f n) \<le> s (f (Suc n))"
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
  1000
  proof (intro dependent_nat_choice)
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
  1001
    fix x assume "N < x" with N[of x] show "\<exists>y>N. x < y \<and> s x \<le> s y"
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
  1002
      by (auto intro: less_trans)
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
  1003
  qed auto
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
  1004
  then show ?thesis
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
  1005
    by (auto simp: monoseq_iff incseq_Suc_iff subseq_Suc_iff)
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1006
qed
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1007
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1008
lemma seq_suble: assumes sf: "subseq f" shows "n \<le> f n"
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1009
proof(induct n)
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1010
  case 0 thus ?case by simp
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1011
next
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1012
  case (Suc n)
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1013
  from sf[unfolded subseq_Suc_iff, rule_format, of n] Suc.hyps
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1014
  have "n < f (Suc n)" by arith
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1015
  thus ?case by arith
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1016
qed
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1017
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1018
lemma eventually_subseq:
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1019
  "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
  1020
  unfolding eventually_sequentially by (metis seq_suble le_trans)
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1021
51473
1210309fddab move first_countable_topology to the HOL image
hoelzl
parents: 51471
diff changeset
  1022
lemma not_eventually_sequentiallyD:
1210309fddab move first_countable_topology to the HOL image
hoelzl
parents: 51471
diff changeset
  1023
  assumes P: "\<not> eventually P sequentially"
1210309fddab move first_countable_topology to the HOL image
hoelzl
parents: 51471
diff changeset
  1024
  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
  1025
proof -
1210309fddab move first_countable_topology to the HOL image
hoelzl
parents: 51471
diff changeset
  1026
  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
  1027
    unfolding eventually_sequentially by (simp add: not_less)
1210309fddab move first_countable_topology to the HOL image
hoelzl
parents: 51471
diff changeset
  1028
  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
  1029
    by (auto simp: choice_iff)
1210309fddab move first_countable_topology to the HOL image
hoelzl
parents: 51471
diff changeset
  1030
  then show ?thesis
1210309fddab move first_countable_topology to the HOL image
hoelzl
parents: 51471
diff changeset
  1031
    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
  1032
             simp: less_eq_Suc_le subseq_Suc_iff)
1210309fddab move first_countable_topology to the HOL image
hoelzl
parents: 51471
diff changeset
  1033
qed
1210309fddab move first_countable_topology to the HOL image
hoelzl
parents: 51471
diff changeset
  1034
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1035
lemma filterlim_subseq: "subseq f \<Longrightarrow> filterlim f sequentially sequentially"
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1036
  unfolding filterlim_iff by (metis eventually_subseq)
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1037
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1038
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
  1039
  unfolding subseq_def by simp
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1040
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1041
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
  1042
  using assms by (auto simp: subseq_def)
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1043
61531
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61520
diff changeset
  1044
lemma subseq_imp_inj_on: "subseq g \<Longrightarrow> inj_on g A"
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61520
diff changeset
  1045
proof (rule inj_onI)
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61520
diff changeset
  1046
  assume g: "subseq g"
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61520
diff changeset
  1047
  fix x y assume "g x = g y"
62102
877463945ce9 fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents: 62101
diff changeset
  1048
  with subseq_mono[OF g, of x y] subseq_mono[OF g, of y x] show "x = y"
61531
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61520
diff changeset
  1049
    by (cases x y rule: linorder_cases) simp_all
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61520
diff changeset
  1050
qed
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61520
diff changeset
  1051
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61520
diff changeset
  1052
lemma subseq_strict_mono: "subseq g \<Longrightarrow> strict_mono g"
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61520
diff changeset
  1053
  by (intro strict_monoI subseq_mono[of g])
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61520
diff changeset
  1054
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1055
lemma incseq_imp_monoseq:  "incseq X \<Longrightarrow> monoseq X"
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1056
  by (simp add: incseq_def monoseq_def)
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1057
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1058
lemma decseq_imp_monoseq:  "decseq X \<Longrightarrow> monoseq X"
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1059
  by (simp add: decseq_def monoseq_def)
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1060
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1061
lemma decseq_eq_incseq:
62102
877463945ce9 fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents: 62101
diff changeset
  1062
  fixes X :: "nat \<Rightarrow> 'a::ordered_ab_group_add" shows "decseq X = incseq (\<lambda>n. - X n)"
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1063
  by (simp add: decseq_def incseq_def)
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1064
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1065
lemma INT_decseq_offset:
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1066
  assumes "decseq F"
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1067
  shows "(\<Inter>i. F i) = (\<Inter>i\<in>{n..}. F i)"
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1068
proof safe
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1069
  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
  1070
  show "x \<in> F i"
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1071
  proof cases
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1072
    from x have "x \<in> F n" by auto
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
  1073
    also assume "i \<le> n" with \<open>decseq F\<close> have "F n \<subseteq> F i"
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1074
      unfolding decseq_def by simp
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1075
    finally show ?thesis .
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1076
  qed (insert x, simp)
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1077
qed auto
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1078
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1079
lemma LIMSEQ_const_iff:
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1080
  fixes k l :: "'a::t2_space"
61969
e01015e49041 more symbols;
wenzelm
parents: 61907
diff changeset
  1081
  shows "(\<lambda>n. k) \<longlonglongrightarrow> l \<longleftrightarrow> k = l"
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1082
  using trivial_limit_sequentially by (rule tendsto_const_iff)
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1083
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1084
lemma LIMSEQ_SUP:
61969
e01015e49041 more symbols;
wenzelm
parents: 61907
diff changeset
  1085
  "incseq X \<Longrightarrow> X \<longlonglongrightarrow> (SUP i. X i :: 'a :: {complete_linorder, linorder_topology})"
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1086
  by (intro increasing_tendsto)
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1087
     (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
  1088
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1089
lemma LIMSEQ_INF:
61969
e01015e49041 more symbols;
wenzelm
parents: 61907
diff changeset
  1090
  "decseq X \<Longrightarrow> X \<longlonglongrightarrow> (INF i. X i :: 'a :: {complete_linorder, linorder_topology})"
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1091
  by (intro decreasing_tendsto)
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1092
     (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
  1093
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1094
lemma LIMSEQ_ignore_initial_segment:
61969
e01015e49041 more symbols;
wenzelm
parents: 61907
diff changeset
  1095
  "f \<longlonglongrightarrow> a \<Longrightarrow> (\<lambda>n. f (n + k)) \<longlonglongrightarrow> a"
51474
1e9e68247ad1 generalize Bfun and Bseq to metric spaces; Bseq is an abbreviation for Bfun
hoelzl
parents: 51473
diff changeset
  1096
  unfolding tendsto_def
1e9e68247ad1 generalize Bfun and Bseq to metric spaces; Bseq is an abbreviation for Bfun
hoelzl
parents: 51473
diff changeset
  1097
  by (subst eventually_sequentially_seg[where k=k])
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1098
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1099
lemma LIMSEQ_offset:
61969
e01015e49041 more symbols;
wenzelm
parents: 61907
diff changeset
  1100
  "(\<lambda>n. f (n + k)) \<longlonglongrightarrow> a \<Longrightarrow> f \<longlonglongrightarrow> a"
51474
1e9e68247ad1 generalize Bfun and Bseq to metric spaces; Bseq is an abbreviation for Bfun
hoelzl
parents: 51473
diff changeset
  1101
  unfolding tendsto_def
1e9e68247ad1 generalize Bfun and Bseq to metric spaces; Bseq is an abbreviation for Bfun
hoelzl
parents: 51473
diff changeset
  1102
  by (subst (asm) eventually_sequentially_seg[where k=k])
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1103
61969
e01015e49041 more symbols;
wenzelm
parents: 61907
diff changeset
  1104
lemma LIMSEQ_Suc: "f \<longlonglongrightarrow> l \<Longrightarrow> (\<lambda>n. f (Suc n)) \<longlonglongrightarrow> l"
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1105
by (drule_tac k="Suc 0" in LIMSEQ_ignore_initial_segment, simp)
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1106
61969
e01015e49041 more symbols;
wenzelm
parents: 61907
diff changeset
  1107
lemma LIMSEQ_imp_Suc: "(\<lambda>n. f (Suc n)) \<longlonglongrightarrow> l \<Longrightarrow> f \<longlonglongrightarrow> l"
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1108
by (rule_tac k="Suc 0" in LIMSEQ_offset, simp)
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1109
61969
e01015e49041 more symbols;
wenzelm
parents: 61907
diff changeset
  1110
lemma LIMSEQ_Suc_iff: "(\<lambda>n. f (Suc n)) \<longlonglongrightarrow> l = f \<longlonglongrightarrow> l"
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1111
by (blast intro: LIMSEQ_imp_Suc LIMSEQ_Suc)
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1112
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1113
lemma LIMSEQ_unique:
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1114
  fixes a b :: "'a::t2_space"
61969
e01015e49041 more symbols;
wenzelm
parents: 61907
diff changeset
  1115
  shows "\<lbrakk>X \<longlonglongrightarrow> a; X \<longlonglongrightarrow> b\<rbrakk> \<Longrightarrow> a = b"
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1116
  using trivial_limit_sequentially by (rule tendsto_unique)
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1117
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1118
lemma LIMSEQ_le_const:
61969
e01015e49041 more symbols;
wenzelm
parents: 61907
diff changeset
  1119
  "\<lbrakk>X \<longlonglongrightarrow> (x::'a::linorder_topology); \<exists>N. \<forall>n\<ge>N. a \<le> X n\<rbrakk> \<Longrightarrow> a \<le> x"
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1120
  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
  1121
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1122
lemma LIMSEQ_le:
61969
e01015e49041 more symbols;
wenzelm
parents: 61907
diff changeset
  1123
  "\<lbrakk>X \<longlonglongrightarrow> x; Y \<longlonglongrightarrow> y; \<exists>N. \<forall>n\<ge>N. X n \<le> Y n\<rbrakk> \<Longrightarrow> x \<le> (y::'a::linorder_topology)"
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1124
  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
  1125
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1126
lemma LIMSEQ_le_const2:
61969
e01015e49041 more symbols;
wenzelm
parents: 61907
diff changeset
  1127
  "\<lbrakk>X \<longlonglongrightarrow> (x::'a::linorder_topology); \<exists>N. \<forall>n\<ge>N. X n \<le> a\<rbrakk> \<Longrightarrow> x \<le> a"
58729
e8ecc79aee43 add tendsto_const and tendsto_ident_at as simp and intro rules
hoelzl
parents: 57953
diff changeset
  1128
  by (rule LIMSEQ_le[of X x "\<lambda>n. a"]) auto
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1129
61969
e01015e49041 more symbols;
wenzelm
parents: 61907
diff changeset
  1130
lemma convergentD: "convergent X ==> \<exists>L. (X \<longlonglongrightarrow> L)"
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1131
by (simp add: convergent_def)
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1132
61969
e01015e49041 more symbols;
wenzelm
parents: 61907
diff changeset
  1133
lemma convergentI: "(X \<longlonglongrightarrow> L) ==> convergent X"
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1134
by (auto simp add: convergent_def)
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1135
61969
e01015e49041 more symbols;
wenzelm
parents: 61907
diff changeset
  1136
lemma convergent_LIMSEQ_iff: "convergent X = (X \<longlonglongrightarrow> lim X)"
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1137
by (auto intro: theI LIMSEQ_unique simp add: convergent_def lim_def)
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1138
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1139
lemma convergent_const: "convergent (\<lambda>n. c)"
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1140
  by (rule convergentI, rule tendsto_const)
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1141
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1142
lemma monoseq_le:
61969
e01015e49041 more symbols;
wenzelm
parents: 61907
diff changeset
  1143
  "monoseq a \<Longrightarrow> a \<longlonglongrightarrow> (x::'a::linorder_topology) \<Longrightarrow>
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1144
    ((\<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
  1145
  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
  1146
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1147
lemma LIMSEQ_subseq_LIMSEQ:
61969
e01015e49041 more symbols;
wenzelm
parents: 61907
diff changeset
  1148
  "\<lbrakk> X \<longlonglongrightarrow> L; subseq f \<rbrakk> \<Longrightarrow> (X o f) \<longlonglongrightarrow> L"
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1149
  unfolding comp_def by (rule filterlim_compose[of X, OF _ filterlim_subseq])
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1150
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1151
lemma convergent_subseq_convergent:
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1152
  "\<lbrakk>convergent X; subseq f\<rbrakk> \<Longrightarrow> convergent (X o f)"
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1153
  unfolding convergent_def by (auto intro: LIMSEQ_subseq_LIMSEQ)
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1154
61969
e01015e49041 more symbols;
wenzelm
parents: 61907
diff changeset
  1155
lemma limI: "X \<longlonglongrightarrow> L ==> lim X = L"
57276
49c51eeaa623 filters are easier to define with INF on filters.
hoelzl
parents: 57275
diff changeset
  1156
  by (rule tendsto_Lim) (rule trivial_limit_sequentially)
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1157
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1158
lemma 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
  1159
  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
  1160
62217
527488dc8b90 Reorganised a huge proof
paulson <lp15@cam.ac.uk>
parents: 62175
diff changeset
  1161
lemma lim_const [simp]: "lim (\<lambda>m. a) = a"
527488dc8b90 Reorganised a huge proof
paulson <lp15@cam.ac.uk>
parents: 62175
diff changeset
  1162
  by (simp add: limI)
527488dc8b90 Reorganised a huge proof
paulson <lp15@cam.ac.uk>
parents: 62175
diff changeset
  1163
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
  1164
subsubsection\<open>Increasing and Decreasing Series\<close>
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1165
61969
e01015e49041 more symbols;
wenzelm
parents: 61907
diff changeset
  1166
lemma incseq_le: "incseq X \<Longrightarrow> X \<longlonglongrightarrow> L \<Longrightarrow> X n \<le> (L::'a::linorder_topology)"
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1167
  by (metis incseq_def LIMSEQ_le_const)
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1168
61969
e01015e49041 more symbols;
wenzelm
parents: 61907
diff changeset
  1169
lemma decseq_le: "decseq X \<Longrightarrow> X \<longlonglongrightarrow> L \<Longrightarrow> (L::'a::linorder_topology) \<le> X n"
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1170
  by (metis decseq_def LIMSEQ_le_const2)
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1171
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
  1172
subsection \<open>First countable topologies\<close>
51473
1210309fddab move first_countable_topology to the HOL image
hoelzl
parents: 51471
diff changeset
  1173
1210309fddab move first_countable_topology to the HOL image
hoelzl
parents: 51471
diff changeset
  1174
class first_countable_topology = topological_space +
1210309fddab move first_countable_topology to the HOL image
hoelzl
parents: 51471
diff changeset
  1175
  assumes first_countable_basis:
1210309fddab move first_countable_topology to the HOL image
hoelzl
parents: 51471
diff changeset
  1176
    "\<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
  1177
1210309fddab move first_countable_topology to the HOL image
hoelzl
parents: 51471
diff changeset
  1178
lemma (in first_countable_topology) countable_basis_at_decseq:
1210309fddab move first_countable_topology to the HOL image
hoelzl
parents: 51471
diff changeset
  1179
  obtains A :: "nat \<Rightarrow> 'a set" where
1210309fddab move first_countable_topology to the HOL image
hoelzl
parents: 51471
diff changeset
  1180
    "\<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
  1181
    "\<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
  1182
proof atomize_elim
1210309fddab move first_countable_topology to the HOL image
hoelzl
parents: 51471
diff changeset
  1183
  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
  1184
    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
  1185
    and incl: "\<And>S. open S \<Longrightarrow> x \<in> S \<Longrightarrow> \<exists>i. A i \<subseteq> S"  by auto
63040
eb4ddd18d635 eliminated old 'def';
wenzelm
parents: 63007
diff changeset
  1186
  define F where "F n = (\<Inter>i\<le>n. A i)" for n
51473
1210309fddab move first_countable_topology to the HOL image
hoelzl
parents: 51471
diff changeset
  1187
  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
  1188
      (\<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
  1189
  proof (safe intro!: exI[of _ F])
1210309fddab move first_countable_topology to the HOL image
hoelzl
parents: 51471
diff changeset
  1190
    fix i
51480
3793c3a11378 move connected to HOL image; used to show intermediate value theorem
hoelzl
parents: 51479
diff changeset
  1191
    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
  1192
    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
  1193
  next
1210309fddab move first_countable_topology to the HOL image
hoelzl
parents: 51471
diff changeset
  1194
    fix S assume "open S" "x \<in> S"
1210309fddab move first_countable_topology to the HOL image
hoelzl
parents: 51471
diff changeset
  1195
    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
  1196
    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
  1197
      by (auto simp: F_def)
1210309fddab move first_countable_topology to the HOL image
hoelzl
parents: 51471
diff changeset
  1198
    ultimately show "eventually (\<lambda>i. F i \<subseteq> S) sequentially"
1210309fddab move first_countable_topology to the HOL image
hoelzl
parents: 51471
diff changeset
  1199
      by (auto simp: eventually_sequentially)
1210309fddab move first_countable_topology to the HOL image
hoelzl
parents: 51471
diff changeset
  1200
  qed
1210309fddab move first_countable_topology to the HOL image
hoelzl
parents: 51471
diff changeset
  1201
qed
1210309fddab move first_countable_topology to the HOL image
hoelzl
parents: 51471
diff changeset
  1202
57448
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
  1203
lemma (in first_countable_topology) nhds_countable:
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
  1204
  obtains X :: "nat \<Rightarrow> 'a set"
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
  1205
  where "decseq X" "\<And>n. open (X n)" "\<And>n. x \<in> X n" "nhds x = (INF n. principal (X n))"
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
  1206
proof -
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
  1207
  from first_countable_basis obtain A :: "nat \<Rightarrow> 'a set"
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
  1208
    where A: "\<And>n. x \<in> A n" "\<And>n. open (A n)" "\<And>S. open S \<Longrightarrow> x \<in> S \<Longrightarrow> \<exists>i. A i \<subseteq> S"
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
  1209
    by metis
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
  1210
  show thesis
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
  1211
  proof
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
  1212
    show "decseq (\<lambda>n. \<Inter>i\<le>n. A i)"
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
  1213
      by (auto simp: decseq_def)
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
  1214
    show "\<And>n. x \<in> (\<Inter>i\<le>n. A i)" "\<And>n. open (\<Inter>i\<le>n. A i)"
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
  1215
      using A by auto
60585
48fdff264eb2 tuned whitespace;
wenzelm
parents: 60182
diff changeset
  1216
    show "nhds x = (INF n. principal (\<Inter>i\<le>n. A i))"
57448
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
  1217
      using A unfolding nhds_def
62343
24106dc44def prefer abbreviations for compound operators INFIMUM and SUPREMUM
haftmann
parents: 62217
diff changeset
  1218
      apply -
24106dc44def prefer abbreviations for compound operators INFIMUM and SUPREMUM
haftmann
parents: 62217
diff changeset
  1219
      apply (rule INF_eq)
57448
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
  1220
      apply simp_all
62343
24106dc44def prefer abbreviations for compound operators INFIMUM and SUPREMUM
haftmann
parents: 62217
diff changeset
  1221
      apply fastforce
24106dc44def prefer abbreviations for compound operators INFIMUM and SUPREMUM
haftmann
parents: 62217
diff changeset
  1222
      apply (intro exI [of _ "\<Inter>i\<le>n. A i" for n] conjI open_INT)
57448
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
  1223
      apply auto
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
  1224
      done
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
  1225
  qed
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
  1226
qed
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57447
diff changeset
  1227
51473
1210309fddab move first_countable_topology to the HOL image
hoelzl
parents: 51471
diff changeset
  1228
lemma (in first_countable_topology) countable_basis:
1210309fddab move first_countable_topology to the HOL image
hoelzl
parents: 51471
diff changeset
  1229
  obtains A :: "nat \<Rightarrow> 'a set" where
1210309fddab move first_countable_topology to the HOL image
hoelzl
parents: 51471
diff changeset
  1230
    "\<And>i. open (A i)" "\<And>i. x \<in> A i"
61969
e01015e49041 more symbols;
wenzelm
parents: 61907
diff changeset
  1231
    "\<And>F. (\<forall>n. F n \<in> A n) \<Longrightarrow> F \<longlonglongrightarrow> x"
51473
1210309fddab move first_countable_topology to the HOL image
hoelzl
parents: 51471
diff changeset
  1232
proof atomize_elim
53381
355a4cac5440 tuned proofs -- less guessing;
wenzelm
parents: 53374
diff changeset
  1233
  obtain A :: "nat \<Rightarrow> 'a set" where A:
355a4cac5440 tuned proofs -- less guessing;
wenzelm
parents: 53374
diff changeset
  1234
    "\<And>i. open (A i)"
355a4cac5440 tuned proofs -- less guessing;
wenzelm
parents: 53374
diff changeset
  1235
    "\<And>i. x \<in> A i"
355a4cac5440 tuned proofs -- less guessing;
wenzelm
parents: 53374
diff changeset
  1236
    "\<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
  1237
    by (rule countable_basis_at_decseq) blast
355a4cac5440 tuned proofs -- less guessing;
wenzelm
parents: 53374
diff changeset
  1238
  {
355a4cac5440 tuned proofs -- less guessing;
wenzelm
parents: 53374
diff changeset
  1239
    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
  1240
    with A(3)[of S] have "eventually (\<lambda>n. F n \<in> S) sequentially"
61810
3c5040d5694a sorted out eventually_mono
paulson <lp15@cam.ac.uk>
parents: 61806
diff changeset
  1241
      by (auto elim: eventually_mono simp: subset_eq)
53381
355a4cac5440 tuned proofs -- less guessing;
wenzelm
parents: 53374
diff changeset
  1242
  }
61969
e01015e49041 more symbols;
wenzelm
parents: 61907
diff changeset
  1243
  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 \<longlonglongrightarrow> x)"
51473
1210309fddab move first_countable_topology to the HOL image
hoelzl
parents: 51471
diff changeset
  1244
    by (intro exI[of _ A]) (auto simp: tendsto_def)
1210309fddab move first_countable_topology to the HOL image
hoelzl
parents: 51471
diff changeset
  1245
qed
1210309fddab move first_countable_topology to the HOL image
hoelzl
parents: 51471
diff changeset
  1246
1210309fddab move first_countable_topology to the HOL image
hoelzl
parents: 51471
diff changeset
  1247
lemma (in first_countable_topology) sequentially_imp_eventually_nhds_within:
61969
e01015e49041 more symbols;
wenzelm
parents: 61907
diff changeset
  1248
  assumes "\<forall>f. (\<forall>n. f n \<in> s) \<and> f \<longlonglongrightarrow> 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
  1249
  shows "eventually P (inf (nhds a) (principal s))"
51473
1210309fddab move first_countable_topology to the HOL image
hoelzl
parents: 51471
diff changeset
  1250
proof (rule ccontr)
53381
355a4cac5440 tuned proofs -- less guessing;
wenzelm
parents: 53374
diff changeset
  1251
  obtain A :: "nat \<Rightarrow> 'a set" where A:
355a4cac5440 tuned proofs -- less guessing;
wenzelm
parents: 53374
diff changeset
  1252
    "\<And>i. open (A i)"
355a4cac5440 tuned proofs -- less guessing;
wenzelm
parents: 53374
diff changeset
  1253
    "\<And>i. a \<in> A i"
61969
e01015e49041 more symbols;
wenzelm
parents: 61907
diff changeset
  1254
    "\<And>F. \<forall>n. F n \<in> A n \<Longrightarrow> F \<longlonglongrightarrow> a"
53381
355a4cac5440 tuned proofs -- less guessing;
wenzelm
parents: 53374
diff changeset
  1255
    by (rule countable_basis) blast
355a4cac5440 tuned proofs -- less guessing;
wenzelm
parents: 53374
diff changeset
  1256
  assume "\<not> ?thesis"
51473
1210309fddab move first_countable_topology to the HOL image
hoelzl
parents: 51471
diff changeset
  1257
  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
  1258
    unfolding eventually_inf_principal eventually_nhds by (intro choice) fastforce
53381
355a4cac5440 tuned proofs -- less guessing;
wenzelm
parents: 53374
diff changeset
  1259
  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
  1260
    by blast
61969
e01015e49041 more symbols;
wenzelm
parents: 61907
diff changeset
  1261
  with A have "F \<longlonglongrightarrow> a" by auto
51473
1210309fddab move first_countable_topology to the HOL image
hoelzl
parents: 51471
diff changeset
  1262
  hence "eventually (\<lambda>n. P (F n)) sequentially"
1210309fddab move first_countable_topology to the HOL image
hoelzl
parents: 51471
diff changeset
  1263
    using assms F0 by simp
1210309fddab move first_countable_topology to the HOL image
hoelzl
parents: 51471
diff changeset
  1264
  thus "False" by (simp add: F3)
1210309fddab move first_countable_topology to the HOL image
hoelzl
parents: 51471
diff changeset
  1265
qed
1210309fddab move first_countable_topology to the HOL image
hoelzl
parents: 51471
diff changeset
  1266
1210309fddab move first_countable_topology to the HOL image
hoelzl
parents: 51471
diff changeset
  1267
lemma (in first_countable_topology) eventually_nhds_within_iff_sequentially:
62102
877463945ce9 fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents: 62101
diff changeset
  1268
  "eventually P (inf (nhds a) (principal s)) \<longleftrightarrow>
61969
e01015e49041 more symbols;
wenzelm
parents: 61907
diff changeset
  1269
    (\<forall>f. (\<forall>n. f n \<in> s) \<and> f \<longlonglongrightarrow> a \<longrightarrow> eventually (\<lambda>n. P (f n)) sequentially)"
51473
1210309fddab move first_countable_topology to the HOL image
hoelzl
parents: 51471
diff changeset
  1270
proof (safe intro!: sequentially_imp_eventually_nhds_within)
62102
877463945ce9 fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents: 62101
diff changeset
  1271
  assume "eventually P (inf (nhds a) (principal s))"
51473
1210309fddab move first_countable_topology to the HOL image
hoelzl
parents: 51471
diff changeset
  1272
  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
  1273
    by (auto simp: eventually_inf_principal eventually_nhds)
61969
e01015e49041 more symbols;
wenzelm
parents: 61907
diff changeset
  1274
  moreover fix f assume "\<forall>n. f n \<in> s" "f \<longlonglongrightarrow> a"
51473
1210309fddab move first_countable_topology to the HOL image
hoelzl
parents: 51471
diff changeset
  1275
  ultimately show "eventually (\<lambda>n. P (f n)) sequentially"
61810
3c5040d5694a sorted out eventually_mono
paulson <lp15@cam.ac.uk>
parents: 61806
diff changeset
  1276
    by (auto dest!: topological_tendstoD elim: eventually_mono)
51473
1210309fddab move first_countable_topology to the HOL image
hoelzl
parents: 51471
diff changeset
  1277
qed
1210309fddab move first_countable_topology to the HOL image
hoelzl
parents: 51471
diff changeset
  1278
1210309fddab move first_countable_topology to the HOL image
hoelzl
parents: 51471
diff changeset
  1279
lemma (in first_countable_topology) eventually_nhds_iff_sequentially:
61969
e01015e49041 more symbols;
wenzelm
parents: 61907
diff changeset
  1280
  "eventually P (nhds a) \<longleftrightarrow> (\<forall>f. f \<longlonglongrightarrow> a \<longrightarrow> eventually (\<lambda>n. P (f n)) sequentially)"
51473
1210309fddab move first_countable_topology to the HOL image
hoelzl
parents: 51471
diff changeset
  1281
  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
  1282
57447
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
  1283
lemma tendsto_at_iff_sequentially:
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
  1284
  fixes f :: "'a :: first_countable_topology \<Rightarrow> _"
61973
0c7e865fa7cb more symbols;
wenzelm
parents: 61969
diff changeset
  1285
  shows "(f \<longlongrightarrow> a) (at x within s) \<longleftrightarrow> (\<forall>X. (\<forall>i. X i \<in> s - {x}) \<longrightarrow> X \<longlonglongrightarrow> x \<longrightarrow> ((f \<circ> X) \<longlonglongrightarrow> a))"
57447
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
  1286
  unfolding filterlim_def[of _ "nhds a"] le_filter_def eventually_filtermap at_within_def eventually_nhds_within_iff_sequentially comp_def
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
  1287
  by metis
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
  1288
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
  1289
subsection \<open>Function limit at a point\<close>
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1290
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1291
abbreviation
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1292
  LIM :: "('a::topological_space \<Rightarrow> 'b::topological_space) \<Rightarrow> 'a \<Rightarrow> 'b \<Rightarrow> bool"
61976
3a27957ac658 more symbols;
wenzelm
parents: 61973
diff changeset
  1293
        ("((_)/ \<midarrow>(_)/\<rightarrow> (_))" [60, 0, 60] 60) where
3a27957ac658 more symbols;
wenzelm
parents: 61973
diff changeset
  1294
  "f \<midarrow>a\<rightarrow> L \<equiv> (f \<longlongrightarrow> L) (at a)"
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1295
61976
3a27957ac658 more symbols;
wenzelm
parents: 61973
diff changeset
  1296
lemma tendsto_within_open: "a \<in> S \<Longrightarrow> open S \<Longrightarrow> (f \<longlongrightarrow> l) (at a within S) \<longleftrightarrow> (f \<midarrow>a\<rightarrow> 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
  1297
  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
  1298
62397
5ae24f33d343 Substantial new material for multivariate analysis. Also removal of some duplicates.
paulson <lp15@cam.ac.uk>
parents: 62381
diff changeset
  1299
lemma tendsto_within_open_NO_MATCH:
5ae24f33d343 Substantial new material for multivariate analysis. Also removal of some duplicates.
paulson <lp15@cam.ac.uk>
parents: 62381
diff changeset
  1300
  fixes f :: "'a::topological_space \<Rightarrow> 'b::topological_space"
5ae24f33d343 Substantial new material for multivariate analysis. Also removal of some duplicates.
paulson <lp15@cam.ac.uk>
parents: 62381
diff changeset
  1301
  shows "a \<in> S \<Longrightarrow> NO_MATCH UNIV S \<Longrightarrow> open S \<Longrightarrow> (f \<longlongrightarrow> l)(at a within S) \<longleftrightarrow> (f \<longlongrightarrow> l)(at a)"
5ae24f33d343 Substantial new material for multivariate analysis. Also removal of some duplicates.
paulson <lp15@cam.ac.uk>
parents: 62381
diff changeset
  1302
using tendsto_within_open by blast
5ae24f33d343 Substantial new material for multivariate analysis. Also removal of some duplicates.
paulson <lp15@cam.ac.uk>
parents: 62381
diff changeset
  1303
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1304
lemma LIM_const_not_eq[tendsto_intros]:
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1305
  fixes a :: "'a::perfect_space"
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1306
  fixes k L :: "'b::t2_space"
61976
3a27957ac658 more symbols;
wenzelm
parents: 61973
diff changeset
  1307
  shows "k \<noteq> L \<Longrightarrow> \<not> (\<lambda>x. k) \<midarrow>a\<rightarrow> L"
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1308
  by (simp add: tendsto_const_iff)
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1309
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1310
lemmas LIM_not_zero = LIM_const_not_eq [where L = 0]
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1311
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1312
lemma LIM_const_eq:
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1313
  fixes a :: "'a::perfect_space"
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1314
  fixes k L :: "'b::t2_space"
61976
3a27957ac658 more symbols;
wenzelm
parents: 61973
diff changeset
  1315
  shows "(\<lambda>x. k) \<midarrow>a\<rightarrow> L \<Longrightarrow> k = L"
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1316
  by (simp add: tendsto_const_iff)
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1317
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1318
lemma LIM_unique:
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1319
  fixes a :: "'a::perfect_space" and L M :: "'b::t2_space"
61976
3a27957ac658 more symbols;
wenzelm
parents: 61973
diff changeset
  1320
  shows "f \<midarrow>a\<rightarrow> L \<Longrightarrow> f \<midarrow>a\<rightarrow> M \<Longrightarrow> L = M"
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1321
  using at_neq_bot by (rule tendsto_unique)
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1322
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
  1323
text \<open>Limits are equal for functions equal except at limit point\<close>
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1324
61976
3a27957ac658 more symbols;
wenzelm
parents: 61973
diff changeset
  1325
lemma LIM_equal: "\<forall>x. x \<noteq> a --> (f x = g x) \<Longrightarrow> (f \<midarrow>a\<rightarrow> l) \<longleftrightarrow> (g \<midarrow>a\<rightarrow> l)"
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1326
  unfolding tendsto_def eventually_at_topological by simp
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1327
61976
3a27957ac658 more symbols;
wenzelm
parents: 61973
diff changeset
  1328
lemma LIM_cong: "a = b \<Longrightarrow> (\<And>x. x \<noteq> b \<Longrightarrow> f x = g x) \<Longrightarrow> l = m \<Longrightarrow> (f \<midarrow>a\<rightarrow> l) \<longleftrightarrow> (g \<midarrow>b\<rightarrow> m)"
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1329
  by (simp add: LIM_equal)
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1330
61976
3a27957ac658 more symbols;
wenzelm
parents: 61973
diff changeset
  1331
lemma LIM_cong_limit: "f \<midarrow>x\<rightarrow> L \<Longrightarrow> K = L \<Longrightarrow> f \<midarrow>x\<rightarrow> K"
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1332
  by simp
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1333
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1334
lemma tendsto_at_iff_tendsto_nhds:
61976
3a27957ac658 more symbols;
wenzelm
parents: 61973
diff changeset
  1335
  "g \<midarrow>l\<rightarrow> g l \<longleftrightarrow> (g \<longlongrightarrow> 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
  1336
  unfolding tendsto_def eventually_at_filter
61810
3c5040d5694a sorted out eventually_mono
paulson <lp15@cam.ac.uk>
parents: 61806
diff changeset
  1337
  by (intro ext all_cong imp_cong) (auto elim!: eventually_mono)
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1338
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1339
lemma tendsto_compose:
61976
3a27957ac658 more symbols;
wenzelm
parents: 61973
diff changeset
  1340
  "g \<midarrow>l\<rightarrow> g l \<Longrightarrow> (f \<longlongrightarrow> l) F \<Longrightarrow> ((\<lambda>x. g (f x)) \<longlongrightarrow> g l) F"
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1341
  unfolding tendsto_at_iff_tendsto_nhds by (rule filterlim_compose[of g])
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1342
61976
3a27957ac658 more symbols;
wenzelm
parents: 61973
diff changeset
  1343
lemma LIM_o: "\<lbrakk>g \<midarrow>l\<rightarrow> g l; f \<midarrow>a\<rightarrow> l\<rbrakk> \<Longrightarrow> (g \<circ> f) \<midarrow>a\<rightarrow> g l"
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1344
  unfolding o_def by (rule tendsto_compose)
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
lemma tendsto_compose_eventually:
61976
3a27957ac658 more symbols;
wenzelm
parents: 61973
diff changeset
  1347
  "g \<midarrow>l\<rightarrow> m \<Longrightarrow> (f \<longlongrightarrow> l) F \<Longrightarrow> eventually (\<lambda>x. f x \<noteq> l) F \<Longrightarrow> ((\<lambda>x. g (f x)) \<longlongrightarrow> m) F"
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1348
  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
  1349
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1350
lemma LIM_compose_eventually:
61976
3a27957ac658 more symbols;
wenzelm
parents: 61973
diff changeset
  1351
  assumes f: "f \<midarrow>a\<rightarrow> b"
3a27957ac658 more symbols;
wenzelm
parents: 61973
diff changeset
  1352
  assumes g: "g \<midarrow>b\<rightarrow> c"
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1353
  assumes inj: "eventually (\<lambda>x. f x \<noteq> b) (at a)"
61976
3a27957ac658 more symbols;
wenzelm
parents: 61973
diff changeset
  1354
  shows "(\<lambda>x. g (f x)) \<midarrow>a\<rightarrow> c"
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1355
  using g f inj by (rule tendsto_compose_eventually)
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1356
61973
0c7e865fa7cb more symbols;
wenzelm
parents: 61969
diff changeset
  1357
lemma tendsto_compose_filtermap: "((g \<circ> f) \<longlongrightarrow> T) F \<longleftrightarrow> (g \<longlongrightarrow> T) (filtermap f F)"
57447
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
  1358
  by (simp add: filterlim_def filtermap_filtermap comp_def)
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
  1359
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
  1360
subsubsection \<open>Relation of LIM and LIMSEQ\<close>
51473
1210309fddab move first_countable_topology to the HOL image
hoelzl
parents: 51471
diff changeset
  1361
1210309fddab move first_countable_topology to the HOL image
hoelzl
parents: 51471
diff changeset
  1362
lemma (in first_countable_topology) sequentially_imp_eventually_within:
61969
e01015e49041 more symbols;
wenzelm
parents: 61907
diff changeset
  1363
  "(\<forall>f. (\<forall>n. f n \<in> s \<and> f n \<noteq> a) \<and> f \<longlonglongrightarrow> a \<longrightarrow> eventually (\<lambda>n. P (f n)) sequentially) \<Longrightarrow>
51473
1210309fddab move first_countable_topology to the HOL image
hoelzl
parents: 51471
diff changeset
  1364
    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
  1365
  unfolding at_within_def
51473
1210309fddab move first_countable_topology to the HOL image
hoelzl
parents: 51471
diff changeset
  1366
  by (intro sequentially_imp_eventually_nhds_within) auto
1210309fddab move first_countable_topology to the HOL image
hoelzl
parents: 51471
diff changeset
  1367
1210309fddab move first_countable_topology to the HOL image
hoelzl
parents: 51471
diff changeset
  1368
lemma (in first_countable_topology) sequentially_imp_eventually_at:
61969
e01015e49041 more symbols;
wenzelm
parents: 61907
diff changeset
  1369
  "(\<forall>f. (\<forall>n. f n \<noteq> a) \<and> f \<longlonglongrightarrow> a \<longrightarrow> eventually (\<lambda>n. P (f n)) sequentially) \<Longrightarrow> eventually P (at a)"
51473
1210309fddab move first_countable_topology to the HOL image
hoelzl
parents: 51471
diff changeset
  1370
  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
  1371
1210309fddab move first_countable_topology to the HOL image
hoelzl
parents: 51471
diff changeset
  1372
lemma LIMSEQ_SEQ_conv1:
1210309fddab move first_countable_topology to the HOL image
hoelzl
parents: 51471
diff changeset
  1373
  fixes f :: "'a::topological_space \<Rightarrow> 'b::topological_space"
61976
3a27957ac658 more symbols;
wenzelm
parents: 61973
diff changeset
  1374
  assumes f: "f \<midarrow>a\<rightarrow> l"
61969
e01015e49041 more symbols;
wenzelm
parents: 61907
diff changeset
  1375
  shows "\<forall>S. (\<forall>n. S n \<noteq> a) \<and> S \<longlonglongrightarrow> a \<longrightarrow> (\<lambda>n. f (S n)) \<longlonglongrightarrow> l"
51473
1210309fddab move first_countable_topology to the HOL image
hoelzl
parents: 51471
diff changeset
  1376
  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
  1377
1210309fddab move first_countable_topology to the HOL image
hoelzl
parents: 51471
diff changeset
  1378
lemma LIMSEQ_SEQ_conv2:
1210309fddab move first_countable_topology to the HOL image
hoelzl
parents: 51471
diff changeset
  1379
  fixes f :: "'a::first_countable_topology \<Rightarrow> 'b::topological_space"
61969
e01015e49041 more symbols;
wenzelm
parents: 61907
diff changeset
  1380
  assumes "\<forall>S. (\<forall>n. S n \<noteq> a) \<and> S \<longlonglongrightarrow> a \<longrightarrow> (\<lambda>n. f (S n)) \<longlonglongrightarrow> l"
61976
3a27957ac658 more symbols;
wenzelm
parents: 61973
diff changeset
  1381
  shows "f \<midarrow>a\<rightarrow> l"
51473
1210309fddab move first_countable_topology to the HOL image
hoelzl
parents: 51471
diff changeset
  1382
  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
  1383
1210309fddab move first_countable_topology to the HOL image
hoelzl
parents: 51471
diff changeset
  1384
lemma LIMSEQ_SEQ_conv:
61969
e01015e49041 more symbols;
wenzelm
parents: 61907
diff changeset
  1385
  "(\<forall>S. (\<forall>n. S n \<noteq> a) \<and> S \<longlonglongrightarrow> (a::'a::first_countable_topology) \<longrightarrow> (\<lambda>n. X (S n)) \<longlonglongrightarrow> L) =
61976
3a27957ac658 more symbols;
wenzelm
parents: 61973
diff changeset
  1386
   (X \<midarrow>a\<rightarrow> (L::'b::topological_space))"
51473
1210309fddab move first_countable_topology to the HOL image
hoelzl
parents: 51471
diff changeset
  1387
  using LIMSEQ_SEQ_conv2 LIMSEQ_SEQ_conv1 ..
1210309fddab move first_countable_topology to the HOL image
hoelzl
parents: 51471
diff changeset
  1388
57025
e7fd64f82876 add various lemmas
hoelzl
parents: 56949
diff changeset
  1389
lemma sequentially_imp_eventually_at_left:
60172
423273355b55 rename continuous and down_continuous in Order_Continuity to sup_/inf_continuous; relate them with topological continuity
hoelzl
parents: 60150
diff changeset
  1390
  fixes a :: "'a :: {linorder_topology, first_countable_topology}"
57025
e7fd64f82876 add various lemmas
hoelzl
parents: 56949
diff changeset
  1391
  assumes b[simp]: "b < a"
61969
e01015e49041 more symbols;
wenzelm
parents: 61907
diff changeset
  1392
  assumes *: "\<And>f. (\<And>n. b < f n) \<Longrightarrow> (\<And>n. f n < a) \<Longrightarrow> incseq f \<Longrightarrow> f \<longlonglongrightarrow> a \<Longrightarrow> eventually (\<lambda>n. P (f n)) sequentially"
57025
e7fd64f82876 add various lemmas
hoelzl
parents: 56949
diff changeset
  1393
  shows "eventually P (at_left a)"
e7fd64f82876 add various lemmas
hoelzl
parents: 56949
diff changeset
  1394
proof (safe intro!: sequentially_imp_eventually_within)
61969
e01015e49041 more symbols;
wenzelm
parents: 61907
diff changeset
  1395
  fix X assume X: "\<forall>n. X n \<in> {..< a} \<and> X n \<noteq> a" "X \<longlonglongrightarrow> a"
57025
e7fd64f82876 add various lemmas
hoelzl
parents: 56949
diff changeset
  1396
  show "eventually (\<lambda>n. P (X n)) sequentially"
e7fd64f82876 add various lemmas
hoelzl
parents: 56949
diff changeset
  1397
  proof (rule ccontr)
57447
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
  1398
    assume neg: "\<not> eventually (\<lambda>n. P (X n)) sequentially"
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
  1399
    have "\<exists>s. \<forall>n. (\<not> P (X (s n)) \<and> b < X (s n)) \<and> (X (s n) \<le> X (s (Suc n)) \<and> Suc (s n) \<le> s (Suc n))"
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
  1400
    proof (rule dependent_nat_choice)
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
  1401
      have "\<not> eventually (\<lambda>n. b < X n \<longrightarrow> P (X n)) sequentially"
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
  1402
        by (intro not_eventually_impI neg order_tendstoD(1) [OF X(2) b])
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
  1403
      then show "\<exists>x. \<not> P (X x) \<and> b < X x"
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
  1404
        by (auto dest!: not_eventuallyD)
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
  1405
    next
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
  1406
      fix x n
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
  1407
      have "\<not> eventually (\<lambda>n. Suc x \<le> n \<longrightarrow> b < X n \<longrightarrow> X x < X n \<longrightarrow> P (X n)) sequentially"
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
  1408
        using X by (intro not_eventually_impI order_tendstoD(1)[OF X(2)] eventually_ge_at_top neg) auto
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
  1409
      then show "\<exists>n. (\<not> P (X n) \<and> b < X n) \<and> (X x \<le> X n \<and> Suc x \<le> n)"
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
  1410
        by (auto dest!: not_eventuallyD)
57025
e7fd64f82876 add various lemmas
hoelzl
parents: 56949
diff changeset
  1411
    qed
57447
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
  1412
    then guess s ..
61969
e01015e49041 more symbols;
wenzelm
parents: 61907
diff changeset
  1413
    then have "\<And>n. b < X (s n)" "\<And>n. X (s n) < a" "incseq (\<lambda>n. X (s n))" "(\<lambda>n. X (s n)) \<longlonglongrightarrow> a" "\<And>n. \<not> P (X (s n))"
e01015e49041 more symbols;
wenzelm
parents: 61907
diff changeset
  1414
      using X by (auto simp: subseq_Suc_iff Suc_le_eq incseq_Suc_iff intro!: LIMSEQ_subseq_LIMSEQ[OF \<open>X \<longlonglongrightarrow> a\<close>, unfolded comp_def])
57447
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
  1415
    from *[OF this(1,2,3,4)] this(5) show False by auto
57025
e7fd64f82876 add various lemmas
hoelzl
parents: 56949
diff changeset
  1416
  qed
e7fd64f82876 add various lemmas
hoelzl
parents: 56949
diff changeset
  1417
qed
e7fd64f82876 add various lemmas
hoelzl
parents: 56949
diff changeset
  1418
e7fd64f82876 add various lemmas
hoelzl
parents: 56949
diff changeset
  1419
lemma tendsto_at_left_sequentially:
60172
423273355b55 rename continuous and down_continuous in Order_Continuity to sup_/inf_continuous; relate them with topological continuity
hoelzl
parents: 60150
diff changeset
  1420
  fixes a :: "_ :: {linorder_topology, first_countable_topology}"
57025
e7fd64f82876 add various lemmas
hoelzl
parents: 56949
diff changeset
  1421
  assumes "b < a"
61969
e01015e49041 more symbols;
wenzelm
parents: 61907
diff changeset
  1422
  assumes *: "\<And>S. (\<And>n. S n < a) \<Longrightarrow> (\<And>n. b < S n) \<Longrightarrow> incseq S \<Longrightarrow> S \<longlonglongrightarrow> a \<Longrightarrow> (\<lambda>n. X (S n)) \<longlonglongrightarrow> L"
61973
0c7e865fa7cb more symbols;
wenzelm
parents: 61969
diff changeset
  1423
  shows "(X \<longlongrightarrow> L) (at_left a)"
57025
e7fd64f82876 add various lemmas
hoelzl
parents: 56949
diff changeset
  1424
  using assms unfolding tendsto_def [where l=L]
e7fd64f82876 add various lemmas
hoelzl
parents: 56949
diff changeset
  1425
  by (simp add: sequentially_imp_eventually_at_left)
e7fd64f82876 add various lemmas
hoelzl
parents: 56949
diff changeset
  1426
57447
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
  1427
lemma sequentially_imp_eventually_at_right:
60172
423273355b55 rename continuous and down_continuous in Order_Continuity to sup_/inf_continuous; relate them with topological continuity
hoelzl
parents: 60150
diff changeset
  1428
  fixes a :: "'a :: {linorder_topology, first_countable_topology}"
57447
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
  1429
  assumes b[simp]: "a < b"
61969
e01015e49041 more symbols;
wenzelm
parents: 61907
diff changeset
  1430
  assumes *: "\<And>f. (\<And>n. a < f n) \<Longrightarrow> (\<And>n. f n < b) \<Longrightarrow> decseq f \<Longrightarrow> f \<longlonglongrightarrow> a \<Longrightarrow> eventually (\<lambda>n. P (f n)) sequentially"
57447
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
  1431
  shows "eventually P (at_right a)"
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
  1432
proof (safe intro!: sequentially_imp_eventually_within)
61969
e01015e49041 more symbols;
wenzelm
parents: 61907
diff changeset
  1433
  fix X assume X: "\<forall>n. X n \<in> {a <..} \<and> X n \<noteq> a" "X \<longlonglongrightarrow> a"
57447
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
  1434
  show "eventually (\<lambda>n. P (X n)) sequentially"
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
  1435
  proof (rule ccontr)
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
  1436
    assume neg: "\<not> eventually (\<lambda>n. P (X n)) sequentially"
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
  1437
    have "\<exists>s. \<forall>n. (\<not> P (X (s n)) \<and> X (s n) < b) \<and> (X (s (Suc n)) \<le> X (s n) \<and> Suc (s n) \<le> s (Suc n))"
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
  1438
    proof (rule dependent_nat_choice)
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
  1439
      have "\<not> eventually (\<lambda>n. X n < b \<longrightarrow> P (X n)) sequentially"
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
  1440
        by (intro not_eventually_impI neg order_tendstoD(2) [OF X(2) b])
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
  1441
      then show "\<exists>x. \<not> P (X x) \<and> X x < b"
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
  1442
        by (auto dest!: not_eventuallyD)
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
  1443
    next
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
  1444
      fix x n
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
  1445
      have "\<not> eventually (\<lambda>n. Suc x \<le> n \<longrightarrow> X n < b \<longrightarrow> X n < X x \<longrightarrow> P (X n)) sequentially"
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
  1446
        using X by (intro not_eventually_impI order_tendstoD(2)[OF X(2)] eventually_ge_at_top neg) auto
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
  1447
      then show "\<exists>n. (\<not> P (X n) \<and> X n < b) \<and> (X n \<le> X x \<and> Suc x \<le> n)"
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
  1448
        by (auto dest!: not_eventuallyD)
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
  1449
    qed
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
  1450
    then guess s ..
61969
e01015e49041 more symbols;
wenzelm
parents: 61907
diff changeset
  1451
    then have "\<And>n. a < X (s n)" "\<And>n. X (s n) < b" "decseq (\<lambda>n. X (s n))" "(\<lambda>n. X (s n)) \<longlonglongrightarrow> a" "\<And>n. \<not> P (X (s n))"
e01015e49041 more symbols;
wenzelm
parents: 61907
diff changeset
  1452
      using X by (auto simp: subseq_Suc_iff Suc_le_eq decseq_Suc_iff intro!: LIMSEQ_subseq_LIMSEQ[OF \<open>X \<longlonglongrightarrow> a\<close>, unfolded comp_def])
57447
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
  1453
    from *[OF this(1,2,3,4)] this(5) show False by auto
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
  1454
  qed
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
  1455
qed
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
  1456
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
  1457
lemma tendsto_at_right_sequentially:
60172
423273355b55 rename continuous and down_continuous in Order_Continuity to sup_/inf_continuous; relate them with topological continuity
hoelzl
parents: 60150
diff changeset
  1458
  fixes a :: "_ :: {linorder_topology, first_countable_topology}"
57447
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
  1459
  assumes "a < b"
61969
e01015e49041 more symbols;
wenzelm
parents: 61907
diff changeset
  1460
  assumes *: "\<And>S. (\<And>n. a < S n) \<Longrightarrow> (\<And>n. S n < b) \<Longrightarrow> decseq S \<Longrightarrow> S \<longlonglongrightarrow> a \<Longrightarrow> (\<lambda>n. X (S n)) \<longlonglongrightarrow> L"
61973
0c7e865fa7cb more symbols;
wenzelm
parents: 61969
diff changeset
  1461
  shows "(X \<longlongrightarrow> L) (at_right a)"
57447
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
  1462
  using assms unfolding tendsto_def [where l=L]
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
  1463
  by (simp add: sequentially_imp_eventually_at_right)
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
  1464
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
  1465
subsection \<open>Continuity\<close>
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1466
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
  1467
subsubsection \<open>Continuity on a set\<close>
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
  1468
270b21f3ae0a move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents: 51474
diff changeset
  1469
definition continuous_on :: "'a set \<Rightarrow> ('a :: topological_space \<Rightarrow> 'b :: topological_space) \<Rightarrow> bool" where
61973
0c7e865fa7cb more symbols;
wenzelm
parents: 61969
diff changeset
  1470
  "continuous_on s f \<longleftrightarrow> (\<forall>x\<in>s. (f \<longlongrightarrow> f x) (at x within s))"
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
  1471
51481
ef949192e5d6 move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents: 51480
diff changeset
  1472
lemma continuous_on_cong [cong]:
ef949192e5d6 move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents: 51480
diff changeset
  1473
  "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
  1474
  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
  1475
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
  1476
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
  1477
  "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
  1478
    (\<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
  1479
  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
  1480
270b21f3ae0a move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents: 51474
diff changeset
  1481
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
  1482
  "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
  1483
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
  1484
  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
  1485
  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
  1486
    by (auto simp: continuous_on_topological subset_eq Ball_def imp_conjL)
53381
355a4cac5440 tuned proofs -- less guessing;
wenzelm
parents: 53374
diff changeset
  1487
  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
  1488
    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
  1489
  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
  1490
    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
  1491
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
  1492
  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
  1493
  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
  1494
    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
  1495
  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
  1496
    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
  1497
    with B obtain A where A: "open A" "A \<inter> s = f -` B \<inter> s" by auto
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
  1498
    with \<open>x \<in> s\<close> \<open>f x \<in> B\<close> show "\<exists>A. open A \<and> x \<in> A \<and> (\<forall>y\<in>s. y \<in> A \<longrightarrow> f y \<in> B)"
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
  1499
      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
  1500
  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
  1501
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
  1502
51481
ef949192e5d6 move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents: 51480
diff changeset
  1503
lemma continuous_on_open_vimage:
ef949192e5d6 move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents: 51480
diff changeset
  1504
  "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
  1505
  unfolding continuous_on_open_invariant
ef949192e5d6 move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents: 51480
diff changeset
  1506
  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
  1507
55734
3f5b2745d659 More complex-related lemmas
paulson <lp15@cam.ac.uk>
parents: 55642
diff changeset
  1508
corollary continuous_imp_open_vimage:
3f5b2745d659 More complex-related lemmas
paulson <lp15@cam.ac.uk>
parents: 55642
diff changeset
  1509
  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
  1510
    shows "open (f -` B)"
3f5b2745d659 More complex-related lemmas
paulson <lp15@cam.ac.uk>
parents: 55642
diff changeset
  1511
by (metis assms continuous_on_open_vimage le_iff_inf)
3f5b2745d659 More complex-related lemmas
paulson <lp15@cam.ac.uk>
parents: 55642
diff changeset
  1512
56371
fb9ae0727548 extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents: 56329
diff changeset
  1513
corollary open_vimage[continuous_intros]:
55775
1557a391a858 A bit of tidying up
paulson <lp15@cam.ac.uk>
parents: 55734
diff changeset
  1514
  assumes "open s" and "continuous_on UNIV f"
1557a391a858 A bit of tidying up
paulson <lp15@cam.ac.uk>
parents: 55734
diff changeset
  1515
  shows "open (f -` s)"
1557a391a858 A bit of tidying up
paulson <lp15@cam.ac.uk>
parents: 55734
diff changeset
  1516
  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
  1517
  by simp
1557a391a858 A bit of tidying up
paulson <lp15@cam.ac.uk>
parents: 55734
diff changeset
  1518
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
  1519
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
  1520
  "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
  1521
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
  1522
  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
  1523
    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
  1524
  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
  1525
    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
  1526
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
  1527
51481
ef949192e5d6 move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents: 51480
diff changeset
  1528
lemma continuous_on_closed_vimage:
ef949192e5d6 move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents: 51480
diff changeset
  1529
  "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
  1530
  unfolding continuous_on_closed_invariant
ef949192e5d6 move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents: 51480
diff changeset
  1531
  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
  1532
61426
d53db136e8fd new material on path_component_sets, inside, outside, etc. And more default simprules
paulson <lp15@cam.ac.uk>
parents: 61342
diff changeset
  1533
corollary closed_vimage_Int[continuous_intros]:
d53db136e8fd new material on path_component_sets, inside, outside, etc. And more default simprules
paulson <lp15@cam.ac.uk>
parents: 61342
diff changeset
  1534
  assumes "closed s" and "continuous_on t f" and t: "closed t"
d53db136e8fd new material on path_component_sets, inside, outside, etc. And more default simprules
paulson <lp15@cam.ac.uk>
parents: 61342
diff changeset
  1535
  shows "closed (f -` s \<inter> t)"
d53db136e8fd new material on path_component_sets, inside, outside, etc. And more default simprules
paulson <lp15@cam.ac.uk>
parents: 61342
diff changeset
  1536
  using assms unfolding continuous_on_closed_vimage [OF t]  by simp
d53db136e8fd new material on path_component_sets, inside, outside, etc. And more default simprules
paulson <lp15@cam.ac.uk>
parents: 61342
diff changeset
  1537
56371
fb9ae0727548 extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents: 56329
diff changeset
  1538
corollary closed_vimage[continuous_intros]:
fb9ae0727548 extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents: 56329
diff changeset
  1539
  assumes "closed s" and "continuous_on UNIV f"
fb9ae0727548 extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents: 56329
diff changeset
  1540
  shows "closed (f -` s)"
61426
d53db136e8fd new material on path_component_sets, inside, outside, etc. And more default simprules
paulson <lp15@cam.ac.uk>
parents: 61342
diff changeset
  1541
  using closed_vimage_Int [OF assms] by simp
56371
fb9ae0727548 extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents: 56329
diff changeset
  1542
62843
313d3b697c9a Mostly renaming (from HOL Light to Isabelle conventions), with a couple of new results
paulson <lp15@cam.ac.uk>
parents: 62533
diff changeset
  1543
lemma continuous_on_empty [simp]: "continuous_on {} f"
61907
f0c894ab18c9 Liouville theorem, Fundamental Theorem of Algebra, etc.
paulson <lp15@cam.ac.uk>
parents: 61810
diff changeset
  1544
  by (simp add: continuous_on_def)
f0c894ab18c9 Liouville theorem, Fundamental Theorem of Algebra, etc.
paulson <lp15@cam.ac.uk>
parents: 61810
diff changeset
  1545
62843
313d3b697c9a Mostly renaming (from HOL Light to Isabelle conventions), with a couple of new results
paulson <lp15@cam.ac.uk>
parents: 62533
diff changeset
  1546
lemma continuous_on_sing [simp]: "continuous_on {x} f"
61907
f0c894ab18c9 Liouville theorem, Fundamental Theorem of Algebra, etc.
paulson <lp15@cam.ac.uk>
parents: 61810
diff changeset
  1547
  by (simp add: continuous_on_def at_within_def)
f0c894ab18c9 Liouville theorem, Fundamental Theorem of Algebra, etc.
paulson <lp15@cam.ac.uk>
parents: 61810
diff changeset
  1548
51481
ef949192e5d6 move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents: 51480
diff changeset
  1549
lemma continuous_on_open_Union:
ef949192e5d6 move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents: 51480
diff changeset
  1550
  "(\<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
  1551
  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
  1552
ef949192e5d6 move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents: 51480
diff changeset
  1553
lemma continuous_on_open_UN:
ef949192e5d6 move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents: 51480
diff changeset
  1554
  "(\<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"
62343
24106dc44def prefer abbreviations for compound operators INFIMUM and SUPREMUM
haftmann
parents: 62217
diff changeset
  1555
  by (rule continuous_on_open_Union) auto
51481
ef949192e5d6 move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents: 51480
diff changeset
  1556
61204
3e491e34a62e new lemmas and movement of lemmas into place
paulson
parents: 61169
diff changeset
  1557
lemma continuous_on_open_Un:
3e491e34a62e new lemmas and movement of lemmas into place
paulson
parents: 61169
diff changeset
  1558
  "open s \<Longrightarrow> open t \<Longrightarrow> continuous_on s f \<Longrightarrow> continuous_on t f \<Longrightarrow> continuous_on (s \<union> t) f"
3e491e34a62e new lemmas and movement of lemmas into place
paulson
parents: 61169
diff changeset
  1559
  using continuous_on_open_Union [of "{s,t}"] by auto
3e491e34a62e new lemmas and movement of lemmas into place
paulson
parents: 61169
diff changeset
  1560
51481
ef949192e5d6 move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents: 51480
diff changeset
  1561
lemma continuous_on_closed_Un:
ef949192e5d6 move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents: 51480
diff changeset
  1562
  "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
  1563
  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
  1564
ef949192e5d6 move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents: 51480
diff changeset
  1565
lemma continuous_on_If:
ef949192e5d6 move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents: 51480
diff changeset
  1566
  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
  1567
    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
  1568
  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
  1569
proof-
ef949192e5d6 move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents: 51480
diff changeset
  1570
  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
  1571
    by auto
ef949192e5d6 move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents: 51480
diff changeset
  1572
  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
  1573
    by simp_all
ef949192e5d6 move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents: 51480
diff changeset
  1574
  with closed show ?thesis
ef949192e5d6 move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents: 51480
diff changeset
  1575
    by (rule continuous_on_closed_Un)
ef949192e5d6 move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents: 51480
diff changeset
  1576
qed
ef949192e5d6 move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents: 51480
diff changeset
  1577
56371
fb9ae0727548 extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents: 56329
diff changeset
  1578
lemma continuous_on_id[continuous_intros]: "continuous_on s (\<lambda>x. x)"
58729
e8ecc79aee43 add tendsto_const and tendsto_ident_at as simp and intro rules
hoelzl
parents: 57953
diff changeset
  1579
  unfolding continuous_on_def by fast
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
  1580
56371
fb9ae0727548 extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents: 56329
diff changeset
  1581
lemma continuous_on_const[continuous_intros]: "continuous_on s (\<lambda>x. c)"
58729
e8ecc79aee43 add tendsto_const and tendsto_ident_at as simp and intro rules
hoelzl
parents: 57953
diff changeset
  1582
  unfolding continuous_on_def by auto
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
  1583
61738
c4f6031f1310 New material about paths, winding numbers, etc. Added lemmas to divide_const_simps. Misc tuning.
paulson <lp15@cam.ac.uk>
parents: 61531
diff changeset
  1584
lemma continuous_on_subset: "continuous_on s f \<Longrightarrow> t \<subseteq> s \<Longrightarrow> continuous_on t f"
c4f6031f1310 New material about paths, winding numbers, etc. Added lemmas to divide_const_simps. Misc tuning.
paulson <lp15@cam.ac.uk>
parents: 61531
diff changeset
  1585
  unfolding continuous_on_def by (metis subset_eq tendsto_within_subset)
c4f6031f1310 New material about paths, winding numbers, etc. Added lemmas to divide_const_simps. Misc tuning.
paulson <lp15@cam.ac.uk>
parents: 61531
diff changeset
  1586
56371
fb9ae0727548 extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents: 56329
diff changeset
  1587
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
  1588
  "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
  1589
  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
  1590
51481
ef949192e5d6 move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents: 51480
diff changeset
  1591
lemma continuous_on_compose2:
61738
c4f6031f1310 New material about paths, winding numbers, etc. Added lemmas to divide_const_simps. Misc tuning.
paulson <lp15@cam.ac.uk>
parents: 61531
diff changeset
  1592
  "continuous_on t g \<Longrightarrow> continuous_on s f \<Longrightarrow> f ` s \<subseteq> t \<Longrightarrow> continuous_on s (\<lambda>x. g (f x))"
c4f6031f1310 New material about paths, winding numbers, etc. Added lemmas to divide_const_simps. Misc tuning.
paulson <lp15@cam.ac.uk>
parents: 61531
diff changeset
  1593
  using continuous_on_compose[of s f g] continuous_on_subset by (force simp add: comp_def)
51481
ef949192e5d6 move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents: 51480
diff changeset
  1594
60720
8c99fa3b7c44 add continuous_onI_mono
hoelzl
parents: 60585
diff changeset
  1595
lemma continuous_on_generate_topology:
8c99fa3b7c44 add continuous_onI_mono
hoelzl
parents: 60585
diff changeset
  1596
  assumes *: "open = generate_topology X"
8c99fa3b7c44 add continuous_onI_mono
hoelzl
parents: 60585
diff changeset
  1597
  assumes **: "\<And>B. B \<in> X \<Longrightarrow> \<exists>C. open C \<and> C \<inter> A = f -` B \<inter> A"
8c99fa3b7c44 add continuous_onI_mono
hoelzl
parents: 60585
diff changeset
  1598
  shows "continuous_on A f"
8c99fa3b7c44 add continuous_onI_mono
hoelzl
parents: 60585
diff changeset
  1599
  unfolding continuous_on_open_invariant
8c99fa3b7c44 add continuous_onI_mono
hoelzl
parents: 60585
diff changeset
  1600
proof safe
8c99fa3b7c44 add continuous_onI_mono
hoelzl
parents: 60585
diff changeset
  1601
  fix B :: "'a set" assume "open B" then show "\<exists>C. open C \<and> C \<inter> A = f -` B \<inter> A"
8c99fa3b7c44 add continuous_onI_mono
hoelzl
parents: 60585
diff changeset
  1602
    unfolding *
8c99fa3b7c44 add continuous_onI_mono
hoelzl
parents: 60585
diff changeset
  1603
  proof induction
8c99fa3b7c44 add continuous_onI_mono
hoelzl
parents: 60585
diff changeset
  1604
    case (UN K)
8c99fa3b7c44 add continuous_onI_mono
hoelzl
parents: 60585
diff changeset
  1605
    then obtain C where "\<And>k. k \<in> K \<Longrightarrow> open (C k)" "\<And>k. k \<in> K \<Longrightarrow> C k \<inter> A = f -` k \<inter> A"
8c99fa3b7c44 add continuous_onI_mono
hoelzl
parents: 60585
diff changeset
  1606
      by metis
8c99fa3b7c44 add continuous_onI_mono
hoelzl
parents: 60585
diff changeset
  1607
    then show ?case
8c99fa3b7c44 add continuous_onI_mono
hoelzl
parents: 60585
diff changeset
  1608
      by (intro exI[of _ "\<Union>k\<in>K. C k"]) blast
8c99fa3b7c44 add continuous_onI_mono
hoelzl
parents: 60585
diff changeset
  1609
  qed (auto intro: **)
8c99fa3b7c44 add continuous_onI_mono
hoelzl
parents: 60585
diff changeset
  1610
qed
8c99fa3b7c44 add continuous_onI_mono
hoelzl
parents: 60585
diff changeset
  1611
8c99fa3b7c44 add continuous_onI_mono
hoelzl
parents: 60585
diff changeset
  1612
lemma continuous_onI_mono:
8c99fa3b7c44 add continuous_onI_mono
hoelzl
parents: 60585
diff changeset
  1613
  fixes f :: "'a::linorder_topology \<Rightarrow> 'b::{dense_order, linorder_topology}"
8c99fa3b7c44 add continuous_onI_mono
hoelzl
parents: 60585
diff changeset
  1614
  assumes "open (f`A)"
8c99fa3b7c44 add continuous_onI_mono
hoelzl
parents: 60585
diff changeset
  1615
  assumes mono: "\<And>x y. x \<in> A \<Longrightarrow> y \<in> A \<Longrightarrow> x \<le> y \<Longrightarrow> f x \<le> f y"
8c99fa3b7c44 add continuous_onI_mono
hoelzl
parents: 60585
diff changeset
  1616
  shows "continuous_on A f"
8c99fa3b7c44 add continuous_onI_mono
hoelzl
parents: 60585
diff changeset
  1617
proof (rule continuous_on_generate_topology[OF open_generated_order], safe)
8c99fa3b7c44 add continuous_onI_mono
hoelzl
parents: 60585
diff changeset
  1618
  have monoD: "\<And>x y. x \<in> A \<Longrightarrow> y \<in> A \<Longrightarrow> f x < f y \<Longrightarrow> x < y"
8c99fa3b7c44 add continuous_onI_mono
hoelzl
parents: 60585
diff changeset
  1619
    by (auto simp: not_le[symmetric] mono)
8c99fa3b7c44 add continuous_onI_mono
hoelzl
parents: 60585
diff changeset
  1620
8c99fa3b7c44 add continuous_onI_mono
hoelzl
parents: 60585
diff changeset
  1621
  { fix a b assume "a \<in> A" "f a < b"
8c99fa3b7c44 add continuous_onI_mono
hoelzl
parents: 60585
diff changeset
  1622
    moreover
8c99fa3b7c44 add continuous_onI_mono
hoelzl
parents: 60585
diff changeset
  1623
    with open_right[OF \<open>open (f`A)\<close>, of "f a" b] obtain y where "f a < y" "{f a ..< y} \<subseteq> f`A"
8c99fa3b7c44 add continuous_onI_mono
hoelzl
parents: 60585
diff changeset
  1624
      by auto
8c99fa3b7c44 add continuous_onI_mono
hoelzl
parents: 60585
diff changeset
  1625
    moreover then obtain z where "f a < z" "z < min b y"
8c99fa3b7c44 add continuous_onI_mono
hoelzl
parents: 60585
diff changeset
  1626
      using dense[of "f a" "min b y"] \<open>f a < y\<close> \<open>f a < b\<close> by auto
8c99fa3b7c44 add continuous_onI_mono
hoelzl
parents: 60585
diff changeset
  1627
    moreover then obtain c where "z = f c" "c \<in> A"
8c99fa3b7c44 add continuous_onI_mono
hoelzl
parents: 60585
diff changeset
  1628
      using \<open>{f a ..< y} \<subseteq> f`A\<close>[THEN subsetD, of z] by (auto simp: less_imp_le)
8c99fa3b7c44 add continuous_onI_mono
hoelzl
parents: 60585
diff changeset
  1629
    ultimately have "\<exists>x. x \<in> A \<and> f x < b \<and> a < x"
8c99fa3b7c44 add continuous_onI_mono
hoelzl
parents: 60585
diff changeset
  1630
      by (auto intro!: exI[of _ c] simp: monoD) }
8c99fa3b7c44 add continuous_onI_mono
hoelzl
parents: 60585
diff changeset
  1631
  then show "\<exists>C. open C \<and> C \<inter> A = f -` {..<b} \<inter> A" for b
8c99fa3b7c44 add continuous_onI_mono
hoelzl
parents: 60585
diff changeset
  1632
    by (intro exI[of _ "(\<Union>x\<in>{x\<in>A. f x < b}. {..< x})"])
8c99fa3b7c44 add continuous_onI_mono
hoelzl
parents: 60585
diff changeset
  1633
       (auto intro: le_less_trans[OF mono] less_imp_le)
8c99fa3b7c44 add continuous_onI_mono
hoelzl
parents: 60585
diff changeset
  1634
8c99fa3b7c44 add continuous_onI_mono
hoelzl
parents: 60585
diff changeset
  1635
  { fix a b assume "a \<in> A" "b < f a"
8c99fa3b7c44 add continuous_onI_mono
hoelzl
parents: 60585
diff changeset
  1636
    moreover
8c99fa3b7c44 add continuous_onI_mono
hoelzl
parents: 60585
diff changeset
  1637
    with open_left[OF \<open>open (f`A)\<close>, of "f a" b] obtain y where "y < f a" "{y <.. f a} \<subseteq> f`A"
8c99fa3b7c44 add continuous_onI_mono
hoelzl
parents: 60585
diff changeset
  1638
      by auto
8c99fa3b7c44 add continuous_onI_mono
hoelzl
parents: 60585
diff changeset
  1639
    moreover then obtain z where "max b y < z" "z < f a"
8c99fa3b7c44 add continuous_onI_mono
hoelzl
parents: 60585
diff changeset
  1640
      using dense[of "max b y" "f a"] \<open>y < f a\<close> \<open>b < f a\<close> by auto
8c99fa3b7c44 add continuous_onI_mono
hoelzl
parents: 60585
diff changeset
  1641
    moreover then obtain c where "z = f c" "c \<in> A"
8c99fa3b7c44 add continuous_onI_mono
hoelzl
parents: 60585
diff changeset
  1642
      using \<open>{y <.. f a} \<subseteq> f`A\<close>[THEN subsetD, of z] by (auto simp: less_imp_le)
8c99fa3b7c44 add continuous_onI_mono
hoelzl
parents: 60585
diff changeset
  1643
    ultimately have "\<exists>x. x \<in> A \<and> b < f x \<and> x < a"
8c99fa3b7c44 add continuous_onI_mono
hoelzl
parents: 60585
diff changeset
  1644
      by (auto intro!: exI[of _ c] simp: monoD) }
8c99fa3b7c44 add continuous_onI_mono
hoelzl
parents: 60585
diff changeset
  1645
  then show "\<exists>C. open C \<and> C \<inter> A = f -` {b <..} \<inter> A" for b
8c99fa3b7c44 add continuous_onI_mono
hoelzl
parents: 60585
diff changeset
  1646
    by (intro exI[of _ "(\<Union>x\<in>{x\<in>A. b < f x}. {x <..})"])
8c99fa3b7c44 add continuous_onI_mono
hoelzl
parents: 60585
diff changeset
  1647
       (auto intro: less_le_trans[OF _ mono] less_imp_le)
8c99fa3b7c44 add continuous_onI_mono
hoelzl
parents: 60585
diff changeset
  1648
qed
8c99fa3b7c44 add continuous_onI_mono
hoelzl
parents: 60585
diff changeset
  1649
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
  1650
subsubsection \<open>Continuity at a point\<close>
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
  1651
270b21f3ae0a move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents: 51474
diff changeset
  1652
definition continuous :: "'a::t2_space filter \<Rightarrow> ('a \<Rightarrow> 'b::topological_space) \<Rightarrow> bool" where
61973
0c7e865fa7cb more symbols;
wenzelm
parents: 61969
diff changeset
  1653
  "continuous F f \<longleftrightarrow> (f \<longlongrightarrow> f (Lim F (\<lambda>x. x))) F"
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
  1654
270b21f3ae0a move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents: 51474
diff changeset
  1655
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
  1656
  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
  1657
270b21f3ae0a move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents: 51474
diff changeset
  1658
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
  1659
  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
  1660
61973
0c7e865fa7cb more symbols;
wenzelm
parents: 61969
diff changeset
  1661
lemma continuous_within: "continuous (at x within s) f \<longleftrightarrow> (f \<longlongrightarrow> 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
  1662
  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
  1663
270b21f3ae0a move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents: 51474
diff changeset
  1664
lemma continuous_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
  1665
  "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
  1666
    (\<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
  1667
  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
  1668
270b21f3ae0a move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents: 51474
diff changeset
  1669
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
  1670
  "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
  1671
  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
  1672
  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
  1673
270b21f3ae0a move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents: 51474
diff changeset
  1674
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
  1675
  "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
  1676
  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
  1677
  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
  1678
61976
3a27957ac658 more symbols;
wenzelm
parents: 61973
diff changeset
  1679
lemma continuous_at: "continuous (at x) f \<longleftrightarrow> f \<midarrow>x\<rightarrow> f 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
  1680
  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
  1681
270b21f3ae0a move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents: 51474
diff changeset
  1682
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
  1683
  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
  1684
270b21f3ae0a move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents: 51474
diff changeset
  1685
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
  1686
  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
  1687
270b21f3ae0a move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents: 51474
diff changeset
  1688
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
  1689
  "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
  1690
  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
  1691
270b21f3ae0a move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents: 51474
diff changeset
  1692
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
  1693
  "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
  1694
61976
3a27957ac658 more symbols;
wenzelm
parents: 61973
diff changeset
  1695
lemma isCont_def: "isCont f a \<longleftrightarrow> f \<midarrow>a\<rightarrow> f a"
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
  1696
  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
  1697
60762
bf0c76ccee8d new material for multivariate analysis, etc.
paulson
parents: 60758
diff changeset
  1698
lemma continuous_at_imp_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
  1699
  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
  1700
51481
ef949192e5d6 move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents: 51480
diff changeset
  1701
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
  1702
  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
  1703
62083
7582b39f51ed add the proof of the central limit theorem
hoelzl
parents: 62049
diff changeset
  1704
lemma continuous_within_open: "a \<in> A \<Longrightarrow> open A \<Longrightarrow> continuous (at a within A) f \<longleftrightarrow> isCont f a"
7582b39f51ed add the proof of the central limit theorem
hoelzl
parents: 62049
diff changeset
  1705
  by (simp add: at_within_open_NO_MATCH)
7582b39f51ed add the proof of the central limit theorem
hoelzl
parents: 62049
diff changeset
  1706
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
  1707
lemma continuous_at_imp_continuous_on: "\<forall>x\<in>s. isCont f x \<Longrightarrow> continuous_on s f"
60762
bf0c76ccee8d new material for multivariate analysis, etc.
paulson
parents: 60758
diff changeset
  1708
  by (auto intro: continuous_at_imp_continuous_at_within simp: continuous_on_eq_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
  1709
270b21f3ae0a move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents: 51474
diff changeset
  1710
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
  1711
  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
  1712
270b21f3ae0a move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents: 51474
diff changeset
  1713
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
  1714
  unfolding o_def by (rule isCont_o2)
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1715
61973
0c7e865fa7cb more symbols;
wenzelm
parents: 61969
diff changeset
  1716
lemma isCont_tendsto_compose: "isCont g l \<Longrightarrow> (f \<longlongrightarrow> l) F \<Longrightarrow> ((\<lambda>x. g (f x)) \<longlongrightarrow> g l) F"
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1717
  unfolding isCont_def by (rule tendsto_compose)
62102
877463945ce9 fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents: 62101
diff changeset
  1718
62049
b0f941e207cf Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
eberlm
parents: 61976
diff changeset
  1719
lemma continuous_on_tendsto_compose:
b0f941e207cf Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
eberlm
parents: 61976
diff changeset
  1720
  assumes f_cont: "continuous_on s f"
b0f941e207cf Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
eberlm
parents: 61976
diff changeset
  1721
  assumes g: "(g \<longlongrightarrow> l) F"
b0f941e207cf Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
eberlm
parents: 61976
diff changeset
  1722
  assumes l: "l \<in> s"
b0f941e207cf Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
eberlm
parents: 61976
diff changeset
  1723
  assumes ev: "\<forall>\<^sub>F x in F. g x \<in> s"
b0f941e207cf Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
eberlm
parents: 61976
diff changeset
  1724
  shows "((\<lambda>x. f (g x)) \<longlongrightarrow> f l) F"
b0f941e207cf Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
eberlm
parents: 61976
diff changeset
  1725
proof -
b0f941e207cf Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
eberlm
parents: 61976
diff changeset
  1726
  from f_cont l have f: "(f \<longlongrightarrow> f l) (at l within s)"
b0f941e207cf Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
eberlm
parents: 61976
diff changeset
  1727
    by (simp add: continuous_on_def)
b0f941e207cf Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
eberlm
parents: 61976
diff changeset
  1728
  have i: "((\<lambda>x. if g x = l then f l else f (g x)) \<longlongrightarrow> f l) F"
b0f941e207cf Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
eberlm
parents: 61976
diff changeset
  1729
    by (rule filterlim_If)
b0f941e207cf Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
eberlm
parents: 61976
diff changeset
  1730
       (auto intro!: filterlim_compose[OF f] eventually_conj tendsto_mono[OF _ g]
b0f941e207cf Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
eberlm
parents: 61976
diff changeset
  1731
             simp: filterlim_at eventually_inf_principal eventually_mono[OF ev])
b0f941e207cf Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
eberlm
parents: 61976
diff changeset
  1732
  show ?thesis
b0f941e207cf Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
eberlm
parents: 61976
diff changeset
  1733
    by (rule filterlim_cong[THEN iffD1[OF _ i]]) auto
b0f941e207cf Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
eberlm
parents: 61976
diff changeset
  1734
qed
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1735
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
  1736
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
  1737
  "isCont g (f x) \<Longrightarrow> continuous (at x within s) f \<Longrightarrow> continuous (at x within s) (\<lambda>x. g (f x))"
60762
bf0c76ccee8d new material for multivariate analysis, etc.
paulson
parents: 60758
diff changeset
  1738
  using continuous_within_compose2[of x s f g] by (simp add: continuous_at_imp_continuous_at_within)
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1739
57447
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
  1740
lemma filtermap_nhds_open_map:
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
  1741
  assumes cont: "isCont f a" and open_map: "\<And>S. open S \<Longrightarrow> open (f`S)"
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
  1742
  shows "filtermap f (nhds a) = nhds (f a)"
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
  1743
  unfolding filter_eq_iff
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
  1744
proof safe
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
  1745
  fix P assume "eventually P (filtermap f (nhds a))"
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
  1746
  then guess S unfolding eventually_filtermap eventually_nhds ..
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
  1747
  then show "eventually P (nhds (f a))"
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
  1748
    unfolding eventually_nhds by (intro exI[of _ "f`S"]) (auto intro!: open_map)
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
  1749
qed (metis filterlim_iff tendsto_at_iff_tendsto_nhds isCont_def eventually_filtermap cont)
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
  1750
62102
877463945ce9 fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents: 62101
diff changeset
  1751
lemma continuous_at_split:
57447
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
  1752
  "continuous (at (x::'a::linorder_topology)) f = (continuous (at_left x) f \<and> continuous (at_right x) f)"
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
  1753
  by (simp add: continuous_within filterlim_at_split)
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 57276
diff changeset
  1754
61245
b77bf45efe21 prove Liminf_inverse_ereal
hoelzl
parents: 61234
diff changeset
  1755
subsubsection \<open>Open-cover compactness\<close>
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
  1756
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
  1757
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
  1758
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
  1759
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
  1760
definition compact :: "'a set \<Rightarrow> bool" where
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61738
diff changeset
  1761
  compact_eq_heine_borel: \<comment> "This name is used for backwards compatibility"
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
  1762
    "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
  1763
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
  1764
lemma compactI:
60585
48fdff264eb2 tuned whitespace;
wenzelm
parents: 60182
diff changeset
  1765
  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'"
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
  1766
  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
  1767
  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
  1768
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
  1769
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
  1770
  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
  1771
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
  1772
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
  1773
  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
  1774
  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
  1775
  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
  1776
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
  1777
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
  1778
  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
  1779
  obtains C' where "C' \<subseteq> C" and "finite C'" and "s \<subseteq> (\<Union>c\<in>C'. f c)"
62343
24106dc44def prefer abbreviations for compound operators INFIMUM and SUPREMUM
haftmann
parents: 62217
diff changeset
  1780
  using assms unfolding ball_simps [symmetric]
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
  1781
  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
  1782
62843
313d3b697c9a Mostly renaming (from HOL Light to Isabelle conventions), with a couple of new results
paulson <lp15@cam.ac.uk>
parents: 62533
diff changeset
  1783
lemma compact_Int_closed [intro]:
51481
ef949192e5d6 move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents: 51480
diff changeset
  1784
  assumes "compact s" and "closed t"
ef949192e5d6 move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents: 51480
diff changeset
  1785
  shows "compact (s \<inter> t)"
ef949192e5d6 move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents: 51480
diff changeset
  1786
proof (rule compactI)
ef949192e5d6 move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents: 51480
diff changeset
  1787
  fix C assume C: "\<forall>c\<in>C. open c" and cover: "s \<inter> t \<subseteq> \<Union>C"
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
  1788
  from C \<open>closed t\<close> have "\<forall>c\<in>C \<union> {-t}. open c" by auto
51481
ef949192e5d6 move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents: 51480
diff changeset
  1789
  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
  1790
  ultimately have "\<exists>D\<subseteq>C \<union> {-t}. finite D \<and> s \<subseteq> \<Union>D"
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
  1791
    using \<open>compact s\<close> unfolding compact_eq_heine_borel by auto
53381
355a4cac5440 tuned proofs -- less guessing;
wenzelm
parents: 53374
diff changeset
  1792
  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
  1793
  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
  1794
    by (intro exI[of _ "D - {-t}"]) auto
ef949192e5d6 move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents: 51480
diff changeset
  1795
qed
ef949192e5d6 move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents: 51480
diff changeset
  1796
54797
be020ec8560c modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents: 54258
diff changeset
  1797
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
  1798
  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
  1799
be020ec8560c modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents: 54258
diff changeset
  1800
lemma compact_fip:
be020ec8560c modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents: 54258
diff changeset
  1801
  "compact U \<longleftrightarrow>
be020ec8560c modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents: 54258
diff changeset
  1802
    (\<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
  1803
  (is "_ \<longleftrightarrow> ?R")
be020ec8560c modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents: 54258
diff changeset
  1804
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
  1805
  fix A
be020ec8560c modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents: 54258
diff changeset
  1806
  assume "compact U"
be020ec8560c modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents: 54258
diff changeset
  1807
    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
  1808
    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
  1809
  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
  1810
    by auto
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
  1811
  with \<open>compact U\<close> obtain B where "B \<subseteq> A" "finite (uminus`B)" "U \<subseteq> \<Union>(uminus`B)"
54797
be020ec8560c modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents: 54258
diff changeset
  1812
    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
  1813
  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
  1814
    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
  1815
next
be020ec8560c modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents: 54258
diff changeset
  1816
  fix A
be020ec8560c modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents: 54258
diff changeset
  1817
  assume ?R
be020ec8560c modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents: 54258
diff changeset
  1818
  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
  1819
  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
  1820
    by auto
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
  1821
  with \<open>?R\<close> obtain B where "B \<subseteq> A" "finite (uminus`B)" "U \<inter> \<Inter>(uminus`B) = {}"
54797
be020ec8560c modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents: 54258
diff changeset
  1822
    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
  1823
  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
  1824
    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
  1825
qed
be020ec8560c modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents: 54258
diff changeset
  1826
be020ec8560c modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents: 54258
diff changeset
  1827
lemma compact_imp_fip:
63007
aa894a49f77d new theorems about convex hulls, etc.; also, renamed some theorems
paulson <lp15@cam.ac.uk>
parents: 62843
diff changeset
  1828
    "\<lbrakk>compact S;
aa894a49f77d new theorems about convex hulls, etc.; also, renamed some theorems
paulson <lp15@cam.ac.uk>
parents: 62843
diff changeset
  1829
      \<And>T. T \<in> F \<Longrightarrow> closed T;
aa894a49f77d new theorems about convex hulls, etc.; also, renamed some theorems
paulson <lp15@cam.ac.uk>
parents: 62843
diff changeset
  1830
      \<And>F'. \<lbrakk>finite F'; F' \<subseteq> F\<rbrakk> \<Longrightarrow> S \<inter> (\<Inter>F') \<noteq> {}\<rbrakk>
aa894a49f77d new theorems about convex hulls, etc.; also, renamed some theorems
paulson <lp15@cam.ac.uk>
parents: 62843
diff changeset
  1831
     \<Longrightarrow> S \<inter> (\<Inter>F) \<noteq> {}"
54797
be020ec8560c modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents: 54258
diff changeset
  1832
  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
  1833
be020ec8560c modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents: 54258
diff changeset
  1834
lemma compact_imp_fip_image:
56166
9a241bc276cd normalising simp rules for compound operators
haftmann
parents: 56020
diff changeset
  1835
  assumes "compact s"
9a241bc276cd normalising simp rules for compound operators
haftmann
parents: 56020
diff changeset
  1836
    and P: "\<And>i. i \<in> I \<Longrightarrow> closed (f i)"
9a241bc276cd normalising simp rules for compound operators
haftmann
parents: 56020
diff changeset
  1837
    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
  1838
  shows "s \<inter> (\<Inter>i\<in>I. f i) \<noteq> {}"
9a241bc276cd normalising simp rules for compound operators
haftmann
parents: 56020
diff changeset
  1839
proof -
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
  1840
  note \<open>compact s\<close>
56166
9a241bc276cd normalising simp rules for compound operators
haftmann
parents: 56020
diff changeset
  1841
  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
  1842
  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
  1843
  proof (rule, rule, erule conjE)
9a241bc276cd normalising simp rules for compound operators
haftmann
parents: 56020
diff changeset
  1844
    fix A :: "'a set set"
9a241bc276cd normalising simp rules for compound operators
haftmann
parents: 56020
diff changeset
  1845
    assume "finite A"
9a241bc276cd normalising simp rules for compound operators
haftmann
parents: 56020
diff changeset
  1846
    moreover assume "A \<subseteq> f ` I"
9a241bc276cd normalising simp rules for compound operators
haftmann
parents: 56020
diff changeset
  1847
    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
  1848
      using finite_subset_image [of A f I] by blast
9a241bc276cd normalising simp rules for compound operators
haftmann
parents: 56020
diff changeset
  1849
    with Q [of B] show "s \<inter> \<Inter>A \<noteq> {}" by simp
9a241bc276cd normalising simp rules for compound operators
haftmann
parents: 56020
diff changeset
  1850
  qed
63007
aa894a49f77d new theorems about convex hulls, etc.; also, renamed some theorems
paulson <lp15@cam.ac.uk>
parents: 62843
diff changeset
  1851
  ultimately have "s \<inter> (\<Inter>(f ` I)) \<noteq> {}" by (metis compact_imp_fip)
56166
9a241bc276cd normalising simp rules for compound operators
haftmann
parents: 56020
diff changeset
  1852
  then show ?thesis by simp
9a241bc276cd normalising simp rules for compound operators
haftmann
parents: 56020
diff changeset
  1853
qed
54797
be020ec8560c modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents: 54258
diff changeset
  1854
51471
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1855
end
cad22a3cc09c move topological_space to its own theory
hoelzl
parents:
diff changeset
  1856
51481
ef949192e5d6 move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents: 51480
diff changeset
  1857
lemma (in t2_space) compact_imp_closed:
ef949192e5d6 move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents: 51480
diff changeset
  1858
  assumes "compact s" shows "closed s"
ef949192e5d6 move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents: 51480
diff changeset
  1859
unfolding closed_def
ef949192e5d6 move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents: 51480
diff changeset
  1860
proof (rule openI)
ef949192e5d6 move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents: 51480
diff changeset
  1861
  fix y assume "y \<in> - s"
ef949192e5d6 move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents: 51480
diff changeset
  1862
  let ?C = "\<Union>x\<in>s. {u. open u \<and> x \<in> u \<and> eventually (\<lambda>y. y \<notin> u) (nhds y)}"
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
  1863
  note \<open>compact s\<close>
51481
ef949192e5d6 move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents: 51480
diff changeset
  1864
  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
  1865
  moreover have "s \<subseteq> \<Union>?C"
ef949192e5d6 move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents: 51480
diff changeset
  1866
  proof
ef949192e5d6 move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents: 51480
diff changeset
  1867
    fix x assume "x \<in> s"
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
  1868
    with \<open>y \<in> - s\<close> have "x \<noteq> y" by clarsimp
51481
ef949192e5d6 move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents: 51480
diff changeset
  1869
    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
  1870
      by (rule hausdorff)
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
  1871
    with \<open>x \<in> s\<close> show "x \<in> \<Union>?C"
51481
ef949192e5d6 move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents: 51480
diff changeset
  1872
      unfolding eventually_nhds by auto
ef949192e5d6 move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents: 51480
diff changeset
  1873
  qed
ef949192e5d6 move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents: 51480
diff changeset
  1874
  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
  1875
    by (rule compactE)
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
  1876
  from \<open>D \<subseteq> ?C\<close> have "\<forall>x\<in>D. eventually (\<lambda>y. y \<notin> x) (nhds y)" by auto
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
  1877
  with \<open>finite D\<close> have "eventually (\<lambda>y. y \<notin> \<Union>D) (nhds y)"
60040
1fa1023b13b9 move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents: 60036
diff changeset
  1878
    by (simp add: eventually_ball_finite)
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
  1879
  with \<open>s \<subseteq> \<Union>D\<close> have "eventually (\<lambda>y. y \<notin> s) (nhds y)"
61810
3c5040d5694a sorted out eventually_mono
paulson <lp15@cam.ac.uk>
parents: 61806
diff changeset
  1880
    by (auto elim!: eventually_mono)
51481
ef949192e5d6 move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents: 51480
diff changeset
  1881
  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
  1882
    by (simp add: eventually_nhds subset_eq)
ef949192e5d6 move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents: 51480
diff changeset
  1883
qed
ef949192e5d6 move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents: 51480
diff changeset
  1884
ef949192e5d6 move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents: 51480
diff changeset
  1885
lemma compact_continuous_image:
ef949192e5d6 move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents: 51480
diff changeset
  1886
  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
  1887
  shows "compact (f ` s)"
ef949192e5d6 move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents: 51480
diff changeset
  1888
proof (rule compactI)
ef949192e5d6 move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents: 51480
diff changeset
  1889
  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
  1890
  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
  1891
    unfolding continuous_on_open_invariant by blast
53381
355a4cac5440 tuned proofs -- less guessing;
wenzelm
parents: 53374
diff changeset
  1892
  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
  1893
    unfolding bchoice_iff ..
51481
ef949192e5d6 move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents: 51480
diff changeset
  1894
  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
  1895
    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
  1896
  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
  1897
  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
  1898
    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
  1899
qed
ef949192e5d6 move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents: 51480
diff changeset
  1900
ef949192e5d6 move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents: 51480
diff changeset
  1901
lemma continuous_on_inv:
ef949192e5d6 move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents: 51480
diff changeset
  1902
  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
  1903
  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
  1904
  shows "continuous_on (f ` s) g"
ef949192e5d6 move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents: 51480
diff changeset
  1905
unfolding continuous_on_topological
ef949192e5d6 move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents: 51480
diff changeset
  1906
proof (clarsimp simp add: assms(3))
ef949192e5d6 move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents: 51480
diff changeset
  1907
  fix x :: 'a and B :: "'a set"
ef949192e5d6 move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents: 51480
diff changeset
  1908
  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
  1909
  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
  1910
    using assms(3) by (auto, metis)
ef949192e5d6 move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents: 51480
diff changeset
  1911
  have "continuous_on (s - B) f"
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
  1912
    using \<open>continuous_on s f\<close> Diff_subset
51481
ef949192e5d6 move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents: 51480
diff changeset
  1913
    by (rule continuous_on_subset)
ef949192e5d6 move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents: 51480
diff changeset
  1914
  moreover have "compact (s - B)"
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
  1915
    using \<open>open B\<close> and \<open>compact s\<close>
62843
313d3b697c9a Mostly renaming (from HOL Light to Isabelle conventions), with a couple of new results
paulson <lp15@cam.ac.uk>
parents: 62533
diff changeset
  1916
    unfolding Diff_eq by (intro compact_Int_closed closed_Compl)
51481
ef949192e5d6 move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents: 51480
diff changeset
  1917
  ultimately have "compact (f ` (s - B))"
ef949192e5d6 move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents: 51480
diff changeset
  1918
    by (rule compact_continuous_image)
ef949192e5d6 move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents: 51480
diff changeset
  1919
  hence "closed (f ` (s - B))"
ef949192e5d6 move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents: 51480
diff changeset
  1920
    by (rule compact_imp_closed)
ef949192e5d6 move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents: 51480
diff changeset
  1921
  hence "open (- f ` (s - B))"
ef949192e5d6 move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents: 51480
diff changeset
  1922
    by (rule open_Compl)
ef949192e5d6 move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents: 51480
diff changeset
  1923
  moreover have "f x \<in> - f ` (s - B)"
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
  1924
    using \<open>x \<in> s\<close> and \<open>x \<in> B\<close> by (simp add: 1)
51481
ef949192e5d6 move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents: 51480
diff changeset
  1925
  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
  1926
    by (simp add: 1)
ef949192e5d6 move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents: 51480
diff changeset
  1927
  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
  1928
    by fast
ef949192e5d6 move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents: 51480
diff changeset
  1929
qed
ef949192e5d6 move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents: 51480
diff changeset
  1930
ef949192e5d6 move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents: 51480
diff changeset
  1931
lemma continuous_on_inv_into:
ef949192e5d6 move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents: 51480
diff changeset
  1932
  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
  1933
  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
  1934
  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
  1935
  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
  1936
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
  1937
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
  1938
  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
  1939
  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
  1940
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
  1941
  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
  1942
  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
  1943
    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
  1944
  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
  1945
    by auto
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
  1946
  with \<open>compact S\<close> obtain C where "C \<subseteq> S" "finite C" and C: "S \<subseteq> (\<Union>s\<in>C. {..< t s})"
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
  1947
    by (erule compactE_image)
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
  1948
  with \<open>S \<noteq> {}\<close> have Max: "Max (t`C) \<in> t`C" and "\<forall>s\<in>t`C. s \<le> Max (t`C)"
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
  1949
    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
  1950
  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
  1951
    by (auto intro: less_le_trans simp: subset_eq)
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
  1952
  with t Max \<open>C \<subseteq> S\<close> show ?thesis
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
  1953
    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
  1954
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
  1955
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
  1956
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
  1957
  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
  1958
  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
  1959
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
  1960
  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
  1961
  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
  1962
    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
  1963
  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
  1964
    by auto
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
  1965
  with \<open>compact S\<close> obtain C where "C \<subseteq> S" "finite C" and C: "S \<subseteq> (\<Union>s\<in>C. {t s <..})"
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
  1966
    by (erule compactE_image)
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
  1967
  with \<open>S \<noteq> {}\<close> have Min: "Min (t`C) \<in> t`C" and "\<forall>s\<in>t`C. Min (t`C) \<le> s"
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
  1968
    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
  1969
  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
  1970
    by (auto intro: le_less_trans simp: subset_eq)
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
  1971
  with t Min \<open>C \<subseteq> S\<close> show ?thesis
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
  1972
    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
  1973
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
  1974
33db4b7189af move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents: 51478
diff changeset
  1975
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
  1976
  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
  1977
  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
  1978
  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
  1979
33db4b7189af move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents: 51478
diff changeset
  1980
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
  1981
  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
  1982
  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
  1983
  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
  1984
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
  1985
subsection \<open>Connectedness\<close>
51480
3793c3a11378 move connected to HOL image; used to show intermediate value theorem
hoelzl
parents: 51479
diff changeset
  1986
3793c3a11378 move connected to HOL image; used to show intermediate value theorem
hoelzl
parents: 51479
diff changeset
  1987
context topological_space
3793c3a11378 move connected to HOL image; used to show intermediate value theorem
hoelzl
parents: 51479
diff changeset
  1988
begin
3793c3a11378 move connected to HOL image; used to show intermediate value theorem
hoelzl
parents: 51479
diff changeset
  1989
3793c3a11378 move connected to HOL image; used to show intermediate value theorem
hoelzl
parents: 51479
diff changeset
  1990
definition "connected S \<longleftrightarrow>
3793c3a11378 move connected to HOL image; used to show intermediate value theorem
hoelzl
parents: 51479
diff changeset
  1991
  \<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
  1992
3793c3a11378 move connected to HOL image; used to show intermediate value theorem
hoelzl
parents: 51479
diff changeset
  1993
lemma connectedI:
3793c3a11378 move connected to HOL image; used to show intermediate value theorem
hoelzl
parents: 51479
diff changeset
  1994
  "(\<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
  1995
  \<Longrightarrow> connected U"
3793c3a11378 move connected to HOL image; used to show intermediate value theorem
hoelzl
parents: 51479
diff changeset
  1996
  by (auto simp: connected_def)
3793c3a11378 move connected to HOL image; used to show intermediate value theorem
hoelzl
parents: 51479
diff changeset
  1997
61306
9dd394c866fc New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents: 61245
diff changeset
  1998
lemma connected_empty [simp]: "connected {}"
9dd394c866fc New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents: 61245
diff changeset
  1999
  by (auto intro!: connectedI)
9dd394c866fc New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents: 61245
diff changeset
  2000
9dd394c866fc New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents: 61245
diff changeset
  2001
lemma connected_sing [simp]: "connected {x}"
51480
3793c3a11378 move connected to HOL image; used to show intermediate value theorem
hoelzl
parents: 51479
diff changeset
  2002
  by (auto intro!: connectedI)
3793c3a11378 move connected to HOL image; used to show intermediate value theorem
hoelzl
parents: 51479
diff changeset
  2003
56329
9597a53b3429 add connected_local_const
hoelzl
parents: 56289
diff changeset
  2004
lemma connectedD:
62102
877463945ce9 fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents: 62101
diff changeset
  2005
  "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 = {}"
56329
9597a53b3429 add connected_local_const
hoelzl
parents: 56289
diff changeset
  2006
  by (auto simp: connected_def)
9597a53b3429 add connected_local_const
hoelzl
parents: 56289
diff changeset
  2007
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
  2008
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
  2009
61306
9dd394c866fc New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents: 61245
diff changeset
  2010
lemma connected_closed:
9dd394c866fc New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents: 61245
diff changeset
  2011
    "connected s \<longleftrightarrow>
9dd394c866fc New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents: 61245
diff changeset
  2012
     ~ (\<exists>A B. closed A \<and> closed B \<and> s \<subseteq> A \<union> B \<and> A \<inter> B \<inter> s = {} \<and> A \<inter> s \<noteq> {} \<and> B \<inter> s \<noteq> {})"
9dd394c866fc New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents: 61245
diff changeset
  2013
apply (simp add: connected_def del: ex_simps, safe)
9dd394c866fc New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents: 61245
diff changeset
  2014
apply (drule_tac x="-A" in spec)
9dd394c866fc New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents: 61245
diff changeset
  2015
apply (drule_tac x="-B" in spec)
9dd394c866fc New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents: 61245
diff changeset
  2016
apply (fastforce simp add: closed_def [symmetric])
9dd394c866fc New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents: 61245
diff changeset
  2017
apply (drule_tac x="-A" in spec)
9dd394c866fc New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents: 61245
diff changeset
  2018
apply (drule_tac x="-B" in spec)
9dd394c866fc New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents: 61245
diff changeset
  2019
apply (fastforce simp add: open_closed [symmetric])
9dd394c866fc New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents: 61245
diff changeset
  2020
done
9dd394c866fc New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents: 61245
diff changeset
  2021
62397
5ae24f33d343 Substantial new material for multivariate analysis. Also removal of some duplicates.
paulson <lp15@cam.ac.uk>
parents: 62381
diff changeset
  2022
lemma connected_closedD:
5ae24f33d343 Substantial new material for multivariate analysis. Also removal of some duplicates.
paulson <lp15@cam.ac.uk>
parents: 62381
diff changeset
  2023
    "\<lbrakk>connected s; A \<inter> B \<inter> s = {}; s \<subseteq> A \<union> B; closed A; closed B\<rbrakk> \<Longrightarrow> A \<inter> s = {} \<or> B \<inter> s = {}"
5ae24f33d343 Substantial new material for multivariate analysis. Also removal of some duplicates.
paulson <lp15@cam.ac.uk>
parents: 62381
diff changeset
  2024
by (simp add: connected_closed)
61306
9dd394c866fc New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents: 61245
diff changeset
  2025
9dd394c866fc New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents: 61245
diff changeset
  2026
lemma connected_Union:
9dd394c866fc New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents: 61245
diff changeset
  2027
  assumes cs: "\<And>s. s \<in> S \<Longrightarrow> connected s" and ne: "\<Inter>S \<noteq> {}"
9dd394c866fc New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents: 61245
diff changeset
  2028
    shows "connected(\<Union>S)"
9dd394c866fc New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents: 61245
diff changeset
  2029
proof (rule connectedI)
9dd394c866fc New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents: 61245
diff changeset
  2030
  fix A B
9dd394c866fc New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents: 61245
diff changeset
  2031
  assume A: "open A" and B: "open B" and Alap: "A \<inter> \<Union>S \<noteq> {}" and Blap: "B \<inter> \<Union>S \<noteq> {}"
9dd394c866fc New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents: 61245
diff changeset
  2032
     and disj: "A \<inter> B \<inter> \<Union>S = {}" and cover: "\<Union>S \<subseteq> A \<union> B"
9dd394c866fc New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents: 61245
diff changeset
  2033
  have disjs:"\<And>s. s \<in> S \<Longrightarrow> A \<inter> B \<inter> s = {}"
9dd394c866fc New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents: 61245
diff changeset
  2034
    using disj by auto
9dd394c866fc New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents: 61245
diff changeset
  2035
  obtain sa where sa: "sa \<in> S" "A \<inter> sa \<noteq> {}"
9dd394c866fc New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents: 61245
diff changeset
  2036
    using Alap by auto
9dd394c866fc New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents: 61245
diff changeset
  2037
  obtain sb where sb: "sb \<in> S" "B \<inter> sb \<noteq> {}"
9dd394c866fc New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents: 61245
diff changeset
  2038
    using Blap by auto
9dd394c866fc New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents: 61245
diff changeset
  2039
  obtain x where x: "\<And>s. s \<in> S \<Longrightarrow> x \<in> s"
9dd394c866fc New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents: 61245
diff changeset
  2040
    using ne by auto
9dd394c866fc New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents: 61245
diff changeset
  2041
  then have "x \<in> \<Union>S"
61342
b98cd131e2b5 isabelle update_cartouches;
wenzelm
parents: 61306
diff changeset
  2042
    using \<open>sa \<in> S\<close> by blast
61306
9dd394c866fc New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents: 61245
diff changeset
  2043
  then have "x \<in> A \<or> x \<in> B"
9dd394c866fc New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents: 61245
diff changeset
  2044
    using cover by auto
9dd394c866fc New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents: 61245
diff changeset
  2045
  then show False
9dd394c866fc New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents: 61245
diff changeset
  2046
    using cs [unfolded connected_def]
9dd394c866fc New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents: 61245
diff changeset
  2047
    by (metis A B IntI Sup_upper sa sb disjs x cover empty_iff subset_trans)
9dd394c866fc New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents: 61245
diff changeset
  2048
qed
9dd394c866fc New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents: 61245
diff changeset
  2049
9dd394c866fc New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents: 61245
diff changeset
  2050
lemma connected_Un: "\<lbrakk>connected s; connected t; s \<inter> t \<noteq> {}\<rbrakk> \<Longrightarrow> connected (s \<union> t)"
9dd394c866fc New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents: 61245
diff changeset
  2051
  using connected_Union [of "{s,t}"] by auto
9dd394c866fc New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents: 61245
diff changeset
  2052
9dd394c866fc New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents: 61245
diff changeset
  2053
lemma connected_diff_open_from_closed:
9dd394c866fc New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents: 61245
diff changeset
  2054
  assumes st: "s \<subseteq> t" and tu: "t \<subseteq> u" and s: "open s"
9dd394c866fc New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents: 61245
diff changeset
  2055
      and t: "closed t" and u: "connected u" and ts: "connected (t - s)"
9dd394c866fc New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents: 61245
diff changeset
  2056
  shows "connected(u - s)"
9dd394c866fc New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents: 61245
diff changeset
  2057
proof (rule connectedI)
9dd394c866fc New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents: 61245
diff changeset
  2058
  fix A B
9dd394c866fc New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents: 61245
diff changeset
  2059
  assume AB: "open A" "open B" "A \<inter> (u - s) \<noteq> {}" "B \<inter> (u - s) \<noteq> {}"
9dd394c866fc New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents: 61245
diff changeset
  2060
     and disj: "A \<inter> B \<inter> (u - s) = {}" and cover: "u - s \<subseteq> A \<union> B"
9dd394c866fc New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents: 61245
diff changeset
  2061
  then consider "A \<inter> (t - s) = {}" | "B \<inter> (t - s) = {}"
9dd394c866fc New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents: 61245
diff changeset
  2062
    using st ts tu connectedD [of "t-s" "A" "B"]
9dd394c866fc New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents: 61245
diff changeset
  2063
    by auto
9dd394c866fc New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents: 61245
diff changeset
  2064
  then show False
9dd394c866fc New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents: 61245
diff changeset
  2065
  proof cases
9dd394c866fc New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents: 61245
diff changeset
  2066
    case 1
9dd394c866fc New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents: 61245
diff changeset
  2067
    then have "(A - t) \<inter> (B \<union> s) \<inter> u = {}"
9dd394c866fc New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents: 61245
diff changeset
  2068
      using disj st by auto
9dd394c866fc New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents: 61245
diff changeset
  2069
    moreover have  "u \<subseteq> (A - t) \<union> (B \<union> s)" using 1 cover by auto
9dd394c866fc New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents: 61245
diff changeset
  2070
    ultimately show False
9dd394c866fc New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents: 61245
diff changeset
  2071
      using connectedD [of u "A - t" "B \<union> s"] AB s t 1 u
9dd394c866fc New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents: 61245
diff changeset
  2072
      by auto
9dd394c866fc New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents: 61245
diff changeset
  2073
  next
9dd394c866fc New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents: 61245
diff changeset
  2074
    case 2
9dd394c866fc New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents: 61245
diff changeset
  2075
    then have "(A \<union> s) \<inter> (B - t) \<inter> u = {}"
9dd394c866fc New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents: 61245
diff changeset
  2076
      using disj st
9dd394c866fc New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents: 61245
diff changeset
  2077
      by auto
9dd394c866fc New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents: 61245
diff changeset
  2078
    moreover have "u \<subseteq> (A \<union> s) \<union> (B - t)" using 2 cover by auto
9dd394c866fc New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents: 61245
diff changeset
  2079
    ultimately show False
9dd394c866fc New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents: 61245
diff changeset
  2080
      using connectedD [of u "A \<union> s" "B - t"] AB s t 2 u
9dd394c866fc New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents: 61245
diff changeset
  2081
      by auto
9dd394c866fc New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents: 61245
diff changeset
  2082
  qed
9dd394c866fc New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents: 61245
diff changeset
  2083
qed
9dd394c866fc New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents: 61245
diff changeset
  2084
59106
af691e67f71f instance bool and enat as topologies
hoelzl
parents: 58889
diff changeset
  2085
lemma connected_iff_const:
af691e67f71f instance bool and enat as topologies
hoelzl
parents: 58889
diff changeset
  2086
  fixes S :: "'a::topological_space set"
af691e67f71f instance bool and enat as topologies
hoelzl
parents: 58889
diff changeset
  2087
  shows "connected S \<longleftrightarrow> (\<forall>P::'a \<Rightarrow> bool. continuous_on S P \<longrightarrow> (\<exists>c. \<forall>s\<in>S. P s = c))"
af691e67f71f instance bool and enat as topologies
hoelzl
parents: 58889
diff changeset
  2088
proof safe
af691e67f71f instance bool and enat as topologies
hoelzl
parents: 58889
diff changeset
  2089
  fix P :: "'a \<Rightarrow> bool" assume "connected S" "continuous_on S P"
af691e67f71f instance bool and enat as topologies
hoelzl
parents: 58889
diff changeset
  2090
  then have "\<And>b. \<exists>A. open A \<and> A \<inter> S = P -` {b} \<inter> S"
62369
acfc4ad7b76a instantiate topologies for nat, int and enat
hoelzl
parents: 62367
diff changeset
  2091
    unfolding continuous_on_open_invariant by (simp add: open_discrete)
59106
af691e67f71f instance bool and enat as topologies
hoelzl
parents: 58889
diff changeset
  2092
  from this[of True] this[of False]
af691e67f71f instance bool and enat as topologies
hoelzl
parents: 58889
diff changeset
  2093
  obtain t f where "open t" "open f" and *: "f \<inter> S = P -` {False} \<inter> S" "t \<inter> S = P -` {True} \<inter> S"
af691e67f71f instance bool and enat as topologies
hoelzl
parents: 58889
diff changeset
  2094
    by auto
af691e67f71f instance bool and enat as topologies
hoelzl
parents: 58889
diff changeset
  2095
  then have "t \<inter> S = {} \<or> f \<inter> S = {}"
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
  2096
    by (intro connectedD[OF \<open>connected S\<close>])  auto
59106
af691e67f71f instance bool and enat as topologies
hoelzl
parents: 58889
diff changeset
  2097
  then show "\<exists>c. \<forall>s\<in>S. P s = c"
af691e67f71f instance bool and enat as topologies
hoelzl
parents: 58889
diff changeset
  2098
  proof (rule disjE)
af691e67f71f instance bool and enat as topologies
hoelzl
parents: 58889
diff changeset
  2099
    assume "t \<inter> S = {}" then show ?thesis
af691e67f71f instance bool and enat as topologies
hoelzl
parents: 58889
diff changeset
  2100
      unfolding * by (intro exI[of _ False]) auto
af691e67f71f instance bool and enat as topologies
hoelzl
parents: 58889
diff changeset
  2101
  next
af691e67f71f instance bool and enat as topologies
hoelzl
parents: 58889
diff changeset
  2102
    assume "f \<inter> S = {}" then show ?thesis
af691e67f71f instance bool and enat as topologies
hoelzl
parents: 58889
diff changeset
  2103
      unfolding * by (intro exI[of _ True]) auto
af691e67f71f instance bool and enat as topologies
hoelzl
parents: 58889
diff changeset
  2104
  qed
af691e67f71f instance bool and enat as topologies
hoelzl
parents: 58889
diff changeset
  2105
next
af691e67f71f instance bool and enat as topologies
hoelzl
parents: 58889
diff changeset
  2106
  assume P: "\<forall>P::'a \<Rightarrow> bool. continuous_on S P \<longrightarrow> (\<exists>c. \<forall>s\<in>S. P s = c)"
af691e67f71f instance bool and enat as topologies
hoelzl
parents: 58889
diff changeset
  2107
  show "connected S"
af691e67f71f instance bool and enat as topologies
hoelzl
parents: 58889
diff changeset
  2108
  proof (rule connectedI)
af691e67f71f instance bool and enat as topologies
hoelzl
parents: 58889
diff changeset
  2109
    fix A B assume *: "open A" "open B" "A \<inter> S \<noteq> {}" "B \<inter> S \<noteq> {}" "A \<inter> B \<inter> S = {}" "S \<subseteq> A \<union> B"
af691e67f71f instance bool and enat as topologies
hoelzl
parents: 58889
diff changeset
  2110
    have "continuous_on S (\<lambda>x. x \<in> A)"
af691e67f71f instance bool and enat as topologies
hoelzl
parents: 58889
diff changeset
  2111
      unfolding continuous_on_open_invariant
af691e67f71f instance bool and enat as topologies
hoelzl
parents: 58889
diff changeset
  2112
    proof safe
af691e67f71f instance bool and enat as topologies
hoelzl
parents: 58889
diff changeset
  2113
      fix C :: "bool set"
af691e67f71f instance bool and enat as topologies
hoelzl
parents: 58889
diff changeset
  2114
      have "C = UNIV \<or> C = {True} \<or> C = {False} \<or> C = {}"
af691e67f71f instance bool and enat as topologies
hoelzl
parents: 58889
diff changeset
  2115
        using subset_UNIV[of C] unfolding UNIV_bool by auto
af691e67f71f instance bool and enat as topologies
hoelzl
parents: 58889
diff changeset
  2116
      with * show "\<exists>T. open T \<and> T \<inter> S = (\<lambda>x. x \<in> A) -` C \<inter> S"
af691e67f71f instance bool and enat as topologies
hoelzl
parents: 58889
diff changeset
  2117
        by (intro exI[of _ "(if True \<in> C then A else {}) \<union> (if False \<in> C then B else {})"]) auto
af691e67f71f instance bool and enat as topologies
hoelzl
parents: 58889
diff changeset
  2118
    qed
af691e67f71f instance bool and enat as topologies
hoelzl
parents: 58889
diff changeset
  2119
    from P[rule_format, OF this] obtain c where "\<And>s. s \<in> S \<Longrightarrow> (s \<in> A) = c" by blast
af691e67f71f instance bool and enat as topologies
hoelzl
parents: 58889
diff changeset
  2120
    with * show False
af691e67f71f instance bool and enat as topologies
hoelzl
parents: 58889
diff changeset
  2121
      by (cases c) auto
af691e67f71f instance bool and enat as topologies
hoelzl
parents: 58889
diff changeset
  2122
  qed
af691e67f71f instance bool and enat as topologies
hoelzl
parents: 58889
diff changeset
  2123
qed
af691e67f71f instance bool and enat as topologies
hoelzl
parents: 58889
diff changeset
  2124
af691e67f71f instance bool and enat as topologies
hoelzl
parents: 58889
diff changeset
  2125
lemma connectedD_const:
af691e67f71f instance bool and enat as topologies
hoelzl
parents: 58889
diff changeset
  2126
  fixes P :: "'a::topological_space \<Rightarrow> bool"
af691e67f71f instance bool and enat as topologies
hoelzl
parents: 58889
diff changeset
  2127
  shows "connected S \<Longrightarrow> continuous_on S P \<Longrightarrow> \<exists>c. \<forall>s\<in>S. P s = c"
af691e67f71f instance bool and enat as topologies
hoelzl
parents: 58889
diff changeset
  2128
  unfolding connected_iff_const by auto
af691e67f71f instance bool and enat as topologies
hoelzl
parents: 58889
diff changeset
  2129
af691e67f71f instance bool and enat as topologies
hoelzl
parents: 58889
diff changeset
  2130
lemma connectedI_const:
af691e67f71f instance bool and enat as topologies
hoelzl
parents: 58889
diff changeset
  2131
  "(\<And>P::'a::topological_space \<Rightarrow> bool. continuous_on S P \<Longrightarrow> \<exists>c. \<forall>s\<in>S. P s = c) \<Longrightarrow> connected S"
af691e67f71f instance bool and enat as topologies
hoelzl
parents: 58889
diff changeset
  2132
  unfolding connected_iff_const by auto
af691e67f71f instance bool and enat as topologies
hoelzl
parents: 58889
diff changeset
  2133
56329
9597a53b3429 add connected_local_const
hoelzl
parents: 56289
diff changeset
  2134
lemma connected_local_const:
9597a53b3429 add connected_local_const
hoelzl
parents: 56289
diff changeset
  2135
  assumes "connected A" "a \<in> A" "b \<in> A"
9597a53b3429 add connected_local_const
hoelzl
parents: 56289
diff changeset
  2136
  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
  2137
  shows "f a = f b"
9597a53b3429 add connected_local_const
hoelzl
parents: 56289
diff changeset
  2138
proof -
9597a53b3429 add connected_local_const
hoelzl
parents: 56289
diff changeset
  2139
  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
  2140
    "\<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
  2141
    using * unfolding eventually_at_topological by metis
9597a53b3429 add connected_local_const
hoelzl
parents: 56289
diff changeset
  2142
9597a53b3429 add connected_local_const
hoelzl
parents: 56289
diff changeset
  2143
  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
  2144
  have "?P \<inter> A = {} \<or> ?N \<inter> A = {}"
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
  2145
    using \<open>connected A\<close> S \<open>a\<in>A\<close>
56329
9597a53b3429 add connected_local_const
hoelzl
parents: 56289
diff changeset
  2146
    by (intro connectedD) (auto, metis)
9597a53b3429 add connected_local_const
hoelzl
parents: 56289
diff changeset
  2147
  then show "f a = f b"
9597a53b3429 add connected_local_const
hoelzl
parents: 56289
diff changeset
  2148
  proof
9597a53b3429 add connected_local_const
hoelzl
parents: 56289
diff changeset
  2149
    assume "?N \<inter> A = {}"
9597a53b3429 add connected_local_const
hoelzl
parents: 56289
diff changeset
  2150
    then have "\<forall>x\<in>A. f a = f x"
9597a53b3429 add connected_local_const
hoelzl
parents: 56289
diff changeset
  2151
      using S(1) by auto
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
  2152
    with \<open>b\<in>A\<close> show ?thesis by auto
56329
9597a53b3429 add connected_local_const
hoelzl
parents: 56289
diff changeset
  2153
  next
9597a53b3429 add connected_local_const
hoelzl
parents: 56289
diff changeset
  2154
    assume "?P \<inter> A = {}" then show ?thesis
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
  2155
      using \<open>a \<in> A\<close> S(1)[of a] by auto
56329
9597a53b3429 add connected_local_const
hoelzl
parents: 56289
diff changeset
  2156
  qed
9597a53b3429 add connected_local_const
hoelzl
parents: 56289
diff changeset
  2157
qed
9597a53b3429 add connected_local_const
hoelzl
parents: 56289
diff changeset
  2158
51480
3793c3a11378 move connected to HOL image; used to show intermediate value theorem
hoelzl
parents: 51479
diff changeset
  2159
lemma (in linorder_topology) connectedD_interval:
3793c3a11378 move connected to HOL image; used to show intermediate value theorem
hoelzl
parents: 51479
diff changeset
  2160
  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
  2161
  shows "z \<in> U"
3793c3a11378 move connected to HOL image; used to show intermediate value theorem
hoelzl
parents: 51479
diff changeset
  2162
proof -
3793c3a11378 move connected to HOL image; used to show intermediate value theorem
hoelzl
parents: 51479
diff changeset
  2163
  have eq: "{..<z} \<union> {z<..} = - {z}"
3793c3a11378 move connected to HOL image; used to show intermediate value theorem
hoelzl
parents: 51479
diff changeset
  2164
    by auto
3793c3a11378 move connected to HOL image; used to show intermediate value theorem
hoelzl
parents: 51479
diff changeset
  2165
  { 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
  2166
    with xy have "\<not> connected U"
3793c3a11378 move connected to HOL image; used to show intermediate value theorem
hoelzl
parents: 51479
diff changeset
  2167
      unfolding connected_def simp_thms
3793c3a11378 move connected to HOL image; used to show intermediate value theorem
hoelzl
parents: 51479
diff changeset
  2168
      apply (rule_tac exI[of _ "{..< z}"])
3793c3a11378 move connected to HOL image; used to show intermediate value theorem
hoelzl
parents: 51479
diff changeset
  2169
      apply (rule_tac exI[of _ "{z <..}"])
3793c3a11378 move connected to HOL image; used to show intermediate value theorem
hoelzl
parents: 51479
diff changeset
  2170
      apply (auto simp add: eq)
3793c3a11378 move connected to HOL image; used to show intermediate value theorem
hoelzl
parents: 51479
diff changeset
  2171
      done }
3793c3a11378 move connected to HOL image; used to show intermediate value theorem
hoelzl
parents: 51479
diff changeset
  2172
  with assms show "z \<in> U"
3793c3a11378 move connected to HOL image; used to show intermediate value theorem
hoelzl
parents: 51479
diff changeset
  2173
    by (metis less_le)
3793c3a11378 move connected to HOL image; used to show intermediate value theorem
hoelzl
parents: 51479
diff changeset
  2174
qed
3793c3a11378 move connected to HOL image; used to show intermediate value theorem
hoelzl
parents: 51479
diff changeset
  2175
3793c3a11378 move connected to HOL image; used to show intermediate value theorem
hoelzl
parents: 51479
diff changeset
  2176
lemma connected_continuous_image:
3793c3a11378 move connected to HOL image; used to show intermediate value theorem
hoelzl
parents: 51479
diff changeset
  2177
  assumes *: "continuous_on s f"
3793c3a11378 move connected to HOL image; used to show intermediate value theorem
hoelzl
parents: 51479
diff changeset
  2178
  assumes "connected s"
3793c3a11378 move connected to HOL image; used to show intermediate value theorem
hoelzl
parents: 51479
diff changeset
  2179
  shows "connected (f ` s)"
59106
af691e67f71f instance bool and enat as topologies
hoelzl
parents: 58889
diff changeset
  2180
proof (rule connectedI_const)
af691e67f71f instance bool and enat as topologies
hoelzl
parents: 58889
diff changeset
  2181
  fix P :: "'b \<Rightarrow> bool" assume "continuous_on (f ` s) P"
af691e67f71f instance bool and enat as topologies
hoelzl
parents: 58889
diff changeset
  2182
  then have "continuous_on s (P \<circ> f)"
af691e67f71f instance bool and enat as topologies
hoelzl
parents: 58889
diff changeset
  2183
    by (rule continuous_on_compose[OF *])
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
  2184
  from connectedD_const[OF \<open>connected s\<close> this] show "\<exists>c. \<forall>s\<in>f ` s. P s = c"
59106
af691e67f71f instance bool and enat as topologies
hoelzl
parents: 58889
diff changeset
  2185
    by auto
51480
3793c3a11378 move connected to HOL image; used to show intermediate value theorem
hoelzl
parents: 51479
diff changeset
  2186
qed
3793c3a11378 move connected to HOL image; used to show intermediate value theorem
hoelzl
parents: 51479
diff changeset
  2187
61306
9dd394c866fc New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents: 61245
diff changeset
  2188
9dd394c866fc New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents: 61245
diff changeset
  2189
section \<open>Linear Continuum Topologies\<close>
51518
6a56b7088a6a separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents: 51481
diff changeset
  2190
51775
408d937c9486 revert #916271d52466; add non-topological linear_continuum type class; show linear_continuum_topology is a perfect_space
hoelzl
parents: 51774
diff changeset
  2191
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
  2192
begin
6a56b7088a6a separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents: 51481
diff changeset
  2193
6a56b7088a6a separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents: 51481
diff changeset
  2194
lemma Inf_notin_open:
6a56b7088a6a separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents: 51481
diff changeset
  2195
  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
  2196
  shows "Inf A \<notin> A"
6a56b7088a6a separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents: 51481
diff changeset
  2197
proof
6a56b7088a6a separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents: 51481
diff changeset
  2198
  assume "Inf A \<in> A"
6a56b7088a6a separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents: 51481
diff changeset
  2199
  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
  2200
    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
  2201
  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
  2202
    by (auto simp: subset_eq)
6a56b7088a6a separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents: 51481
diff changeset
  2203
  then show False
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
  2204
    using cInf_lower[OF \<open>c \<in> A\<close>] 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
  2205
qed
6a56b7088a6a separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents: 51481
diff changeset
  2206
6a56b7088a6a separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents: 51481
diff changeset
  2207
lemma Sup_notin_open:
6a56b7088a6a separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents: 51481
diff changeset
  2208
  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
  2209
  shows "Sup A \<notin> A"
6a56b7088a6a separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents: 51481
diff changeset
  2210
proof
6a56b7088a6a separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents: 51481
diff changeset
  2211
  assume "Sup A \<in> A"
6a56b7088a6a separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents: 51481
diff changeset
  2212
  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
  2213
    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
  2214
  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
  2215
    by (auto simp: subset_eq)
6a56b7088a6a separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents: 51481
diff changeset
  2216
  then show False
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
  2217
    using cSup_upper[OF \<open>c \<in> A\<close>] 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
  2218
qed
6a56b7088a6a separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents: 51481
diff changeset
  2219
51480
3793c3a11378 move connected to HOL image; used to show intermediate value theorem
hoelzl
parents: 51479
diff changeset
  2220
end
3793c3a11378 move connected to HOL image; used to show intermediate value theorem
hoelzl
parents: 51479
diff changeset
  2221
51775
408d937c9486 revert #916271d52466; add non-topological linear_continuum type class; show linear_continuum_topology is a perfect_space
hoelzl
parents: 51774
diff changeset
  2222
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
  2223
proof
408d937c9486 revert #916271d52466; add non-topological linear_continuum type class; show linear_continuum_topology is a perfect_space
hoelzl
parents: 51774
diff changeset
  2224
  fix x :: 'a
53381
355a4cac5440 tuned proofs -- less guessing;
wenzelm
parents: 53374
diff changeset
  2225
  obtain y where "x < y \<or> y < x"
355a4cac5440 tuned proofs -- less guessing;
wenzelm
parents: 53374
diff changeset
  2226
    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
  2227
  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
  2228
  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
  2229
    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
  2230
qed
408d937c9486 revert #916271d52466; add non-topological linear_continuum type class; show linear_continuum_topology is a perfect_space
hoelzl
parents: 51774
diff changeset
  2231
51518
6a56b7088a6a separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents: 51481
diff changeset
  2232
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
  2233
  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
  2234
  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
  2235
  shows "connected U"
6a56b7088a6a separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents: 51481
diff changeset
  2236
proof (rule connectedI)
6a56b7088a6a separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents: 51481
diff changeset
  2237
  { 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
  2238
    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
  2239
6a56b7088a6a separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents: 51481
diff changeset
  2240
    let ?z = "Inf (B \<inter> {x <..})"
6a56b7088a6a separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents: 51481
diff changeset
  2241
6a56b7088a6a separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents: 51481
diff changeset
  2242
    have "x \<le> ?z" "?z \<le> y"
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
  2243
      using \<open>y \<in> B\<close> \<open>x < y\<close> by (auto intro: cInf_lower cInf_greatest)
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
  2244
    with \<open>x \<in> U\<close> \<open>y \<in> U\<close> have "?z \<in> U"
51518
6a56b7088a6a separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents: 51481
diff changeset
  2245
      by (rule *)
6a56b7088a6a separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents: 51481
diff changeset
  2246
    moreover have "?z \<notin> B \<inter> {x <..}"
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
  2247
      using \<open>open B\<close> by (intro Inf_notin_open) auto
51518
6a56b7088a6a separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents: 51481
diff changeset
  2248
    ultimately have "?z \<in> A"
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
  2249
      using \<open>x \<le> ?z\<close> \<open>A \<inter> B \<inter> U = {}\<close> \<open>x \<in> A\<close> \<open>U \<subseteq> A \<union> B\<close> by auto
51518
6a56b7088a6a separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents: 51481
diff changeset
  2250
6a56b7088a6a separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents: 51481
diff changeset
  2251
    { assume "?z < y"
6a56b7088a6a separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents: 51481
diff changeset
  2252
      obtain a where "?z < a" "{?z ..< a} \<subseteq> A"
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
  2253
        using open_right[OF \<open>open A\<close> \<open>?z \<in> A\<close> \<open>?z < y\<close>] by auto
51518
6a56b7088a6a separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents: 51481
diff changeset
  2254
      moreover obtain b where "b \<in> B" "x < b" "b < min a y"
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
  2255
        using cInf_less_iff[of "B \<inter> {x <..}" "min a y"] \<open>?z < a\<close> \<open>?z < y\<close> \<open>x < y\<close> \<open>y \<in> B\<close>
51518
6a56b7088a6a separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents: 51481
diff changeset
  2256
        by (auto intro: less_imp_le)
53374
a14d2a854c02 tuned proofs -- clarified flow of facts wrt. calculation;
wenzelm
parents: 53215
diff changeset
  2257
      moreover have "?z \<le> b"
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
  2258
        using \<open>b \<in> B\<close> \<open>x < b\<close>
54258
adfc759263ab use bdd_above and bdd_below for conditionally complete lattices
hoelzl
parents: 53946
diff changeset
  2259
        by (intro cInf_lower) auto
51518
6a56b7088a6a separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents: 51481
diff changeset
  2260
      moreover have "b \<in> U"
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
  2261
        using \<open>x \<le> ?z\<close> \<open>?z \<le> b\<close> \<open>b < min a y\<close>
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
  2262
        by (intro *[OF \<open>x \<in> U\<close> \<open>y \<in> U\<close>]) (auto simp: less_imp_le)
51518
6a56b7088a6a separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents: 51481
diff changeset
  2263
      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
  2264
        by (intro bexI[of _ b]) auto }
6a56b7088a6a separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents: 51481
diff changeset
  2265
    then have False
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
  2266
      using \<open>?z \<le> y\<close> \<open>?z \<in> A\<close> \<open>y \<in> B\<close> \<open>y \<in> U\<close> \<open>A \<inter> B \<inter> U = {}\<close> unfolding le_less by blast }
51518
6a56b7088a6a separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents: 51481
diff changeset
  2267
  note not_disjoint = this
6a56b7088a6a separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents: 51481
diff changeset
  2268
6a56b7088a6a separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents: 51481
diff changeset
  2269
  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
  2270
  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
  2271
  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
  2272
  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
  2273
  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
  2274
qed
6a56b7088a6a separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents: 51481
diff changeset
  2275
6a56b7088a6a separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents: 51481
diff changeset
  2276
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
  2277
  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
  2278
  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
  2279
  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
  2280
51775
408d937c9486 revert #916271d52466; add non-topological linear_continuum type class; show linear_continuum_topology is a perfect_space
hoelzl
parents: 51774
diff changeset
  2281
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
  2282
  unfolding connected_iff_interval by auto
6a56b7088a6a separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents: 51481
diff changeset
  2283
51775
408d937c9486 revert #916271d52466; add non-topological linear_continuum type class; show linear_continuum_topology is a perfect_space
hoelzl
parents: 51774
diff changeset
  2284
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
  2285
  unfolding connected_iff_interval by auto
6a56b7088a6a separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents: 51481
diff changeset
  2286
51775
408d937c9486 revert #916271d52466; add non-topological linear_continuum type class; show linear_continuum_topology is a perfect_space
hoelzl
parents: 51774
diff changeset
  2287
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
  2288
  unfolding connected_iff_interval by auto
6a56b7088a6a separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents: 51481
diff changeset
  2289
51775
408d937c9486 revert #916271d52466; add non-topological linear_continuum type class; show linear_continuum_topology is a perfect_space
hoelzl
parents: 51774
diff changeset
  2290
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
  2291
  unfolding connected_iff_interval by auto
6a56b7088a6a separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents: 51481
diff changeset
  2292
51775
408d937c9486 revert #916271d52466; add non-topological linear_continuum type class; show linear_continuum_topology is a perfect_space
hoelzl
parents: 51774
diff changeset
  2293
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
  2294
  unfolding connected_iff_interval by auto
6a56b7088a6a separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents: 51481
diff changeset
  2295
51775
408d937c9486 revert #916271d52466; add non-topological linear_continuum type class; show linear_continuum_topology is a perfect_space
hoelzl
parents: 51774
diff changeset
  2296
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
  2297
  unfolding connected_iff_interval by auto
6a56b7088a6a separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents: 51481
diff changeset
  2298
51775
408d937c9486 revert #916271d52466; add non-topological linear_continuum type class; show linear_continuum_topology is a perfect_space
hoelzl
parents: 51774
diff changeset
  2299
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
  2300
  unfolding connected_iff_interval by auto
6a56b7088a6a separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents: 51481
diff changeset
  2301
51775
408d937c9486 revert #916271d52466; add non-topological linear_continuum type class; show linear_continuum_topology is a perfect_space
hoelzl
parents: 51774
diff changeset
  2302
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
  2303
  unfolding connected_iff_interval by auto
6a56b7088a6a separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents: 51481
diff changeset
  2304
51775
408d937c9486 revert #916271d52466; add non-topological linear_continuum type class; show linear_continuum_topology is a perfect_space
hoelzl
parents: 51774
diff changeset
  2305
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
  2306
  unfolding connected_iff_interval by auto
6a56b7088a6a separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents: 51481
diff changeset
  2307
62102
877463945ce9 fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents: 62101
diff changeset
  2308
lemma connected_contains_Ioo:
51518
6a56b7088a6a separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents: 51481
diff changeset
  2309
  fixes A :: "'a :: linorder_topology set"
6a56b7088a6a separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents: 51481
diff changeset
  2310
  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
  2311
  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
  2312
61531
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61520
diff changeset
  2313
lemma connected_contains_Icc:
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61520
diff changeset
  2314
  assumes "connected (A :: ('a :: {linorder_topology}) set)" "a \<in> A" "b \<in> A"
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61520
diff changeset
  2315
  shows   "{a..b} \<subseteq> A"
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61520
diff changeset
  2316
proof
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61520
diff changeset
  2317
  fix x assume "x \<in> {a..b}"
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61520
diff changeset
  2318
  hence "x = a \<or> x = b \<or> x \<in> {a<..<b}" by auto
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61520
diff changeset
  2319
  thus "x \<in> A" using assms connected_contains_Ioo[of A a b] by auto
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61520
diff changeset
  2320
qed
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61520
diff changeset
  2321
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
  2322
subsection \<open>Intermediate Value Theorem\<close>
51518
6a56b7088a6a separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents: 51481
diff changeset
  2323
6a56b7088a6a separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents: 51481
diff changeset
  2324
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
  2325
  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
  2326
  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
  2327
  assumes *: "continuous_on {a .. b} f"
6a56b7088a6a separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents: 51481
diff changeset
  2328
  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
  2329
proof -
6a56b7088a6a separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents: 51481
diff changeset
  2330
  have "connected {a..b}"
6a56b7088a6a separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents: 51481
diff changeset
  2331
    unfolding connected_iff_interval by auto
6a56b7088a6a separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents: 51481
diff changeset
  2332
  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
  2333
  show ?thesis
6a56b7088a6a separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents: 51481
diff changeset
  2334
    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
  2335
qed
6a56b7088a6a separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents: 51481
diff changeset
  2336
6a56b7088a6a separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents: 51481
diff changeset
  2337
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
  2338
  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
  2339
  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
  2340
  assumes *: "continuous_on {a .. b} f"
6a56b7088a6a separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents: 51481
diff changeset
  2341
  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
  2342
proof -
6a56b7088a6a separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents: 51481
diff changeset
  2343
  have "connected {a..b}"
6a56b7088a6a separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents: 51481
diff changeset
  2344
    unfolding connected_iff_interval by auto
6a56b7088a6a separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents: 51481
diff changeset
  2345
  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
  2346
  show ?thesis
6a56b7088a6a separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents: 51481
diff changeset
  2347
    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
  2348
qed
6a56b7088a6a separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents: 51481
diff changeset
  2349
6a56b7088a6a separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents: 51481
diff changeset
  2350
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
  2351
  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
  2352
  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
  2353
  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
  2354
6a56b7088a6a separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents: 51481
diff changeset
  2355
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
  2356
  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
  2357
  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
  2358
  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
  2359
6a56b7088a6a separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents: 51481
diff changeset
  2360
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
  2361
  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
  2362
  assumes x: "a < x" "x < b"
6a56b7088a6a separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents: 51481
diff changeset
  2363
  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
  2364
  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
  2365
  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
  2366
proof -
61520
8f85bb443d33 Cauchy's integral formula, required lemmas, and a bit of reorganisation
paulson <lp15@cam.ac.uk>
parents: 61426
diff changeset
  2367
  note I = inj_on_eq_iff[OF inj]
51518
6a56b7088a6a separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents: 51481
diff changeset
  2368
  { 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
  2369
    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
  2370
      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
  2371
      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
  2372
    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
  2373
  moreover
6a56b7088a6a separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents: 51481
diff changeset
  2374
  { 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
  2375
    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
  2376
      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
  2377
      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
  2378
    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
  2379
  ultimately show ?thesis
6a56b7088a6a separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents: 51481
diff changeset
  2380
    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
  2381
qed
6a56b7088a6a separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents: 51481
diff changeset
  2382
59452
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2383
lemma continuous_at_Sup_mono:
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2384
  fixes f :: "'a :: {linorder_topology, conditionally_complete_linorder} \<Rightarrow> 'b :: {linorder_topology, conditionally_complete_linorder}"
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2385
  assumes "mono f"
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2386
  assumes cont: "continuous (at_left (Sup S)) f"
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2387
  assumes S: "S \<noteq> {}" "bdd_above S"
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2388
  shows "f (Sup S) = (SUP s:S. f s)"
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2389
proof (rule antisym)
61973
0c7e865fa7cb more symbols;
wenzelm
parents: 61969
diff changeset
  2390
  have f: "(f \<longlongrightarrow> f (Sup S)) (at_left (Sup S))"
59452
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2391
    using cont unfolding continuous_within .
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2392
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2393
  show "f (Sup S) \<le> (SUP s:S. f s)"
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2394
  proof cases
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2395
    assume "Sup S \<in> S" then show ?thesis
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
  2396
      by (rule cSUP_upper) (auto intro: bdd_above_image_mono S \<open>mono f\<close>)
59452
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2397
  next
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2398
    assume "Sup S \<notin> S"
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
  2399
    from \<open>S \<noteq> {}\<close> obtain s where "s \<in> S"
59452
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2400
      by auto
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
  2401
    with \<open>Sup S \<notin> S\<close> S have "s < Sup S"
59452
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2402
      unfolding less_le by (blast intro: cSup_upper)
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2403
    show ?thesis
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2404
    proof (rule ccontr)
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2405
      assume "\<not> ?thesis"
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2406
      with order_tendstoD(1)[OF f, of "SUP s:S. f s"] obtain b where "b < Sup S"
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2407
        and *: "\<And>y. b < y \<Longrightarrow> y < Sup S \<Longrightarrow> (SUP s:S. f s) < f y"
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
  2408
        by (auto simp: not_le eventually_at_left[OF \<open>s < Sup S\<close>])
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
  2409
      with \<open>S \<noteq> {}\<close> obtain c where "c \<in> S" "b < c"
59452
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2410
        using less_cSupD[of S b] by auto
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
  2411
      with \<open>Sup S \<notin> S\<close> S have "c < Sup S"
59452
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2412
        unfolding less_le by (blast intro: cSup_upper)
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
  2413
      from *[OF \<open>b < c\<close> \<open>c < Sup S\<close>] cSUP_upper[OF \<open>c \<in> S\<close> bdd_above_image_mono[of f]]
59452
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2414
      show False
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2415
        by (auto simp: assms)
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2416
    qed
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2417
  qed
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
  2418
qed (intro cSUP_least \<open>mono f\<close>[THEN monoD] cSup_upper S)
59452
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2419
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2420
lemma continuous_at_Sup_antimono:
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2421
  fixes f :: "'a :: {linorder_topology, conditionally_complete_linorder} \<Rightarrow> 'b :: {linorder_topology, conditionally_complete_linorder}"
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2422
  assumes "antimono f"
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2423
  assumes cont: "continuous (at_left (Sup S)) f"
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2424
  assumes S: "S \<noteq> {}" "bdd_above S"
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2425
  shows "f (Sup S) = (INF s:S. f s)"
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2426
proof (rule antisym)
61973
0c7e865fa7cb more symbols;
wenzelm
parents: 61969
diff changeset
  2427
  have f: "(f \<longlongrightarrow> f (Sup S)) (at_left (Sup S))"
59452
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2428
    using cont unfolding continuous_within .
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2429
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2430
  show "(INF s:S. f s) \<le> f (Sup S)"
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2431
  proof cases
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2432
    assume "Sup S \<in> S" then show ?thesis
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
  2433
      by (intro cINF_lower) (auto intro: bdd_below_image_antimono S \<open>antimono f\<close>)
59452
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2434
  next
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2435
    assume "Sup S \<notin> S"
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
  2436
    from \<open>S \<noteq> {}\<close> obtain s where "s \<in> S"
59452
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2437
      by auto
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
  2438
    with \<open>Sup S \<notin> S\<close> S have "s < Sup S"
59452
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2439
      unfolding less_le by (blast intro: cSup_upper)
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2440
    show ?thesis
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2441
    proof (rule ccontr)
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2442
      assume "\<not> ?thesis"
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2443
      with order_tendstoD(2)[OF f, of "INF s:S. f s"] obtain b where "b < Sup S"
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2444
        and *: "\<And>y. b < y \<Longrightarrow> y < Sup S \<Longrightarrow> f y < (INF s:S. f s)"
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
  2445
        by (auto simp: not_le eventually_at_left[OF \<open>s < Sup S\<close>])
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
  2446
      with \<open>S \<noteq> {}\<close> obtain c where "c \<in> S" "b < c"
59452
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2447
        using less_cSupD[of S b] by auto
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
  2448
      with \<open>Sup S \<notin> S\<close> S have "c < Sup S"
59452
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2449
        unfolding less_le by (blast intro: cSup_upper)
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
  2450
      from *[OF \<open>b < c\<close> \<open>c < Sup S\<close>] cINF_lower[OF bdd_below_image_antimono, of f S c] \<open>c \<in> S\<close>
59452
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2451
      show False
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2452
        by (auto simp: assms)
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2453
    qed
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2454
  qed
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
  2455
qed (intro cINF_greatest \<open>antimono f\<close>[THEN antimonoD] cSup_upper S)
59452
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2456
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2457
lemma continuous_at_Inf_mono:
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2458
  fixes f :: "'a :: {linorder_topology, conditionally_complete_linorder} \<Rightarrow> 'b :: {linorder_topology, conditionally_complete_linorder}"
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2459
  assumes "mono f"
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2460
  assumes cont: "continuous (at_right (Inf S)) f"
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2461
  assumes S: "S \<noteq> {}" "bdd_below S"
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2462
  shows "f (Inf S) = (INF s:S. f s)"
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2463
proof (rule antisym)
61973
0c7e865fa7cb more symbols;
wenzelm
parents: 61969
diff changeset
  2464
  have f: "(f \<longlongrightarrow> f (Inf S)) (at_right (Inf S))"
59452
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2465
    using cont unfolding continuous_within .
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2466
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2467
  show "(INF s:S. f s) \<le> f (Inf S)"
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2468
  proof cases
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2469
    assume "Inf S \<in> S" then show ?thesis
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
  2470
      by (rule cINF_lower[rotated]) (auto intro: bdd_below_image_mono S \<open>mono f\<close>)
59452
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2471
  next
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2472
    assume "Inf S \<notin> S"
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
  2473
    from \<open>S \<noteq> {}\<close> obtain s where "s \<in> S"
59452
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2474
      by auto
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
  2475
    with \<open>Inf S \<notin> S\<close> S have "Inf S < s"
59452
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2476
      unfolding less_le by (blast intro: cInf_lower)
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2477
    show ?thesis
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2478
    proof (rule ccontr)
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2479
      assume "\<not> ?thesis"
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2480
      with order_tendstoD(2)[OF f, of "INF s:S. f s"] obtain b where "Inf S < b"
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2481
        and *: "\<And>y. Inf S < y \<Longrightarrow> y < b \<Longrightarrow> f y < (INF s:S. f s)"
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
  2482
        by (auto simp: not_le eventually_at_right[OF \<open>Inf S < s\<close>])
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
  2483
      with \<open>S \<noteq> {}\<close> obtain c where "c \<in> S" "c < b"
59452
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2484
        using cInf_lessD[of S b] by auto
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
  2485
      with \<open>Inf S \<notin> S\<close> S have "Inf S < c"
59452
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2486
        unfolding less_le by (blast intro: cInf_lower)
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
  2487
      from *[OF \<open>Inf S < c\<close> \<open>c < b\<close>] cINF_lower[OF bdd_below_image_mono[of f] \<open>c \<in> S\<close>]
59452
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2488
      show False
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2489
        by (auto simp: assms)
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2490
    qed
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2491
  qed
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
  2492
qed (intro cINF_greatest \<open>mono f\<close>[THEN monoD] cInf_lower \<open>bdd_below S\<close> \<open>S \<noteq> {}\<close>)
59452
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2493
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2494
lemma continuous_at_Inf_antimono:
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2495
  fixes f :: "'a :: {linorder_topology, conditionally_complete_linorder} \<Rightarrow> 'b :: {linorder_topology, conditionally_complete_linorder}"
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2496
  assumes "antimono f"
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2497
  assumes cont: "continuous (at_right (Inf S)) f"
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2498
  assumes S: "S \<noteq> {}" "bdd_below S"
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2499
  shows "f (Inf S) = (SUP s:S. f s)"
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2500
proof (rule antisym)
61973
0c7e865fa7cb more symbols;
wenzelm
parents: 61969
diff changeset
  2501
  have f: "(f \<longlongrightarrow> f (Inf S)) (at_right (Inf S))"
59452
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2502
    using cont unfolding continuous_within .
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2503
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2504
  show "f (Inf S) \<le> (SUP s:S. f s)"
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2505
  proof cases
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2506
    assume "Inf S \<in> S" then show ?thesis
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
  2507
      by (rule cSUP_upper) (auto intro: bdd_above_image_antimono S \<open>antimono f\<close>)
59452
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2508
  next
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2509
    assume "Inf S \<notin> S"
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
  2510
    from \<open>S \<noteq> {}\<close> obtain s where "s \<in> S"
59452
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2511
      by auto
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
  2512
    with \<open>Inf S \<notin> S\<close> S have "Inf S < s"
59452
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2513
      unfolding less_le by (blast intro: cInf_lower)
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2514
    show ?thesis
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2515
    proof (rule ccontr)
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2516
      assume "\<not> ?thesis"
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2517
      with order_tendstoD(1)[OF f, of "SUP s:S. f s"] obtain b where "Inf S < b"
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2518
        and *: "\<And>y. Inf S < y \<Longrightarrow> y < b \<Longrightarrow> (SUP s:S. f s) < f y"
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
  2519
        by (auto simp: not_le eventually_at_right[OF \<open>Inf S < s\<close>])
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
  2520
      with \<open>S \<noteq> {}\<close> obtain c where "c \<in> S" "c < b"
59452
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2521
        using cInf_lessD[of S b] by auto
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
  2522
      with \<open>Inf S \<notin> S\<close> S have "Inf S < c"
59452
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2523
        unfolding less_le by (blast intro: cInf_lower)
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
  2524
      from *[OF \<open>Inf S < c\<close> \<open>c < b\<close>] cSUP_upper[OF \<open>c \<in> S\<close> bdd_above_image_antimono[of f]]
59452
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2525
      show False
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2526
        by (auto simp: assms)
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2527
    qed
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2528
  qed
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60720
diff changeset
  2529
qed (intro cSUP_least \<open>antimono f\<close>[THEN antimonoD] cInf_lower S)
59452
2538b2c51769 ereal: tuned proofs concerning continuity and suprema
hoelzl
parents: 59106
diff changeset
  2530
62101
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2531
subsection \<open>Uniform spaces\<close>
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2532
62102
877463945ce9 fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents: 62101
diff changeset
  2533
class uniformity =
62101
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2534
  fixes uniformity :: "('a \<times> 'a) filter"
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2535
begin
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2536
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2537
abbreviation uniformity_on :: "'a set \<Rightarrow> ('a \<times> 'a) filter" where
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2538
  "uniformity_on s \<equiv> inf uniformity (principal (s\<times>s))"
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2539
51518
6a56b7088a6a separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents: 51481
diff changeset
  2540
end
62101
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2541
62102
877463945ce9 fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents: 62101
diff changeset
  2542
lemma uniformity_Abort:
62123
df65f5c27c15 setup code generation for filters as suggested by Florian
hoelzl
parents: 62102
diff changeset
  2543
  "uniformity =
df65f5c27c15 setup code generation for filters as suggested by Florian
hoelzl
parents: 62102
diff changeset
  2544
    Filter.abstract_filter (\<lambda>u. Code.abort (STR ''uniformity is not executable'') (\<lambda>u. uniformity))"
df65f5c27c15 setup code generation for filters as suggested by Florian
hoelzl
parents: 62102
diff changeset
  2545
  by simp
62102
877463945ce9 fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents: 62101
diff changeset
  2546
62101
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2547
class open_uniformity = "open" + uniformity +
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2548
  assumes open_uniformity: "\<And>U. open U \<longleftrightarrow> (\<forall>x\<in>U. eventually (\<lambda>(x', y). x' = x \<longrightarrow> y \<in> U) uniformity)"
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2549
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2550
class uniform_space = open_uniformity +
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2551
  assumes uniformity_refl: "eventually E uniformity \<Longrightarrow> E (x, x)"
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2552
  assumes uniformity_sym: "eventually E uniformity \<Longrightarrow> eventually (\<lambda>(x, y). E (y, x)) uniformity"
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2553
  assumes uniformity_trans: "eventually E uniformity \<Longrightarrow> \<exists>D. eventually D uniformity \<and> (\<forall>x y z. D (x, y) \<longrightarrow> D (y, z) \<longrightarrow> E (x, z))"
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2554
begin
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2555
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2556
subclass topological_space
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2557
  proof qed (force elim: eventually_mono eventually_elim2 simp: split_beta' open_uniformity)+
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2558
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2559
lemma uniformity_bot: "uniformity \<noteq> bot"
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2560
  using uniformity_refl by auto
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2561
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2562
lemma uniformity_trans':
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2563
  "eventually E uniformity \<Longrightarrow> eventually (\<lambda>((x, y), (y', z)). y = y' \<longrightarrow> E (x, z)) (uniformity \<times>\<^sub>F uniformity)"
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2564
  by (drule uniformity_trans) (auto simp add: eventually_prod_same)
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2565
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2566
lemma uniformity_transE:
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2567
  assumes E: "eventually E uniformity"
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2568
  obtains D where "eventually D uniformity" "\<And>x y z. D (x, y) \<Longrightarrow> D (y, z) \<Longrightarrow> E (x, z)"
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2569
  using uniformity_trans[OF E] by auto
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2570
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2571
lemma eventually_nhds_uniformity:
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2572
  "eventually P (nhds x) \<longleftrightarrow> eventually (\<lambda>(x', y). x' = x \<longrightarrow> P y) uniformity" (is "_ \<longleftrightarrow> ?N P x")
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2573
  unfolding eventually_nhds
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2574
proof safe
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2575
  assume *: "?N P x"
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2576
  { fix x assume "?N P x"
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2577
    then guess D by (rule uniformity_transE) note D = this
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2578
    from D(1) have "?N (?N P) x"
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2579
      by eventually_elim (insert D, force elim: eventually_mono split: prod.split) }
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2580
  then have "open {x. ?N P x}"
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2581
    by (simp add: open_uniformity)
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2582
  then show "\<exists>S. open S \<and> x \<in> S \<and> (\<forall>x\<in>S. P x)"
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2583
    by (intro exI[of _ "{x. ?N P x}"]) (auto dest: uniformity_refl simp: *)
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2584
qed (force simp add: open_uniformity elim: eventually_mono)
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2585
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2586
subsubsection \<open>Totally bounded sets\<close>
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2587
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2588
definition totally_bounded :: "'a set \<Rightarrow> bool" where
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2589
  "totally_bounded S \<longleftrightarrow>
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2590
    (\<forall>E. eventually E uniformity \<longrightarrow> (\<exists>X. finite X \<and> (\<forall>s\<in>S. \<exists>x\<in>X. E (x, s))))"
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2591
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2592
lemma totally_bounded_empty[iff]: "totally_bounded {}"
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2593
  by (auto simp add: totally_bounded_def)
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2594
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2595
lemma totally_bounded_subset: "totally_bounded S \<Longrightarrow> T \<subseteq> S \<Longrightarrow> totally_bounded T"
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2596
  by (force simp add: totally_bounded_def)
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2597
62102
877463945ce9 fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents: 62101
diff changeset
  2598
lemma totally_bounded_Union[intro]:
62101
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2599
  assumes M: "finite M" "\<And>S. S \<in> M \<Longrightarrow> totally_bounded S" shows "totally_bounded (\<Union>M)"
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2600
  unfolding totally_bounded_def
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2601
proof safe
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2602
  fix E assume "eventually E uniformity"
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2603
  with M obtain X where "\<forall>S\<in>M. finite (X S) \<and> (\<forall>s\<in>S. \<exists>x\<in>X S. E (x, s))"
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2604
    by (metis totally_bounded_def)
62175
8ffc4d0e652d isabelle update_cartouches -c -t;
wenzelm
parents: 62123
diff changeset
  2605
  with \<open>finite M\<close> show "\<exists>X. finite X \<and> (\<forall>s\<in>\<Union>M. \<exists>x\<in>X. E (x, s))"
62101
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2606
    by (intro exI[of _ "\<Union>S\<in>M. X S"]) force
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2607
qed
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2608
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2609
subsubsection \<open>Cauchy filter\<close>
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2610
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2611
definition cauchy_filter :: "'a filter \<Rightarrow> bool" where
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2612
  "cauchy_filter F \<longleftrightarrow> F \<times>\<^sub>F F \<le> uniformity"
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2613
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2614
definition Cauchy :: "(nat \<Rightarrow> 'a) \<Rightarrow> bool" where
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2615
  Cauchy_uniform: "Cauchy X = cauchy_filter (filtermap X sequentially)"
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2616
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2617
lemma Cauchy_uniform_iff:
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2618
  "Cauchy X \<longleftrightarrow> (\<forall>P. eventually P uniformity \<longrightarrow> (\<exists>N. \<forall>n\<ge>N. \<forall>m\<ge>N. P (X n, X m)))"
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2619
  unfolding Cauchy_uniform cauchy_filter_def le_filter_def eventually_prod_same
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2620
    eventually_filtermap eventually_sequentially
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2621
proof safe
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2622
  let ?U = "\<lambda>P. eventually P uniformity"
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2623
  { fix P assume "?U P" "\<forall>P. ?U P \<longrightarrow> (\<exists>Q. (\<exists>N. \<forall>n\<ge>N. Q (X n)) \<and> (\<forall>x y. Q x \<longrightarrow> Q y \<longrightarrow> P (x, y)))"
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2624
    then obtain Q N where "\<And>n. n \<ge> N \<Longrightarrow> Q (X n)" "\<And>x y. Q x \<Longrightarrow> Q y \<Longrightarrow> P (x, y)"
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2625
      by metis
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2626
    then show "\<exists>N. \<forall>n\<ge>N. \<forall>m\<ge>N. P (X n, X m)"
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2627
      by blast }
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2628
  { fix P assume "?U P" and P: "\<forall>P. ?U P \<longrightarrow> (\<exists>N. \<forall>n\<ge>N. \<forall>m\<ge>N. P (X n, X m))"
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2629
    then obtain Q where "?U Q" and Q: "\<And>x y z. Q (x, y) \<Longrightarrow> Q (y, z) \<Longrightarrow> P (x, z)"
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2630
      by (auto elim: uniformity_transE)
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2631
    then have "?U (\<lambda>x. Q x \<and> (\<lambda>(x, y). Q (y, x)) x)"
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2632
      unfolding eventually_conj_iff by (simp add: uniformity_sym)
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2633
    from P[rule_format, OF this]
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2634
    obtain N where N: "\<And>n m. n \<ge> N \<Longrightarrow> m \<ge> N \<Longrightarrow> Q (X n, X m) \<and> Q (X m, X n)"
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2635
      by auto
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2636
    show "\<exists>Q. (\<exists>N. \<forall>n\<ge>N. Q (X n)) \<and> (\<forall>x y. Q x \<longrightarrow> Q y \<longrightarrow> P (x, y))"
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2637
    proof (safe intro!: exI[of _ "\<lambda>x. \<forall>n\<ge>N. Q (x, X n) \<and> Q (X n, x)"] exI[of _ N] N)
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2638
      fix x y assume "\<forall>n\<ge>N. Q (x, X n) \<and> Q (X n, x)" "\<forall>n\<ge>N. Q (y, X n) \<and> Q (X n, y)"
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2639
      then have "Q (x, X N)" "Q (X N, y)" by auto
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2640
      then show "P (x, y)"
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2641
        by (rule Q)
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2642
    qed }
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2643
qed
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2644
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2645
lemma nhds_imp_cauchy_filter:
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2646
  assumes *: "F \<le> nhds x" shows "cauchy_filter F"
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2647
proof -
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2648
  have "F \<times>\<^sub>F F \<le> nhds x \<times>\<^sub>F nhds x"
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2649
    by (intro prod_filter_mono *)
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2650
  also have "\<dots> \<le> uniformity"
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2651
    unfolding le_filter_def eventually_nhds_uniformity eventually_prod_same
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2652
  proof safe
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2653
    fix P assume "eventually P uniformity"
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2654
    then guess Ql by (rule uniformity_transE) note Ql = this
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2655
    moreover note Ql(1)[THEN uniformity_sym]
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2656
    ultimately show "\<exists>Q. eventually (\<lambda>(x', y). x' = x \<longrightarrow> Q y) uniformity \<and> (\<forall>x y. Q x \<longrightarrow> Q y \<longrightarrow> P (x, y))"
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2657
      by (rule_tac exI[of _ "\<lambda>y. Ql (y, x) \<and> Ql (x, y)"]) (fastforce elim: eventually_elim2)
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2658
  qed
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2659
  finally show ?thesis
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2660
    by (simp add: cauchy_filter_def)
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2661
qed
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2662
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2663
lemma LIMSEQ_imp_Cauchy: "X \<longlonglongrightarrow> x \<Longrightarrow> Cauchy X"
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2664
  unfolding Cauchy_uniform filterlim_def by (intro nhds_imp_cauchy_filter)
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2665
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2666
lemma Cauchy_subseq_Cauchy: assumes "Cauchy X" "subseq f" shows "Cauchy (X \<circ> f)"
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2667
  unfolding Cauchy_uniform comp_def filtermap_filtermap[symmetric] cauchy_filter_def
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2668
  by (rule order_trans[OF _ \<open>Cauchy X\<close>[unfolded Cauchy_uniform cauchy_filter_def]])
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2669
     (intro prod_filter_mono filtermap_mono filterlim_subseq[OF \<open>subseq f\<close>, unfolded filterlim_def])
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2670
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2671
lemma convergent_Cauchy: "convergent X \<Longrightarrow> Cauchy X"
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2672
  unfolding convergent_def by (erule exE, erule LIMSEQ_imp_Cauchy)
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2673
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2674
definition complete :: "'a set \<Rightarrow> bool" where
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2675
  complete_uniform: "complete S \<longleftrightarrow> (\<forall>F \<le> principal S. F \<noteq> bot \<longrightarrow> cauchy_filter F \<longrightarrow> (\<exists>x\<in>S. F \<le> nhds x))"
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2676
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2677
end
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2678
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2679
subsubsection \<open>Uniformly continuous functions\<close>
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2680
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2681
definition uniformly_continuous_on :: "'a set \<Rightarrow> ('a::uniform_space \<Rightarrow> 'b::uniform_space) \<Rightarrow> bool" where
62102
877463945ce9 fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents: 62101
diff changeset
  2682
  uniformly_continuous_on_uniformity: "uniformly_continuous_on s f \<longleftrightarrow>
62101
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2683
    (LIM (x, y) (uniformity_on s). (f x, f y) :> uniformity)"
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2684
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2685
lemma uniformly_continuous_onD:
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2686
  "uniformly_continuous_on s f \<Longrightarrow> eventually E uniformity
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2687
    \<Longrightarrow> eventually (\<lambda>(x, y). x \<in> s \<longrightarrow> y \<in> s \<longrightarrow> E (f x, f y)) uniformity"
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2688
  by (simp add: uniformly_continuous_on_uniformity filterlim_iff eventually_inf_principal split_beta' mem_Times_iff imp_conjL)
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2689
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2690
lemma uniformly_continuous_on_const[continuous_intros]: "uniformly_continuous_on s (\<lambda>x. c)"
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2691
  by (auto simp: uniformly_continuous_on_uniformity filterlim_iff uniformity_refl)
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2692
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2693
lemma uniformly_continuous_on_id[continuous_intros]: "uniformly_continuous_on s (\<lambda>x. x)"
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2694
  by (auto simp: uniformly_continuous_on_uniformity filterlim_def)
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2695
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2696
lemma uniformly_continuous_on_compose[continuous_intros]:
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2697
  "uniformly_continuous_on s g \<Longrightarrow> uniformly_continuous_on (g`s) f \<Longrightarrow> uniformly_continuous_on s (\<lambda>x. f (g x))"
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2698
  using filterlim_compose[of "\<lambda>(x, y). (f x, f y)" uniformity "uniformity_on (g`s)"  "\<lambda>(x, y). (g x, g y)" "uniformity_on s"]
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2699
  by (simp add: split_beta' uniformly_continuous_on_uniformity filterlim_inf filterlim_principal eventually_inf_principal mem_Times_iff)
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2700
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2701
lemma uniformly_continuous_imp_continuous: assumes f: "uniformly_continuous_on s f" shows "continuous_on s f"
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2702
  by (auto simp: filterlim_iff eventually_at_filter eventually_nhds_uniformity continuous_on_def
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2703
           elim: eventually_mono dest!: uniformly_continuous_onD[OF f])
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2704
62367
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2705
section \<open>Product Topology\<close>
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2706
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2707
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2708
subsection \<open>Product is a topological space\<close>
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2709
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2710
instantiation prod :: (topological_space, topological_space) topological_space
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2711
begin
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2712
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2713
definition open_prod_def[code del]:
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2714
  "open (S :: ('a \<times> 'b) set) \<longleftrightarrow>
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2715
    (\<forall>x\<in>S. \<exists>A B. open A \<and> open B \<and> x \<in> A \<times> B \<and> A \<times> B \<subseteq> S)"
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2716
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2717
lemma open_prod_elim:
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2718
  assumes "open S" and "x \<in> S"
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2719
  obtains A B where "open A" and "open B" and "x \<in> A \<times> B" and "A \<times> B \<subseteq> S"
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2720
using assms unfolding open_prod_def by fast
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2721
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2722
lemma open_prod_intro:
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2723
  assumes "\<And>x. x \<in> S \<Longrightarrow> \<exists>A B. open A \<and> open B \<and> x \<in> A \<times> B \<and> A \<times> B \<subseteq> S"
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2724
  shows "open S"
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2725
using assms unfolding open_prod_def by fast
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2726
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2727
instance
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2728
proof
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2729
  show "open (UNIV :: ('a \<times> 'b) set)"
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2730
    unfolding open_prod_def by auto
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2731
next
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2732
  fix S T :: "('a \<times> 'b) set"
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2733
  assume "open S" "open T"
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2734
  show "open (S \<inter> T)"
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2735
  proof (rule open_prod_intro)
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2736
    fix x assume x: "x \<in> S \<inter> T"
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2737
    from x have "x \<in> S" by simp
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2738
    obtain Sa Sb where A: "open Sa" "open Sb" "x \<in> Sa \<times> Sb" "Sa \<times> Sb \<subseteq> S"
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2739
      using \<open>open S\<close> and \<open>x \<in> S\<close> by (rule open_prod_elim)
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2740
    from x have "x \<in> T" by simp
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2741
    obtain Ta Tb where B: "open Ta" "open Tb" "x \<in> Ta \<times> Tb" "Ta \<times> Tb \<subseteq> T"
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2742
      using \<open>open T\<close> and \<open>x \<in> T\<close> by (rule open_prod_elim)
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2743
    let ?A = "Sa \<inter> Ta" and ?B = "Sb \<inter> Tb"
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2744
    have "open ?A \<and> open ?B \<and> x \<in> ?A \<times> ?B \<and> ?A \<times> ?B \<subseteq> S \<inter> T"
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2745
      using A B by (auto simp add: open_Int)
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2746
    thus "\<exists>A B. open A \<and> open B \<and> x \<in> A \<times> B \<and> A \<times> B \<subseteq> S \<inter> T"
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2747
      by fast
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2748
  qed
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2749
next
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2750
  fix K :: "('a \<times> 'b) set set"
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2751
  assume "\<forall>S\<in>K. open S" thus "open (\<Union>K)"
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2752
    unfolding open_prod_def by fast
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2753
qed
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2754
62101
26c0a70f78a3 add uniform spaces
hoelzl
parents: 62083
diff changeset
  2755
end
62367
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2756
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2757
declare [[code abort: "open::('a::topological_space*'b::topological_space) set \<Rightarrow> bool"]]
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2758
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2759
lemma open_Times: "open S \<Longrightarrow> open T \<Longrightarrow> open (S \<times> T)"
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2760
unfolding open_prod_def by auto
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2761
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2762
lemma fst_vimage_eq_Times: "fst -` S = S \<times> UNIV"
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2763
by auto
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2764
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2765
lemma snd_vimage_eq_Times: "snd -` S = UNIV \<times> S"
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2766
by auto
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2767
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2768
lemma open_vimage_fst: "open S \<Longrightarrow> open (fst -` S)"
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2769
by (simp add: fst_vimage_eq_Times open_Times)
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2770
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2771
lemma open_vimage_snd: "open S \<Longrightarrow> open (snd -` S)"
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2772
by (simp add: snd_vimage_eq_Times open_Times)
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2773
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2774
lemma closed_vimage_fst: "closed S \<Longrightarrow> closed (fst -` S)"
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2775
unfolding closed_open vimage_Compl [symmetric]
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2776
by (rule open_vimage_fst)
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2777
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2778
lemma closed_vimage_snd: "closed S \<Longrightarrow> closed (snd -` S)"
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2779
unfolding closed_open vimage_Compl [symmetric]
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2780
by (rule open_vimage_snd)
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2781
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2782
lemma closed_Times: "closed S \<Longrightarrow> closed T \<Longrightarrow> closed (S \<times> T)"
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2783
proof -
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2784
  have "S \<times> T = (fst -` S) \<inter> (snd -` T)" by auto
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2785
  thus "closed S \<Longrightarrow> closed T \<Longrightarrow> closed (S \<times> T)"
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2786
    by (simp add: closed_vimage_fst closed_vimage_snd closed_Int)
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2787
qed
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2788
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2789
lemma subset_fst_imageI: "A \<times> B \<subseteq> S \<Longrightarrow> y \<in> B \<Longrightarrow> A \<subseteq> fst ` S"
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2790
  unfolding image_def subset_eq by force
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2791
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2792
lemma subset_snd_imageI: "A \<times> B \<subseteq> S \<Longrightarrow> x \<in> A \<Longrightarrow> B \<subseteq> snd ` S"
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2793
  unfolding image_def subset_eq by force
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2794
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2795
lemma open_image_fst: assumes "open S" shows "open (fst ` S)"
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2796
proof (rule openI)
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2797
  fix x assume "x \<in> fst ` S"
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2798
  then obtain y where "(x, y) \<in> S" by auto
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2799
  then obtain A B where "open A" "open B" "x \<in> A" "y \<in> B" "A \<times> B \<subseteq> S"
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2800
    using \<open>open S\<close> unfolding open_prod_def by auto
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2801
  from \<open>A \<times> B \<subseteq> S\<close> \<open>y \<in> B\<close> have "A \<subseteq> fst ` S" by (rule subset_fst_imageI)
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2802
  with \<open>open A\<close> \<open>x \<in> A\<close> have "open A \<and> x \<in> A \<and> A \<subseteq> fst ` S" by simp
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2803
  then show "\<exists>T. open T \<and> x \<in> T \<and> T \<subseteq> fst ` S" by - (rule exI)
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2804
qed
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2805
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2806
lemma open_image_snd: assumes "open S" shows "open (snd ` S)"
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2807
proof (rule openI)
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2808
  fix y assume "y \<in> snd ` S"
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2809
  then obtain x where "(x, y) \<in> S" by auto
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2810
  then obtain A B where "open A" "open B" "x \<in> A" "y \<in> B" "A \<times> B \<subseteq> S"
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2811
    using \<open>open S\<close> unfolding open_prod_def by auto
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2812
  from \<open>A \<times> B \<subseteq> S\<close> \<open>x \<in> A\<close> have "B \<subseteq> snd ` S" by (rule subset_snd_imageI)
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2813
  with \<open>open B\<close> \<open>y \<in> B\<close> have "open B \<and> y \<in> B \<and> B \<subseteq> snd ` S" by simp
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2814
  then show "\<exists>T. open T \<and> y \<in> T \<and> T \<subseteq> snd ` S" by - (rule exI)
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2815
qed
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2816
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2817
lemma nhds_prod: "nhds (a, b) = nhds a \<times>\<^sub>F nhds b"
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2818
  unfolding nhds_def
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2819
proof (subst prod_filter_INF, auto intro!: antisym INF_greatest simp: principal_prod_principal)
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2820
  fix S T assume "open S" "a \<in> S" "open T" "b \<in> T"
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2821
  then show "(INF x : {S. open S \<and> (a, b) \<in> S}. principal x) \<le> principal (S \<times> T)"
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2822
    by (intro INF_lower) (auto intro!: open_Times)
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2823
next
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2824
  fix S' assume "open S'" "(a, b) \<in> S'"
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2825
  then obtain S T where "open S" "a \<in> S" "open T" "b \<in> T" "S \<times> T \<subseteq> S'"
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2826
    by (auto elim: open_prod_elim)
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2827
  then show "(INF x : {S. open S \<and> a \<in> S}. INF y : {S. open S \<and> b \<in> S}. principal (x \<times> y)) \<le> principal S'"
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2828
    by (auto intro!: INF_lower2)
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2829
qed
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2830
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2831
subsubsection \<open>Continuity of operations\<close>
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2832
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2833
lemma tendsto_fst [tendsto_intros]:
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2834
  assumes "(f \<longlongrightarrow> a) F"
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2835
  shows "((\<lambda>x. fst (f x)) \<longlongrightarrow> fst a) F"
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2836
proof (rule topological_tendstoI)
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2837
  fix S assume "open S" and "fst a \<in> S"
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2838
  then have "open (fst -` S)" and "a \<in> fst -` S"
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2839
    by (simp_all add: open_vimage_fst)
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2840
  with assms have "eventually (\<lambda>x. f x \<in> fst -` S) F"
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2841
    by (rule topological_tendstoD)
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2842
  then show "eventually (\<lambda>x. fst (f x) \<in> S) F"
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2843
    by simp
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2844
qed
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2845
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2846
lemma tendsto_snd [tendsto_intros]:
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2847
  assumes "(f \<longlongrightarrow> a) F"
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2848
  shows "((\<lambda>x. snd (f x)) \<longlongrightarrow> snd a) F"
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2849
proof (rule topological_tendstoI)
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2850
  fix S assume "open S" and "snd a \<in> S"
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2851
  then have "open (snd -` S)" and "a \<in> snd -` S"
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2852
    by (simp_all add: open_vimage_snd)
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2853
  with assms have "eventually (\<lambda>x. f x \<in> snd -` S) F"
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2854
    by (rule topological_tendstoD)
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2855
  then show "eventually (\<lambda>x. snd (f x) \<in> S) F"
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2856
    by simp
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2857
qed
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2858
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2859
lemma tendsto_Pair [tendsto_intros]:
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2860
  assumes "(f \<longlongrightarrow> a) F" and "(g \<longlongrightarrow> b) F"
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2861
  shows "((\<lambda>x. (f x, g x)) \<longlongrightarrow> (a, b)) F"
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2862
proof (rule topological_tendstoI)
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2863
  fix S assume "open S" and "(a, b) \<in> S"
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2864
  then obtain A B where "open A" "open B" "a \<in> A" "b \<in> B" "A \<times> B \<subseteq> S"
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2865
    unfolding open_prod_def by fast
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2866
  have "eventually (\<lambda>x. f x \<in> A) F"
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2867
    using \<open>(f \<longlongrightarrow> a) F\<close> \<open>open A\<close> \<open>a \<in> A\<close>
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2868
    by (rule topological_tendstoD)
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2869
  moreover
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2870
  have "eventually (\<lambda>x. g x \<in> B) F"
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2871
    using \<open>(g \<longlongrightarrow> b) F\<close> \<open>open B\<close> \<open>b \<in> B\<close>
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2872
    by (rule topological_tendstoD)
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2873
  ultimately
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2874
  show "eventually (\<lambda>x. (f x, g x) \<in> S) F"
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2875
    by (rule eventually_elim2)
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2876
       (simp add: subsetD [OF \<open>A \<times> B \<subseteq> S\<close>])
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2877
qed
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2878
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2879
lemma continuous_fst[continuous_intros]: "continuous F f \<Longrightarrow> continuous F (\<lambda>x. fst (f x))"
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2880
  unfolding continuous_def by (rule tendsto_fst)
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2881
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2882
lemma continuous_snd[continuous_intros]: "continuous F f \<Longrightarrow> continuous F (\<lambda>x. snd (f x))"
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2883
  unfolding continuous_def by (rule tendsto_snd)
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2884
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2885
lemma continuous_Pair[continuous_intros]: "continuous F f \<Longrightarrow> continuous F g \<Longrightarrow> continuous F (\<lambda>x. (f x, g x))"
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2886
  unfolding continuous_def by (rule tendsto_Pair)
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2887
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2888
lemma continuous_on_fst[continuous_intros]: "continuous_on s f \<Longrightarrow> continuous_on s (\<lambda>x. fst (f x))"
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2889
  unfolding continuous_on_def by (auto intro: tendsto_fst)
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2890
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2891
lemma continuous_on_snd[continuous_intros]: "continuous_on s f \<Longrightarrow> continuous_on s (\<lambda>x. snd (f x))"
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2892
  unfolding continuous_on_def by (auto intro: tendsto_snd)
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2893
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2894
lemma continuous_on_Pair[continuous_intros]: "continuous_on s f \<Longrightarrow> continuous_on s g \<Longrightarrow> continuous_on s (\<lambda>x. (f x, g x))"
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2895
  unfolding continuous_on_def by (auto intro: tendsto_Pair)
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2896
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2897
lemma continuous_on_swap[continuous_intros]: "continuous_on A prod.swap"
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2898
  by (simp add: prod.swap_def continuous_on_fst continuous_on_snd continuous_on_Pair continuous_on_id)
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2899
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2900
lemma continuous_on_swap_args:
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2901
  assumes "continuous_on (A\<times>B) (\<lambda>(x,y). d x y)"
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2902
    shows "continuous_on (B\<times>A) (\<lambda>(x,y). d y x)"
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2903
proof -
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2904
  have "(\<lambda>(x,y). d y x) = (\<lambda>(x,y). d x y) o prod.swap"
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2905
    by force
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2906
  then show ?thesis
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2907
    apply (rule ssubst)
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2908
    apply (rule continuous_on_compose)
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2909
     apply (force intro: continuous_on_subset [OF continuous_on_swap])
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2910
    apply (force intro: continuous_on_subset [OF assms])
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2911
    done
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2912
qed
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2913
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2914
lemma isCont_fst [simp]: "isCont f a \<Longrightarrow> isCont (\<lambda>x. fst (f x)) a"
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2915
  by (fact continuous_fst)
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2916
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2917
lemma isCont_snd [simp]: "isCont f a \<Longrightarrow> isCont (\<lambda>x. snd (f x)) a"
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2918
  by (fact continuous_snd)
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2919
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2920
lemma isCont_Pair [simp]: "\<lbrakk>isCont f a; isCont g a\<rbrakk> \<Longrightarrow> isCont (\<lambda>x. (f x, g x)) a"
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2921
  by (fact continuous_Pair)
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2922
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2923
subsubsection \<open>Separation axioms\<close>
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2924
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2925
instance prod :: (t0_space, t0_space) t0_space
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2926
proof
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2927
  fix x y :: "'a \<times> 'b" assume "x \<noteq> y"
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2928
  hence "fst x \<noteq> fst y \<or> snd x \<noteq> snd y"
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2929
    by (simp add: prod_eq_iff)
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2930
  thus "\<exists>U. open U \<and> (x \<in> U) \<noteq> (y \<in> U)"
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2931
    by (fast dest: t0_space elim: open_vimage_fst open_vimage_snd)
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2932
qed
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2933
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2934
instance prod :: (t1_space, t1_space) t1_space
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2935
proof
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2936
  fix x y :: "'a \<times> 'b" assume "x \<noteq> y"
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2937
  hence "fst x \<noteq> fst y \<or> snd x \<noteq> snd y"
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2938
    by (simp add: prod_eq_iff)
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2939
  thus "\<exists>U. open U \<and> x \<in> U \<and> y \<notin> U"
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2940
    by (fast dest: t1_space elim: open_vimage_fst open_vimage_snd)
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2941
qed
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2942
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2943
instance prod :: (t2_space, t2_space) t2_space
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2944
proof
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2945
  fix x y :: "'a \<times> 'b" assume "x \<noteq> y"
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2946
  hence "fst x \<noteq> fst y \<or> snd x \<noteq> snd y"
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2947
    by (simp add: prod_eq_iff)
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2948
  thus "\<exists>U V. open U \<and> open V \<and> x \<in> U \<and> y \<in> V \<and> U \<inter> V = {}"
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2949
    by (fast dest: hausdorff elim: open_vimage_fst open_vimage_snd)
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2950
qed
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2951
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2952
lemma isCont_swap[continuous_intros]: "isCont prod.swap a"
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2953
  using continuous_on_eq_continuous_within continuous_on_swap by blast
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2954
d2bc8a7e5fec move product topology to HOL-Complex_Main
hoelzl
parents: 62343
diff changeset
  2955
end