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