src/HOL/Library/Topology_Euclidean_Space.thy
author haftmann
Fri, 24 Apr 2009 18:01:39 +0200
changeset 30974 415f2fe37f62
parent 30952 7ab2716dd93b
child 31275 1ba01cdd9a9a
permissions -rw-r--r--
removed confusion around funpow
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
     1
(* Title:      Topology
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
     2
   Author:     Amine Chaieb, University of Cambridge
30267
171b3bd93c90 removed old/broken CVS Ids;
wenzelm
parents: 30262
diff changeset
     3
   Author:     Robert Himmelmann, TU Muenchen
171b3bd93c90 removed old/broken CVS Ids;
wenzelm
parents: 30262
diff changeset
     4
*)
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
     5
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
     6
header {* Elementary topology in Euclidean space. *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
     7
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
     8
theory Topology_Euclidean_Space
30654
254478a8dd05 dropped theory Arith_Tools
haftmann
parents: 30582
diff changeset
     9
imports SEQ Euclidean_Space
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
    10
begin
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
    11
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
    12
declare fstcart_pastecart[simp] sndcart_pastecart[simp]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
    13
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
    14
subsection{* General notion of a topology *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
    15
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
    16
definition "istopology L \<longleftrightarrow> {} \<in> L \<and> (\<forall>S \<in>L. \<forall>T \<in>L. S \<inter> T \<in> L) \<and> (\<forall>K. K \<subseteq>L \<longrightarrow> \<Union> K \<in> L)"
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
    17
typedef (open) 'a topology = "{L::('a set) set. istopology L}"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
    18
  morphisms "openin" "topology"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
    19
  unfolding istopology_def by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
    20
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
    21
lemma istopology_open_in[intro]: "istopology(openin U)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
    22
  using openin[of U] by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
    23
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
    24
lemma topology_inverse': "istopology U \<Longrightarrow> openin (topology U) = U"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
    25
  using topology_inverse[unfolded mem_def Collect_def] .
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
    26
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
    27
lemma topology_inverse_iff: "istopology U \<longleftrightarrow> openin (topology U) = U"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
    28
  using topology_inverse[of U] istopology_open_in[of "topology U"] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
    29
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
    30
lemma topology_eq: "T1 = T2 \<longleftrightarrow> (\<forall>S. openin T1 S \<longleftrightarrow> openin T2 S)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
    31
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
    32
  {assume "T1=T2" hence "\<forall>S. openin T1 S \<longleftrightarrow> openin T2 S" by simp}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
    33
  moreover
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
    34
  {assume H: "\<forall>S. openin T1 S \<longleftrightarrow> openin T2 S"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
    35
    hence "openin T1 = openin T2" by (metis mem_def set_ext)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
    36
    hence "topology (openin T1) = topology (openin T2)" by simp
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
    37
    hence "T1 = T2" unfolding openin_inverse .}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
    38
  ultimately show ?thesis by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
    39
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
    40
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
    41
text{* Infer the "universe" from union of all sets in the topology. *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
    42
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
    43
definition "topspace T =  \<Union>{S. openin T S}"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
    44
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
    45
subsection{* Main properties of open sets *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
    46
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
    47
lemma openin_clauses:
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
    48
  fixes U :: "'a topology"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
    49
  shows "openin U {}"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
    50
  "\<And>S T. openin U S \<Longrightarrow> openin U T \<Longrightarrow> openin U (S\<inter>T)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
    51
  "\<And>K. (\<forall>S \<in> K. openin U S) \<Longrightarrow> openin U (\<Union>K)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
    52
  using openin[of U] unfolding istopology_def Collect_def mem_def
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
    53
  by (metis mem_def subset_eq)+
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
    54
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
    55
lemma openin_subset[intro]: "openin U S \<Longrightarrow> S \<subseteq> topspace U"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
    56
  unfolding topspace_def by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
    57
lemma openin_empty[simp]: "openin U {}" by (simp add: openin_clauses)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
    58
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
    59
lemma openin_Int[intro]: "openin U S \<Longrightarrow> openin U T \<Longrightarrow> openin U (S \<inter> T)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
    60
  by (simp add: openin_clauses)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
    61
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
    62
lemma openin_Union[intro]: "(\<forall>S \<in>K. openin U S) \<Longrightarrow> openin U (\<Union> K)" by (simp add: openin_clauses)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
    63
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
    64
lemma openin_Un[intro]: "openin U S \<Longrightarrow> openin U T \<Longrightarrow> openin U (S \<union> T)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
    65
  using openin_Union[of "{S,T}" U] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
    66
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
    67
lemma openin_topspace[intro, simp]: "openin U (topspace U)" by (simp add: openin_Union topspace_def)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
    68
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
    69
lemma openin_subopen: "openin U S \<longleftrightarrow> (\<forall>x \<in> S. \<exists>T. openin U T \<and> x \<in> T \<and> T \<subseteq> S)" (is "?lhs \<longleftrightarrow> ?rhs")
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
    70
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
    71
  {assume ?lhs then have ?rhs by auto }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
    72
  moreover
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
    73
  {assume H: ?rhs
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
    74
    then obtain t where t: "\<forall>x\<in>S. openin U (t x) \<and> x \<in> t x \<and> t x \<subseteq> S"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
    75
      unfolding Ball_def ex_simps(6)[symmetric] choice_iff by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
    76
    from t have th0: "\<forall>x\<in> t`S. openin U x" by auto
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
    77
    have "\<Union> t`S = S" using t by auto
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
    78
    with openin_Union[OF th0] have "openin U S" by simp }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
    79
  ultimately show ?thesis by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
    80
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
    81
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
    82
subsection{* Closed sets *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
    83
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
    84
definition "closedin U S \<longleftrightarrow> S \<subseteq> topspace U \<and> openin U (topspace U - S)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
    85
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
    86
lemma closedin_subset: "closedin U S \<Longrightarrow> S \<subseteq> topspace U" by (metis closedin_def)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
    87
lemma closedin_empty[simp]: "closedin U {}" by (simp add: closedin_def)
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
    88
lemma closedin_topspace[intro,simp]:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
    89
  "closedin U (topspace U)" by (simp add: closedin_def)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
    90
lemma closedin_Un[intro]: "closedin U S \<Longrightarrow> closedin U T \<Longrightarrow> closedin U (S \<union> T)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
    91
  by (auto simp add: Diff_Un closedin_def)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
    92
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
    93
lemma Diff_Inter[intro]: "A - \<Inter>S = \<Union> {A - s|s. s\<in>S}" by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
    94
lemma closedin_Inter[intro]: assumes Ke: "K \<noteq> {}" and Kc: "\<forall>S \<in>K. closedin U S"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
    95
  shows "closedin U (\<Inter> K)"  using Ke Kc unfolding closedin_def Diff_Inter by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
    96
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
    97
lemma closedin_Int[intro]: "closedin U S \<Longrightarrow> closedin U T \<Longrightarrow> closedin U (S \<inter> T)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
    98
  using closedin_Inter[of "{S,T}" U] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
    99
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   100
lemma Diff_Diff_Int: "A - (A - B) = A \<inter> B" by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   101
lemma openin_closedin_eq: "openin U S \<longleftrightarrow> S \<subseteq> topspace U \<and> closedin U (topspace U - S)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   102
  apply (auto simp add: closedin_def)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   103
  apply (metis openin_subset subset_eq)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   104
  apply (auto simp add: Diff_Diff_Int)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   105
  apply (subgoal_tac "topspace U \<inter> S = S")
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   106
  by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   107
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   108
lemma openin_closedin:  "S \<subseteq> topspace U \<Longrightarrow> (openin U S \<longleftrightarrow> closedin U (topspace U - S))"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   109
  by (simp add: openin_closedin_eq)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   110
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   111
lemma openin_diff[intro]: assumes oS: "openin U S" and cT: "closedin U T" shows "openin U (S - T)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   112
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   113
  have "S - T = S \<inter> (topspace U - T)" using openin_subset[of U S]  oS cT
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   114
    by (auto simp add: topspace_def openin_subset)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   115
  then show ?thesis using oS cT by (auto simp add: closedin_def)
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
   116
qed
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   117
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   118
lemma closedin_diff[intro]: assumes oS: "closedin U S" and cT: "openin U T" shows "closedin U (S - T)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   119
proof-
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
   120
  have "S - T = S \<inter> (topspace U - T)" using closedin_subset[of U S]  oS cT
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   121
    by (auto simp add: topspace_def )
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   122
  then show ?thesis using oS cT by (auto simp add: openin_closedin_eq)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   123
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   124
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   125
subsection{* Subspace topology. *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   126
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   127
definition "subtopology U V = topology {S \<inter> V |S. openin U S}"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   128
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   129
lemma istopology_subtopology: "istopology {S \<inter> V |S. openin U S}" (is "istopology ?L")
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   130
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   131
  have "{} \<in> ?L" by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   132
  {fix A B assume A: "A \<in> ?L" and B: "B \<in> ?L"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   133
    from A B obtain Sa and Sb where Sa: "openin U Sa" "A = Sa \<inter> V" and Sb: "openin U Sb" "B = Sb \<inter> V" by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   134
    have "A\<inter>B = (Sa \<inter> Sb) \<inter> V" "openin U (Sa \<inter> Sb)"  using Sa Sb by blast+
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   135
    then have "A \<inter> B \<in> ?L" by blast}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   136
  moreover
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   137
  {fix K assume K: "K \<subseteq> ?L"
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
   138
    have th0: "?L = (\<lambda>S. S \<inter> V) ` openin U "
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
   139
      apply (rule set_ext)
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
   140
      apply (simp add: Ball_def image_iff)
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   141
      by (metis mem_def)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   142
    from K[unfolded th0 subset_image_iff]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   143
    obtain Sk where Sk: "Sk \<subseteq> openin U" "K = (\<lambda>S. S \<inter> V) ` Sk" by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   144
    have "\<Union>K = (\<Union>Sk) \<inter> V" using Sk by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   145
    moreover have "openin U (\<Union> Sk)" using Sk by (auto simp add: subset_eq mem_def)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   146
    ultimately have "\<Union>K \<in> ?L" by blast}
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
   147
  ultimately show ?thesis unfolding istopology_def by blast
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
   148
qed
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
   149
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
   150
lemma openin_subtopology:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   151
  "openin (subtopology U V) S \<longleftrightarrow> (\<exists> T. (openin U T) \<and> (S = T \<inter> V))"
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
   152
  unfolding subtopology_def topology_inverse'[OF istopology_subtopology]
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
   153
  by (auto simp add: Collect_def)
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   154
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   155
lemma topspace_subtopology: "topspace(subtopology U V) = topspace U \<inter> V"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   156
  by (auto simp add: topspace_def openin_subtopology)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   157
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
   158
lemma closedin_subtopology:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   159
  "closedin (subtopology U V) S \<longleftrightarrow> (\<exists>T. closedin U T \<and> S = T \<inter> V)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   160
  unfolding closedin_def topspace_subtopology
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   161
  apply (simp add: openin_subtopology)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   162
  apply (rule iffI)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   163
  apply clarify
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   164
  apply (rule_tac x="topspace U - T" in exI)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   165
  by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   166
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   167
lemma openin_subtopology_refl: "openin (subtopology U V) V \<longleftrightarrow> V \<subseteq> topspace U"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   168
  unfolding openin_subtopology
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   169
  apply (rule iffI, clarify)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   170
  apply (frule openin_subset[of U])  apply blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   171
  apply (rule exI[where x="topspace U"])
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   172
  by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   173
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
   174
lemma subtopology_superset: assumes UV: "topspace U \<subseteq> V"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   175
  shows "subtopology U V = U"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   176
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   177
  {fix S
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   178
    {fix T assume T: "openin U T" "S = T \<inter> V"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   179
      from T openin_subset[OF T(1)] UV have eq: "S = T" by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   180
      have "openin U S" unfolding eq using T by blast}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   181
    moreover
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   182
    {assume S: "openin U S"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   183
      hence "\<exists>T. openin U T \<and> S = T \<inter> V"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   184
	using openin_subset[OF S] UV by auto}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   185
    ultimately have "(\<exists>T. openin U T \<and> S = T \<inter> V) \<longleftrightarrow> openin U S" by blast}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   186
  then show ?thesis unfolding topology_eq openin_subtopology by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   187
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   188
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   189
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   190
lemma subtopology_topspace[simp]: "subtopology U (topspace U) = U"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   191
  by (simp add: subtopology_superset)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   192
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   193
lemma subtopology_UNIV[simp]: "subtopology U UNIV = U"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   194
  by (simp add: subtopology_superset)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   195
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   196
subsection{* The universal Euclidean versions are what we use most of the time *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   197
definition "open S \<longleftrightarrow> (\<forall>x \<in> S. \<exists>e >0. \<forall>x'. dist x' x < e \<longrightarrow> x' \<in> S)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   198
definition "closed S \<longleftrightarrow> open(UNIV - S)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   199
definition "euclidean = topology open"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   200
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   201
lemma open_empty[intro,simp]: "open {}" by (simp add: open_def)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   202
lemma open_UNIV[intro,simp]:  "open UNIV"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   203
  by (simp add: open_def, rule exI[where x="1"], auto)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   204
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   205
lemma open_inter[intro]: assumes S: "open S" and T: "open T"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   206
  shows "open (S \<inter> T)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   207
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   208
  note thS = S[unfolded open_def, rule_format]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   209
  note thT = T[unfolded open_def, rule_format]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   210
  {fix x assume x: "x \<in> S\<inter>T"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   211
    hence xS: "x \<in> S" and xT: "x \<in> T" by simp_all
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   212
    from thS[OF xS] obtain eS where eS: "eS > 0" "\<forall>x'. dist x' x < eS \<longrightarrow> x' \<in> S" by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   213
    from thT[OF xT] obtain eT where eT: "eT > 0" "\<forall>x'. dist x' x < eT \<longrightarrow> x' \<in> T" by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   214
    from real_lbound_gt_zero[OF eS(1) eT(1)] obtain e where e: "e > 0" "e < eS" "e < eT" by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   215
    { fix x' assume d: "dist x' x < e"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   216
      hence dS: "dist x' x < eS" and dT: "dist x' x < eT" using e by arith+
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   217
      from eS(2)[rule_format, OF dS] eT(2)[rule_format, OF dT] have "x' \<in> S\<inter>T" by blast}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   218
    hence "\<exists>e >0. \<forall>x'. dist x' x < e \<longrightarrow> x' \<in> (S\<inter>T)" using e by blast}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   219
  then show ?thesis unfolding open_def by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   220
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   221
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   222
lemma open_Union[intro]: "(\<forall>S\<in>K. open S) \<Longrightarrow> open (\<Union> K)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   223
  by (simp add: open_def) metis
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   224
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   225
lemma open_openin: "open S \<longleftrightarrow> openin euclidean S"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   226
  unfolding euclidean_def
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   227
  apply (rule cong[where x=S and y=S])
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   228
  apply (rule topology_inverse[symmetric])
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   229
  apply (auto simp add: istopology_def)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   230
  by (auto simp add: mem_def subset_eq)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   231
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   232
lemma topspace_euclidean: "topspace euclidean = UNIV"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   233
  apply (simp add: topspace_def)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   234
  apply (rule set_ext)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   235
  by (auto simp add: open_openin[symmetric])
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   236
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   237
lemma topspace_euclidean_subtopology[simp]: "topspace (subtopology euclidean S) = S"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   238
  by (simp add: topspace_euclidean topspace_subtopology)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   239
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   240
lemma closed_closedin: "closed S \<longleftrightarrow> closedin euclidean S"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   241
  by (simp add: closed_def closedin_def topspace_euclidean open_openin)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   242
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   243
lemma open_Un[intro]: "open S \<Longrightarrow> open T \<Longrightarrow> open (S\<union>T)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   244
  by (auto simp add: open_openin)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   245
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   246
lemma open_subopen: "open S \<longleftrightarrow> (\<forall>x\<in>S. \<exists>T. open T \<and> x \<in> T \<and> T \<subseteq> S)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   247
  by (simp add: open_openin openin_subopen[symmetric])
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   248
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   249
lemma closed_empty[intro, simp]: "closed {}" by (simp add: closed_closedin)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   250
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   251
lemma closed_UNIV[simp,intro]: "closed UNIV"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   252
  by (simp add: closed_closedin topspace_euclidean[symmetric])
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   253
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   254
lemma closed_Un[intro]: "closed S \<Longrightarrow> closed T \<Longrightarrow> closed (S\<union>T)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   255
  by (auto simp add: closed_closedin)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   256
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   257
lemma closed_Int[intro]: "closed S \<Longrightarrow> closed T \<Longrightarrow> closed (S\<inter>T)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   258
  by (auto simp add: closed_closedin)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   259
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   260
lemma closed_Inter[intro]: assumes H: "\<forall>S \<in>K. closed S" shows "closed (\<Inter>K)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   261
  using H
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   262
  unfolding closed_closedin
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   263
  apply (cases "K = {}")
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   264
  apply (simp add: closed_closedin[symmetric])
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   265
  apply (rule closedin_Inter, auto)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   266
  done
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   267
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   268
lemma open_closed: "open S \<longleftrightarrow> closed (UNIV - S)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   269
  by (simp add: open_openin closed_closedin topspace_euclidean openin_closedin_eq)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   270
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   271
lemma closed_open: "closed S \<longleftrightarrow> open(UNIV - S)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   272
  by (simp add: open_openin closed_closedin topspace_euclidean closedin_def)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   273
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   274
lemma open_diff[intro]: "open S \<Longrightarrow> closed T \<Longrightarrow> open (S - T)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   275
  by (auto simp add: open_openin closed_closedin)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   276
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   277
lemma closed_diff[intro]: "closed S \<Longrightarrow> open T \<Longrightarrow> closed(S-T)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   278
  by (auto simp add: open_openin closed_closedin)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   279
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   280
lemma open_Inter[intro]: assumes fS: "finite S" and h: "\<forall>T\<in>S. open T" shows "open (\<Inter>S)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   281
  using h by (induct rule: finite_induct[OF fS], auto)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   282
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   283
lemma closed_Union[intro]: assumes fS: "finite S" and h: "\<forall>T\<in>S. closed T" shows "closed (\<Union>S)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   284
  using h by (induct rule: finite_induct[OF fS], auto)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   285
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   286
subsection{* Open and closed balls. *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   287
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   288
definition "ball x e = {y. dist x y < e}"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   289
definition "cball x e = {y. dist x y \<le> e}"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   290
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
   291
lemma mem_ball[simp]: "y \<in> ball x e \<longleftrightarrow> dist x y < e" by (simp add: ball_def)
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
   292
lemma mem_cball[simp]: "y \<in> cball x e \<longleftrightarrow> dist x y \<le> e" by (simp add: cball_def)
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   293
lemma mem_ball_0[simp]: "x \<in> ball 0 e \<longleftrightarrow> norm x < e" by (simp add: dist_def)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   294
lemma mem_cball_0[simp]: "x \<in> cball 0 e \<longleftrightarrow> norm x \<le> e" by (simp add: dist_def)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   295
lemma centre_in_cball[simp]: "x \<in> cball x e \<longleftrightarrow> 0\<le> e"  by simp
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   296
lemma ball_subset_cball[simp,intro]: "ball x e \<subseteq> cball x e" by (simp add: subset_eq)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   297
lemma subset_ball[intro]: "d <= e ==> ball x d \<subseteq> ball x e" by (simp add: subset_eq)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   298
lemma subset_cball[intro]: "d <= e ==> cball x d \<subseteq> cball x e" by (simp add: subset_eq)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   299
lemma ball_max_Un: "ball a (max r s) = ball a r \<union> ball a s"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   300
  by (simp add: expand_set_eq) arith
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   301
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   302
lemma ball_min_Int: "ball a (min r s) = ball a r \<inter> ball a s"
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
   303
  by (simp add: expand_set_eq)
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   304
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   305
subsection{* Topological properties of open balls *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   306
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
   307
lemma diff_less_iff: "(a::real) - b > 0 \<longleftrightarrow> a > b"
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
   308
  "(a::real) - b < 0 \<longleftrightarrow> a < b"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   309
  "a - b < c \<longleftrightarrow> a < c +b" "a - b > c \<longleftrightarrow> a > c +b" by arith+
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
   310
lemma diff_le_iff: "(a::real) - b \<ge> 0 \<longleftrightarrow> a \<ge> b" "(a::real) - b \<le> 0 \<longleftrightarrow> a \<le> b"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   311
  "a - b \<le> c \<longleftrightarrow> a \<le> c +b" "a - b \<ge> c \<longleftrightarrow> a \<ge> c +b"  by arith+
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   312
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   313
lemma open_ball[intro, simp]: "open (ball x e)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   314
  unfolding open_def ball_def Collect_def Ball_def mem_def
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   315
  unfolding dist_sym
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   316
  apply clarify
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   317
  apply (rule_tac x="e - dist xa x" in exI)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   318
  using dist_triangle_alt[where z=x]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   319
  apply (clarsimp simp add: diff_less_iff)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   320
  apply atomize
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   321
  apply (erule_tac x="x'" in allE)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   322
  apply (erule_tac x="xa" in allE)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   323
  by arith
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   324
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   325
lemma centre_in_ball[simp]: "x \<in> ball x e \<longleftrightarrow> e > 0" by (metis mem_ball dist_refl)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   326
lemma open_contains_ball: "open S \<longleftrightarrow> (\<forall>x\<in>S. \<exists>e>0. ball x e \<subseteq> S)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   327
  unfolding open_def subset_eq mem_ball Ball_def dist_sym ..
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   328
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   329
lemma open_contains_ball_eq: "open S \<Longrightarrow> \<forall>x. x\<in>S \<longleftrightarrow> (\<exists>e>0. ball x e \<subseteq> S)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   330
  by (metis open_contains_ball subset_eq centre_in_ball)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   331
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   332
lemma ball_eq_empty[simp]: "ball x e = {} \<longleftrightarrow> e \<le> 0"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   333
  unfolding mem_ball expand_set_eq
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   334
  apply (simp add: not_less)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   335
  by (metis dist_pos_le order_trans dist_refl)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   336
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   337
lemma ball_empty[intro]: "e \<le> 0 ==> ball x e = {}" by simp
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   338
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   339
subsection{* Basic "localization" results are handy for connectedness. *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   340
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   341
lemma openin_open: "openin (subtopology euclidean U) S \<longleftrightarrow> (\<exists>T. open T \<and> (S = U \<inter> T))"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   342
  by (auto simp add: openin_subtopology open_openin[symmetric])
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   343
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   344
lemma openin_open_Int[intro]: "open S \<Longrightarrow> openin (subtopology euclidean U) (U \<inter> S)"
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
   345
  by (auto simp add: openin_open)
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
   346
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
   347
lemma open_openin_trans[trans]:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   348
 "open S \<Longrightarrow> open T \<Longrightarrow> T \<subseteq> S \<Longrightarrow> openin (subtopology euclidean S) T"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   349
  by (metis Int_absorb1  openin_open_Int)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   350
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   351
lemma open_subset:  "S \<subseteq> T \<Longrightarrow> open S \<Longrightarrow> openin (subtopology euclidean T) S"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   352
  by (auto simp add: openin_open)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   353
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   354
lemma closedin_closed: "closedin (subtopology euclidean U) S \<longleftrightarrow> (\<exists>T. closed T \<and> S = U \<inter> T)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   355
  by (simp add: closedin_subtopology closed_closedin Int_ac)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   356
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   357
lemma closedin_closed_Int: "closed S ==> closedin (subtopology euclidean U) (U \<inter> S)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   358
  by (metis closedin_closed)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   359
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   360
lemma closed_closedin_trans: "closed S \<Longrightarrow> closed T \<Longrightarrow> T \<subseteq> S \<Longrightarrow> closedin (subtopology euclidean S) T"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   361
  apply (subgoal_tac "S \<inter> T = T" )
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   362
  apply auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   363
  apply (frule closedin_closed_Int[of T S])
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   364
  by simp
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   365
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   366
lemma closed_subset: "S \<subseteq> T \<Longrightarrow> closed S \<Longrightarrow> closedin (subtopology euclidean T) S"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   367
  by (auto simp add: closedin_closed)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   368
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
   369
lemma openin_euclidean_subtopology_iff: "openin (subtopology euclidean U) S
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   370
  \<longleftrightarrow> S \<subseteq> U \<and> (\<forall>x\<in>S. \<exists>e>0. \<forall>x'\<in>U. dist x' x < e \<longrightarrow> x'\<in> S)" (is "?lhs \<longleftrightarrow> ?rhs")
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   371
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   372
  {assume ?lhs hence ?rhs unfolding openin_subtopology open_openin[symmetric]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   373
      by (simp add: open_def) blast}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   374
  moreover
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   375
  {assume SU: "S \<subseteq> U" and H: "\<And>x. x \<in> S \<Longrightarrow> \<exists>e>0. \<forall>x'\<in>U. dist x' x < e \<longrightarrow> x' \<in> S"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   376
    from H obtain d where d: "\<And>x . x\<in> S \<Longrightarrow> d x > 0 \<and> (\<forall>x' \<in> U. dist x' x < d x \<longrightarrow> x' \<in> S)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   377
      by metis
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   378
    let ?T = "\<Union>{B. \<exists>x\<in>S. B = ball x (d x)}"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   379
    have oT: "open ?T" by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   380
    { fix x assume "x\<in>S"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   381
      hence "x \<in> \<Union>{B. \<exists>x\<in>S. B = ball x (d x)}"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   382
	apply simp apply(rule_tac x="ball x(d x)" in exI) apply auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   383
	unfolding dist_refl using d[of x] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   384
      hence "x\<in> ?T \<inter> U" using SU and `x\<in>S` by auto  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   385
    moreover
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   386
    { fix y assume "y\<in>?T"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   387
      then obtain B where "y\<in>B" "B\<in>{B. \<exists>x\<in>S. B = ball x (d x)}" by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   388
      then obtain x where "x\<in>S" and x:"y \<in> ball x (d x)" by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   389
      assume "y\<in>U"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   390
      hence "y\<in>S" using d[OF `x\<in>S`] and x by(auto simp add: dist_sym) }
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
   391
    ultimately have "S = ?T \<inter> U" by blast
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   392
    with oT have ?lhs unfolding openin_subtopology open_openin[symmetric] by blast}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   393
  ultimately show ?thesis by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   394
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   395
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   396
text{* These "transitivity" results are handy too. *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   397
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
   398
lemma openin_trans[trans]: "openin (subtopology euclidean T) S \<Longrightarrow> openin (subtopology euclidean U) T
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   399
  \<Longrightarrow> openin (subtopology euclidean U) S"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   400
  unfolding open_openin openin_open by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   401
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   402
lemma openin_open_trans: "openin (subtopology euclidean T) S \<Longrightarrow> open T \<Longrightarrow> open S"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   403
  by (auto simp add: openin_open intro: openin_trans)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   404
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
   405
lemma closedin_trans[trans]:
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
   406
 "closedin (subtopology euclidean T) S \<Longrightarrow>
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   407
           closedin (subtopology euclidean U) T
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   408
           ==> closedin (subtopology euclidean U) S"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   409
  by (auto simp add: closedin_closed closed_closedin closed_Inter Int_assoc)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   410
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   411
lemma closedin_closed_trans: "closedin (subtopology euclidean T) S \<Longrightarrow> closed T \<Longrightarrow> closed S"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   412
  by (auto simp add: closedin_closed intro: closedin_trans)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   413
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   414
subsection{* Connectedness *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   415
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   416
definition "connected S \<longleftrightarrow>
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
   417
  ~(\<exists>e1 e2. open e1 \<and> open e2 \<and> S \<subseteq> (e1 \<union> e2) \<and> (e1 \<inter> e2 \<inter> S = {})
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   418
  \<and> ~(e1 \<inter> S = {}) \<and> ~(e2 \<inter> S = {}))"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   419
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
   420
lemma connected_local:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   421
 "connected S \<longleftrightarrow> ~(\<exists>e1 e2.
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   422
                 openin (subtopology euclidean S) e1 \<and>
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   423
                 openin (subtopology euclidean S) e2 \<and>
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   424
                 S \<subseteq> e1 \<union> e2 \<and>
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   425
                 e1 \<inter> e2 = {} \<and>
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   426
                 ~(e1 = {}) \<and>
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   427
                 ~(e2 = {}))"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   428
unfolding connected_def openin_open by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   429
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   430
lemma exists_diff: "(\<exists>S. P(UNIV - S)) \<longleftrightarrow> (\<exists>S. P S)" (is "?lhs \<longleftrightarrow> ?rhs")
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   431
proof-
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
   432
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   433
  {assume "?lhs" hence ?rhs by blast }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   434
  moreover
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   435
  {fix S assume H: "P S"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   436
    have "S = UNIV - (UNIV - S)" by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   437
    with H have "P (UNIV - (UNIV - S))" by metis }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   438
  ultimately show ?thesis by metis
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   439
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   440
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   441
lemma connected_clopen: "connected S \<longleftrightarrow>
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   442
        (\<forall>T. openin (subtopology euclidean S) T \<and>
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   443
            closedin (subtopology euclidean S) T \<longrightarrow> T = {} \<or> T = S)" (is "?lhs \<longleftrightarrow> ?rhs")
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   444
proof-
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
   445
  have " \<not> connected S \<longleftrightarrow> (\<exists>e1 e2. open e1 \<and> open (UNIV - e2) \<and> S \<subseteq> e1 \<union> (UNIV - e2) \<and> e1 \<inter> (UNIV - e2) \<inter> S = {} \<and> e1 \<inter> S \<noteq> {} \<and> (UNIV - e2) \<inter> S \<noteq> {})"
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
   446
    unfolding connected_def openin_open closedin_closed
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   447
    apply (subst exists_diff) by blast
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
   448
  hence th0: "connected S \<longleftrightarrow> \<not> (\<exists>e2 e1. closed e2 \<and> open e1 \<and> S \<subseteq> e1 \<union> (UNIV - e2) \<and> e1 \<inter> (UNIV - e2) \<inter> S = {} \<and> e1 \<inter> S \<noteq> {} \<and> (UNIV - e2) \<inter> S \<noteq> {})"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   449
    (is " _ \<longleftrightarrow> \<not> (\<exists>e2 e1. ?P e2 e1)") apply (simp add: closed_def) by metis
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   450
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   451
  have th1: "?rhs \<longleftrightarrow> \<not> (\<exists>t' t. closed t'\<and>t = S\<inter>t' \<and> t\<noteq>{} \<and> t\<noteq>S \<and> (\<exists>t'. open t' \<and> t = S \<inter> t'))"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   452
    (is "_ \<longleftrightarrow> \<not> (\<exists>t' t. ?Q t' t)")
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   453
    unfolding connected_def openin_open closedin_closed by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   454
  {fix e2
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   455
    {fix e1 have "?P e2 e1 \<longleftrightarrow> (\<exists>t.  closed e2 \<and> t = S\<inter>e2 \<and> open e1 \<and> t = S\<inter>e1 \<and> t\<noteq>{} \<and> t\<noteq>S)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   456
	by auto}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   457
    then have "(\<exists>e1. ?P e2 e1) \<longleftrightarrow> (\<exists>t. ?Q e2 t)" by metis}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   458
  then have "\<forall>e2. (\<exists>e1. ?P e2 e1) \<longleftrightarrow> (\<exists>t. ?Q e2 t)" by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   459
  then show ?thesis unfolding th0 th1 by simp
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   460
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   461
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   462
lemma connected_empty[simp, intro]: "connected {}"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   463
  by (simp add: connected_def)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   464
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   465
subsection{* Hausdorff and other separation properties *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   466
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
   467
lemma hausdorff:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   468
  assumes xy: "x \<noteq> y"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   469
  shows "\<exists>U V. open U \<and> open V \<and> x\<in> U \<and> y \<in> V \<and> (U \<inter> V = {})" (is "\<exists>U V. ?P U V")
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   470
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   471
  let ?U = "ball x (dist x y / 2)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   472
  let ?V = "ball y (dist x y / 2)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   473
  have th0: "\<And>d x y z. (d x z :: real) <= d x y + d y z \<Longrightarrow> d y z = d z y
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   474
               ==> ~(d x y * 2 < d x z \<and> d z y * 2 < d x z)" by arith
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   475
  have "?P ?U ?V" using dist_pos_lt[OF xy] th0[of dist,OF dist_triangle dist_sym]
30654
254478a8dd05 dropped theory Arith_Tools
haftmann
parents: 30582
diff changeset
   476
    by (auto simp add: dist_refl expand_set_eq less_divide_eq_number_of1)
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   477
  then show ?thesis by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   478
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   479
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   480
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 = {})"
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
   481
  using hausdorff[of x y] by blast
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   482
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   483
lemma separation_t1: "x \<noteq> y \<longleftrightarrow> (\<exists>U V. open U \<and> open V \<and> x \<in>U \<and> y\<notin> U \<and> x\<notin>V \<and> y\<in>V)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   484
  using separation_t2[of x y] by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   485
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   486
lemma separation_t0: "x \<noteq> y \<longleftrightarrow> (\<exists>U. open U \<and> ~(x\<in>U \<longleftrightarrow> y\<in>U))" by(metis separation_t1)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   487
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   488
subsection{* Limit points *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   489
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
   490
definition islimpt:: "real ^'n::finite \<Rightarrow> (real^'n) set \<Rightarrow> bool" (infixr "islimpt" 60) where
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   491
  islimpt_def: "x islimpt S \<longleftrightarrow> (\<forall>T. x\<in>T \<longrightarrow> open T \<longrightarrow> (\<exists>y\<in>S. y\<in>T \<and> y\<noteq>x))"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   492
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   493
  (* FIXME: Sure this form is OK????*)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   494
lemma islimptE: assumes "x islimpt S" and "x \<in> T" and "open T"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   495
  obtains "(\<exists>y\<in>S. y\<in>T \<and> y\<noteq>x)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   496
  using assms unfolding islimpt_def by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   497
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   498
lemma islimpt_subset: "x islimpt S \<Longrightarrow> S \<subseteq> T ==> x islimpt T" by (auto simp add: islimpt_def)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   499
lemma islimpt_approachable: "x islimpt S \<longleftrightarrow> (\<forall>e>0. \<exists>x'\<in>S. x' \<noteq> x \<and> dist x' x < e)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   500
  unfolding islimpt_def
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   501
  apply auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   502
  apply(erule_tac x="ball x e" in allE)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   503
  apply (auto simp add: dist_refl)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   504
  apply(rule_tac x=y in bexI) apply (auto simp add: dist_sym)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   505
  by (metis open_def dist_sym open_ball centre_in_ball mem_ball)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   506
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   507
lemma islimpt_approachable_le: "x islimpt S \<longleftrightarrow> (\<forall>e>0. \<exists>x'\<in> S. x' \<noteq> x \<and> dist x' x <= e)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   508
  unfolding islimpt_approachable
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   509
  using approachable_lt_le[where f="\<lambda>x'. dist x' x" and P="\<lambda>x'. \<not> (x'\<in>S \<and> x'\<noteq>x)"]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   510
  by metis
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   511
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
   512
lemma islimpt_UNIV[simp, intro]: "(x:: real ^'n::finite) islimpt UNIV"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   513
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   514
  {
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   515
    fix e::real assume ep: "e>0"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   516
    from vector_choose_size[of "e/2"] ep have "\<exists>(c:: real ^'n). norm c = e/2" by auto
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
   517
    then obtain c ::"real^'n" where c: "norm c = e/2" by blast
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   518
    let ?x = "x + c"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   519
    have "?x \<noteq> x" using c ep by (auto simp add: norm_eq_0_imp)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   520
    moreover have "dist ?x x < e" using c ep apply simp by norm
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   521
    ultimately have "\<exists>x'. x' \<noteq> x\<and> dist x' x < e" by blast}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   522
  then show ?thesis unfolding islimpt_approachable by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   523
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   524
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   525
lemma closed_limpt: "closed S \<longleftrightarrow> (\<forall>x. x islimpt S \<longrightarrow> x \<in> S)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   526
  unfolding closed_def
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   527
  apply (subst open_subopen)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   528
  apply (simp add: islimpt_def subset_eq)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   529
  by (metis DiffE DiffI UNIV_I insertCI insert_absorb mem_def)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   530
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   531
lemma islimpt_EMPTY[simp]: "\<not> x islimpt {}"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   532
  unfolding islimpt_approachable apply auto by ferrack
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   533
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
   534
lemma closed_positive_orthant: "closed {x::real^'n::finite. \<forall>i. 0 \<le>x$i}"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   535
proof-
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
   536
  let ?U = "UNIV :: 'n set"
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
   537
  let ?O = "{x::real^'n. \<forall>i. x$i\<ge>0}"
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
   538
  {fix x:: "real^'n" and i::'n assume H: "\<forall>e>0. \<exists>x'\<in>?O. x' \<noteq> x \<and> dist x' x < e"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   539
    and xi: "x$i < 0"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   540
    from xi have th0: "-x$i > 0" by arith
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   541
    from H[rule_format, OF th0] obtain x' where x': "x' \<in>?O" "x' \<noteq> x" "dist x' x < -x $ i" by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   542
      have th:" \<And>b a (x::real). abs x <= b \<Longrightarrow> b <= a ==> ~(a + x < 0)" by arith
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   543
      have th': "\<And>x (y::real). x < 0 \<Longrightarrow> 0 <= y ==> abs x <= abs (y - x)" by arith
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
   544
      have th1: "\<bar>x$i\<bar> \<le> \<bar>(x' - x)$i\<bar>" using x'(1) xi
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   545
	apply (simp only: vector_component)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   546
	by (rule th') auto
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
   547
      have th2: "\<bar>dist x x'\<bar> \<ge> \<bar>(x' - x)$i\<bar>" using  component_le_norm[of "x'-x" i]
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   548
	apply (simp add: dist_def) by norm
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   549
      from th[OF th1 th2] x'(3) have False by (simp add: dist_sym dist_pos_le) }
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
   550
  then show ?thesis unfolding closed_limpt islimpt_approachable
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   551
    unfolding not_le[symmetric] by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   552
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   553
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   554
lemma finite_set_avoid: assumes fS: "finite S" shows  "\<exists>d>0. \<forall>x\<in>S. x \<noteq> a \<longrightarrow> d <= dist a x"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   555
proof(induct rule: finite_induct[OF fS])
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   556
  case 1 thus ?case apply auto by ferrack
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   557
next
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
   558
  case (2 x F)
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   559
  from 2 obtain d where d: "d >0" "\<forall>x\<in>F. x\<noteq>a \<longrightarrow> d \<le> dist a x" by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   560
  {assume "x = a" hence ?case using d by auto  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   561
  moreover
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   562
  {assume xa: "x\<noteq>a"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   563
    let ?d = "min d (dist a x)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   564
    have dp: "?d > 0" using xa d(1) using dist_nz by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   565
    from d have d': "\<forall>x\<in>F. x\<noteq>a \<longrightarrow> ?d \<le> dist a x" by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   566
    with dp xa have ?case by(auto intro!: exI[where x="?d"]) }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   567
  ultimately show ?case by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   568
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   569
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   570
lemma islimpt_finite: assumes fS: "finite S" shows "\<not> a islimpt S"
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
   571
  unfolding islimpt_approachable
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   572
  using finite_set_avoid[OF fS, of a] by (metis dist_sym  not_le)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   573
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   574
lemma islimpt_Un: "x islimpt (S \<union> T) \<longleftrightarrow> x islimpt S \<or> x islimpt T"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   575
  apply (rule iffI)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   576
  defer
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   577
  apply (metis Un_upper1 Un_upper2 islimpt_subset)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   578
  unfolding islimpt_approachable
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   579
  apply auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   580
  apply (erule_tac x="min e ea" in allE)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   581
  apply auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   582
  done
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   583
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
   584
lemma discrete_imp_closed:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   585
  assumes e: "0 < e" and d: "\<forall>x \<in> S. \<forall>y \<in> S. norm(y - x) < e \<longrightarrow> y = x"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   586
  shows "closed S"
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
   587
proof-
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   588
  {fix x assume C: "\<forall>e>0. \<exists>x'\<in>S. x' \<noteq> x \<and> dist x' x < e"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   589
    from e have e2: "e/2 > 0" by arith
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   590
    from C[rule_format, OF e2] obtain y where y: "y \<in> S" "y\<noteq>x" "dist y x < e/2" by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   591
    let ?m = "min (e/2) (dist x y) "
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   592
    from e2 y(2) have mp: "?m > 0" by (simp add: dist_nz[THEN sym])
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   593
    from C[rule_format, OF mp] obtain z where z: "z \<in> S" "z\<noteq>x" "dist z x < ?m" by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   594
    have th: "norm (z - y) < e" using z y by norm
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
   595
    from d[rule_format, OF y(1) z(1) th] y z
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   596
    have False by (auto simp add: dist_sym)}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   597
  then show ?thesis by (metis islimpt_approachable closed_limpt)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   598
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   599
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   600
subsection{* Interior of a Set *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   601
definition "interior S = {x. \<exists>T. open T \<and> x \<in> T \<and> T \<subseteq> S}"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   602
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   603
lemma interior_eq: "interior S = S \<longleftrightarrow> open S"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   604
  apply (simp add: expand_set_eq interior_def)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   605
  apply (subst (2) open_subopen) by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   606
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   607
lemma interior_open: "open S ==> (interior S = S)" by (metis interior_eq)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   608
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   609
lemma interior_empty[simp]: "interior {} = {}" by (simp add: interior_def)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   610
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   611
lemma open_interior[simp, intro]: "open(interior S)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   612
  apply (simp add: interior_def)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   613
  apply (subst open_subopen) by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   614
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   615
lemma interior_interior[simp]: "interior(interior S) = interior S" by (metis interior_eq open_interior)
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
   616
lemma interior_subset: "interior S \<subseteq> S" by (auto simp add: interior_def)
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   617
lemma subset_interior: "S \<subseteq> T ==> (interior S) \<subseteq> (interior T)" by (auto simp add: interior_def)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   618
lemma interior_maximal: "T \<subseteq> S \<Longrightarrow> open T ==> T \<subseteq> (interior S)" by (auto simp add: interior_def)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   619
lemma interior_unique: "T \<subseteq> S \<Longrightarrow> open T  \<Longrightarrow> (\<forall>T'. T' \<subseteq> S \<and> open T' \<longrightarrow> T' \<subseteq> T) \<Longrightarrow> interior S = T"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   620
  by (metis equalityI interior_maximal interior_subset open_interior)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   621
lemma mem_interior: "x \<in> interior S \<longleftrightarrow> (\<exists>e. 0 < e \<and> ball x e \<subseteq> S)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   622
  apply (simp add: interior_def)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   623
  by (metis open_contains_ball centre_in_ball open_ball subset_trans)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   624
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   625
lemma open_subset_interior: "open S ==> S \<subseteq> interior T \<longleftrightarrow> S \<subseteq> T"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   626
  by (metis interior_maximal interior_subset subset_trans)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   627
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   628
lemma interior_inter[simp]: "interior(S \<inter> T) = interior S \<inter> interior T"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   629
  apply (rule equalityI, simp)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   630
  apply (metis Int_lower1 Int_lower2 subset_interior)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   631
  by (metis Int_mono interior_subset open_inter open_interior open_subset_interior)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   632
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   633
lemma interior_limit_point[intro]: assumes x: "x \<in> interior S" shows "x islimpt S"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   634
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   635
  from x obtain e where e: "e>0" "\<forall>x'. dist x x' < e \<longrightarrow> x' \<in> S"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   636
    unfolding mem_interior subset_eq Ball_def mem_ball by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   637
  {fix d::real assume d: "d>0"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   638
    let ?m = "min d e / 2"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   639
    have mde2: "?m \<ge> 0" using e(1) d(1) by arith
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
   640
    from vector_choose_dist[OF mde2, of x]
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   641
    obtain y where y: "dist x y = ?m" by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   642
    have th: "dist x y < e" "dist x y < d" unfolding y using e(1) d(1) by arith+
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
   643
    have "\<exists>x'\<in>S. x'\<noteq> x \<and> dist x' x < d"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   644
      apply (rule bexI[where x=y])
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   645
      using e th y by (auto simp add: dist_sym)}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   646
  then show ?thesis unfolding islimpt_approachable by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   647
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   648
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
   649
lemma interior_closed_Un_empty_interior:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   650
  assumes cS: "closed S" and iT: "interior T = {}"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   651
  shows "interior(S \<union> T) = interior S"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   652
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   653
  have "interior S \<subseteq> interior (S\<union>T)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   654
    by (rule subset_interior, blast)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   655
  moreover
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   656
  {fix x e assume e: "e > 0" "\<forall>x' \<in> ball x e. x'\<in>(S\<union>T)"
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
   657
    {fix y assume y: "y \<in> ball x e"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   658
      {fix d::real assume d: "d > 0"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   659
	let ?k = "min d (e - dist x y)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   660
	have kp: "?k > 0" using d e(1) y[unfolded mem_ball] by norm
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
   661
	have "?k/2 \<ge> 0" using kp by simp
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   662
	then obtain w where w: "dist y w = ?k/ 2" by (metis vector_choose_dist)
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
   663
	from iT[unfolded expand_set_eq mem_interior]
30654
254478a8dd05 dropped theory Arith_Tools
haftmann
parents: 30582
diff changeset
   664
	have "\<not> ball w (?k/4) \<subseteq> T" using kp by (auto simp add: less_divide_eq_number_of1)
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   665
	then obtain z where z: "dist w z < ?k/4" "z \<notin> T" by (auto simp add: subset_eq)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   666
	have "z \<notin> T \<and> z\<noteq> y \<and> dist z y < d \<and> dist x z < e" using z apply simp
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
   667
	  using w e(1) d apply (auto simp only: dist_sym)
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   668
	  apply (auto simp add: min_def cong del: if_weak_cong)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   669
	  apply (cases "d \<le> e - dist x y", auto simp add: ring_simps cong del: if_weak_cong)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   670
	  apply norm
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   671
	  apply (cases "d \<le> e - dist x y", auto simp add: ring_simps not_le not_less cong del: if_weak_cong)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   672
	  apply norm
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   673
	  apply norm
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   674
	  apply (cases "d \<le> e - dist x y", auto simp add: ring_simps not_le not_less cong del: if_weak_cong)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   675
	  apply norm
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   676
	  apply norm
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   677
	  done
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   678
	then have "\<exists>z. z \<notin> T \<and> z\<noteq> y \<and> dist z y < d \<and> dist x z < e" by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   679
	then have "\<exists>x' \<in>S. x'\<noteq>y \<and> dist x' y < d" using e by auto}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   680
      then have "y\<in>S" by (metis islimpt_approachable cS closed_limpt) }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   681
    then have "x \<in> interior S" unfolding mem_interior using e(1) by blast}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   682
  hence "interior (S\<union>T) \<subseteq> interior S" unfolding mem_interior Ball_def subset_eq by blast
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
   683
  ultimately show ?thesis by blast
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   684
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   685
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   686
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   687
subsection{* Closure of a Set *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   688
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   689
definition "closure S = S \<union> {x | x. x islimpt S}"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   690
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   691
lemma closure_interior: "closure S = UNIV - interior (UNIV - S)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   692
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   693
  { fix x
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   694
    have "x\<in>UNIV - interior (UNIV - S) \<longleftrightarrow> x \<in> closure S"  (is "?lhs = ?rhs")
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   695
    proof
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   696
      let ?exT = "\<lambda> y. (\<exists>T. open T \<and> y \<in> T \<and> T \<subseteq> UNIV - S)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   697
      assume "?lhs"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   698
      hence *:"\<not> ?exT x"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   699
	unfolding interior_def
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   700
	by simp
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   701
      { assume "\<not> ?rhs"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   702
	hence False using *
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   703
	  unfolding closure_def islimpt_def
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   704
	  by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   705
      }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   706
      thus "?rhs"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   707
	by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   708
    next
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   709
      assume "?rhs" thus "?lhs"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   710
	unfolding closure_def interior_def islimpt_def
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   711
	by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   712
    qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   713
  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   714
  thus ?thesis
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   715
    by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   716
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   717
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   718
lemma interior_closure: "interior S = UNIV - (closure (UNIV - S))"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   719
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   720
  { fix x
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   721
    have "x \<in> interior S \<longleftrightarrow> x \<in> UNIV - (closure (UNIV - S))"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   722
      unfolding interior_def closure_def islimpt_def
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   723
      by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   724
  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   725
  thus ?thesis
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   726
    by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   727
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   728
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   729
lemma closed_closure[simp, intro]: "closed (closure S)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   730
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   731
  have "closed (UNIV - interior (UNIV -S))" by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   732
  thus ?thesis using closure_interior[of S] by simp
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   733
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   734
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   735
lemma closure_hull: "closure S = closed hull S"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   736
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   737
  have "S \<subseteq> closure S"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   738
    unfolding closure_def
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   739
    by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   740
  moreover
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   741
  have "closed (closure S)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   742
    using closed_closure[of S]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   743
    by assumption
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   744
  moreover
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   745
  { fix t
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   746
    assume *:"S \<subseteq> t" "closed t"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   747
    { fix x
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   748
      assume "x islimpt S"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   749
      hence "x islimpt t" using *(1)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   750
	using islimpt_subset[of x, of S, of t]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   751
	by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   752
    }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   753
    with * have "closure S \<subseteq> t"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   754
      unfolding closure_def
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   755
      using closed_limpt[of t]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   756
      by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   757
  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   758
  ultimately show ?thesis
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   759
    using hull_unique[of S, of "closure S", of closed]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   760
    unfolding mem_def
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   761
    by simp
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   762
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   763
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   764
lemma closure_eq: "closure S = S \<longleftrightarrow> closed S"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   765
  unfolding closure_hull
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   766
  using hull_eq[of closed, unfolded mem_def, OF  closed_Inter, of S]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   767
  by (metis mem_def subset_eq)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   768
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   769
lemma closure_closed[simp]: "closed S \<Longrightarrow> closure S = S"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   770
  using closure_eq[of S]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   771
  by simp
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   772
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   773
lemma closure_closure[simp]: "closure (closure S) = closure S"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   774
  unfolding closure_hull
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   775
  using hull_hull[of closed S]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   776
  by assumption
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   777
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   778
lemma closure_subset: "S \<subseteq> closure S"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   779
  unfolding closure_hull
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   780
  using hull_subset[of S closed]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   781
  by assumption
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   782
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   783
lemma subset_closure: "S \<subseteq> T \<Longrightarrow> closure S \<subseteq> closure T"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   784
  unfolding closure_hull
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   785
  using hull_mono[of S T closed]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   786
  by assumption
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   787
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   788
lemma closure_minimal: "S \<subseteq> T \<Longrightarrow>  closed T \<Longrightarrow> closure S \<subseteq> T"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   789
  using hull_minimal[of S T closed]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   790
  unfolding closure_hull mem_def
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   791
  by simp
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   792
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   793
lemma closure_unique: "S \<subseteq> T \<and> closed T \<and> (\<forall> T'. S \<subseteq> T' \<and> closed T' \<longrightarrow> T \<subseteq> T') \<Longrightarrow> closure S = T"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   794
  using hull_unique[of S T closed]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   795
  unfolding closure_hull mem_def
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   796
  by simp
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   797
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   798
lemma closure_empty[simp]: "closure {} = {}"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   799
  using closed_empty closure_closed[of "{}"]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   800
  by simp
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   801
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   802
lemma closure_univ[simp]: "closure UNIV = UNIV"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   803
  using closure_closed[of UNIV]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   804
  by simp
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   805
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   806
lemma closure_eq_empty: "closure S = {} \<longleftrightarrow> S = {}"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   807
  using closure_empty closure_subset[of S]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   808
  by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   809
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   810
lemma closure_subset_eq: "closure S \<subseteq> S \<longleftrightarrow> closed S"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   811
  using closure_eq[of S] closure_subset[of S]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   812
  by simp
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   813
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   814
lemma open_inter_closure_eq_empty:
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   815
  "open S \<Longrightarrow> (S \<inter> closure T) = {} \<longleftrightarrow> S \<inter> T = {}"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   816
  using open_subset_interior[of S "UNIV - T"]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   817
  using interior_subset[of "UNIV - T"]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   818
  unfolding closure_interior
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   819
  by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   820
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   821
lemma open_inter_closure_subset: "open S \<Longrightarrow> (S \<inter> (closure T)) \<subseteq> closure(S \<inter> T)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   822
proof
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   823
  fix x
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   824
  assume as: "open S" "x \<in> S \<inter> closure T"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   825
  { assume *:"x islimpt T"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   826
    { fix e::real
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   827
      assume "e > 0"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   828
      from as `open S` obtain e' where "e' > 0" and e':"\<forall>x'. dist x' x < e' \<longrightarrow> x' \<in> S"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   829
	unfolding open_def
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   830
	by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   831
      let ?e = "min e e'"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   832
      from `e>0` `e'>0` have "?e > 0"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   833
	by simp
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   834
      then obtain y where y:"y\<in>T" "y \<noteq> x \<and> dist y x < ?e"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   835
	using islimpt_approachable[of x T] using *
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   836
	by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   837
      hence "\<exists>x'\<in>S \<inter> T. x' \<noteq> x \<and> dist x' x < e" using e'
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   838
	using y
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   839
	by(rule_tac x=y in bexI, simp+)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   840
    }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   841
    hence "x islimpt S \<inter> T"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   842
      using islimpt_approachable[of x "S \<inter> T"]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   843
      by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   844
  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   845
  then show "x \<in> closure (S \<inter> T)" using as
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   846
    unfolding closure_def
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   847
    by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   848
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   849
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   850
lemma closure_complement: "closure(UNIV - S) = UNIV - interior(S)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   851
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   852
  have "S = UNIV - (UNIV - S)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   853
    by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   854
  thus ?thesis
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   855
    unfolding closure_interior
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   856
    by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   857
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   858
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   859
lemma interior_complement: "interior(UNIV - S) = UNIV - closure(S)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   860
  unfolding closure_interior
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   861
  by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   862
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   863
subsection{* Frontier (aka boundary) *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   864
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   865
definition "frontier S = closure S - interior S"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   866
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   867
lemma frontier_closed: "closed(frontier S)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   868
  by (simp add: frontier_def closed_diff closed_closure)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   869
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   870
lemma frontier_closures: "frontier S = (closure S) \<inter> (closure(UNIV - S))"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   871
  by (auto simp add: frontier_def interior_closure)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   872
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   873
lemma frontier_straddle: "a \<in> frontier S \<longleftrightarrow> (\<forall>e>0. (\<exists>x\<in>S. dist a x < e) \<and> (\<exists>x. x \<notin> S \<and> dist a x < e))" (is "?lhs \<longleftrightarrow> ?rhs")
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   874
proof
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   875
  assume "?lhs"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   876
  { fix e::real
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   877
    assume "e > 0"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   878
    let ?rhse = "(\<exists>x\<in>S. dist a x < e) \<and> (\<exists>x. x \<notin> S \<and> dist a x < e)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   879
    { assume "a\<in>S"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   880
      have "\<exists>x\<in>S. dist a x < e" using dist_refl[of a] `e>0` `a\<in>S` by(rule_tac x=a in bexI) auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   881
      moreover have "\<exists>x. x \<notin> S \<and> dist a x < e" using `?lhs` `a\<in>S`
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   882
	unfolding frontier_closures closure_def islimpt_def using dist_refl[of a] `e>0`
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   883
	by (auto, erule_tac x="ball a e" in allE, auto)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   884
      ultimately have ?rhse by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   885
    }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   886
    moreover
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   887
    { assume "a\<notin>S"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   888
      hence ?rhse using `?lhs`
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   889
	unfolding frontier_closures closure_def islimpt_def
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   890
	using open_ball[of a e] dist_refl[of a] `e > 0`
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   891
	by (auto, erule_tac x = "ball a e" in allE, auto)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   892
    }
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
   893
    ultimately have ?rhse by auto
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   894
  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   895
  thus ?rhs by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   896
next
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   897
  assume ?rhs
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   898
  moreover
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   899
  { fix T assume "a\<notin>S" and
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   900
    as:"\<forall>e>0. (\<exists>x\<in>S. dist a x < e) \<and> (\<exists>x. x \<notin> S \<and> dist a x < e)" "a \<notin> S" "a \<in> T" "open T"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   901
    from `open T` `a \<in> T` have "\<exists>e>0. ball a e \<subseteq> T" unfolding open_contains_ball[of T] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   902
    then obtain e where "e>0" "ball a e \<subseteq> T" by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   903
    then obtain y where y:"y\<in>S" "dist a y < e"  using as(1) by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   904
    have "\<exists>y\<in>S. y \<in> T \<and> y \<noteq> a"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   905
      using `dist a y < e` `ball a e \<subseteq> T` unfolding ball_def using `y\<in>S` `a\<notin>S` by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   906
  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   907
  hence "a \<in> closure S" unfolding closure_def islimpt_def using `?rhs` by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   908
  moreover
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   909
  { fix T assume "a \<in> T"  "open T" "a\<in>S"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   910
    then obtain e where "e>0" and balle: "ball a e \<subseteq> T" unfolding open_contains_ball using `?rhs` by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   911
    obtain x where "x \<notin> S" "dist a x < e" using `?rhs` using `e>0` by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   912
    hence "\<exists>y\<in>UNIV - S. y \<in> T \<and> y \<noteq> a" using balle `a\<in>S` unfolding ball_def by (rule_tac x=x in bexI)auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   913
  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   914
  hence "a islimpt (UNIV - S) \<or> a\<notin>S" unfolding islimpt_def by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   915
  ultimately show ?lhs unfolding frontier_closures using closure_def[of "UNIV - S"] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   916
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   917
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
   918
lemma frontier_subset_closed: "closed S \<Longrightarrow> frontier S \<subseteq> S"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   919
  by (metis frontier_def closure_closed Diff_subset)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   920
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   921
lemma frontier_empty: "frontier {} = {}"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   922
  by (simp add: frontier_def closure_empty)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   923
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   924
lemma frontier_subset_eq: "frontier S \<subseteq> S \<longleftrightarrow> closed S"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   925
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   926
  { assume "frontier S \<subseteq> S"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   927
    hence "closure S \<subseteq> S" using interior_subset unfolding frontier_def by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   928
    hence "closed S" using closure_subset_eq by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   929
  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   930
  thus ?thesis using frontier_subset_closed[of S] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   931
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   932
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
   933
lemma frontier_complement: "frontier(UNIV - S) = frontier S"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   934
  by (auto simp add: frontier_def closure_complement interior_complement)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   935
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   936
lemma frontier_disjoint_eq: "frontier S \<inter> S = {} \<longleftrightarrow> open S"
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
   937
  using frontier_complement frontier_subset_eq[of "UNIV - S"]
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   938
  unfolding open_closed by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   939
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   940
subsection{* A variant of nets (Slightly non-standard but good for our purposes). *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   941
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
   942
typedef (open) 'a net =
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
   943
  "{g :: 'a \<Rightarrow> 'a \<Rightarrow> bool. \<forall>x y. (\<forall>z. g z x \<longrightarrow> g z y) \<or> (\<forall>z. g z y \<longrightarrow> g z x)}"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   944
  morphisms "netord" "mknet" by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   945
lemma net: "(\<forall>z. netord n z x \<longrightarrow> netord n z y) \<or> (\<forall>z. netord n z y \<longrightarrow> netord n z x)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   946
  using netord[of n] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   947
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   948
lemma oldnet: "netord n x x \<Longrightarrow> netord n y y \<Longrightarrow>
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
   949
  \<exists>z. netord n z z \<and> (\<forall>w. netord n w z \<longrightarrow> netord n w x \<and> netord n w y)"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   950
  by (metis net)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   951
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
   952
lemma net_dilemma:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   953
 "\<exists>a. (\<exists>x. netord net x a) \<and> (\<forall>x. netord net x a \<longrightarrow> P x) \<Longrightarrow>
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   954
         \<exists>b. (\<exists>x. netord net x b) \<and> (\<forall>x. netord net x b \<longrightarrow> Q x)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   955
         \<Longrightarrow> \<exists>c. (\<exists>x. netord net x c) \<and> (\<forall>x. netord net x c \<longrightarrow> P x \<and> Q x)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   956
  by (metis net)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   957
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   958
subsection{* Common nets and The "within" modifier for nets. *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   959
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   960
definition "at a = mknet(\<lambda>x y. 0 < dist x a \<and> dist x a <= dist y a)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   961
definition "at_infinity = mknet(\<lambda>x y. norm x \<ge> norm y)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   962
definition "sequentially = mknet(\<lambda>(m::nat) n. m >= n)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   963
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
   964
definition within :: "'a net \<Rightarrow> 'a set \<Rightarrow> 'a net" (infixr "within" 70) where
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   965
  within_def: "net within S = mknet (\<lambda>x y. netord net x y \<and> x \<in> S)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   966
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
   967
definition indirection :: "real ^'n::finite \<Rightarrow> real ^'n \<Rightarrow> (real ^'n) net" (infixr "indirection" 70) where
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   968
  indirection_def: "a indirection v = (at a) within {b. \<exists>c\<ge>0. b - a = c*s v}"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   969
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   970
text{* Prove That They are all nets. *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   971
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   972
lemma mknet_inverse': "netord (mknet r) = r \<longleftrightarrow> (\<forall>x y. (\<forall>z. r z x \<longrightarrow> r z y) \<or> (\<forall>z. r z y \<longrightarrow> r z x))"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   973
  using mknet_inverse[of r] apply (auto simp add: netord_inverse) by (metis net)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   974
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
   975
method_setup net = {*
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
   976
 let
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   977
  val ss1 = HOL_basic_ss addsimps [@{thm expand_fun_eq} RS sym]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   978
  val ss2 = HOL_basic_ss addsimps [@{thm mknet_inverse'}]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   979
  fun tac ths = ObjectLogic.full_atomize_tac THEN' Simplifier.simp_tac (ss1 addsimps ths) THEN' Simplifier.asm_full_simp_tac ss2
30549
d2d7874648bd simplified method setup;
wenzelm
parents: 30510
diff changeset
   980
  in Attrib.thms >> (fn ths => K (SIMPLE_METHOD' (tac ths))) end
d2d7874648bd simplified method setup;
wenzelm
parents: 30510
diff changeset
   981
*} "reduces goals about net"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   982
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   983
lemma at: "\<And>x y. netord (at a) x y \<longleftrightarrow> 0 < dist x a \<and> dist x a <= dist y a"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   984
  apply (net at_def)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   985
  by (metis dist_sym real_le_linear real_le_trans)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   986
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
   987
lemma at_infinity:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   988
 "\<And>x y. netord at_infinity x y \<longleftrightarrow> norm x >= norm y"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   989
  apply (net at_infinity_def)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   990
  apply (metis real_le_linear real_le_trans)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   991
  done
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   992
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   993
lemma sequentially: "\<And>m n. netord sequentially m n \<longleftrightarrow> m >= n"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   994
  apply (net sequentially_def)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   995
  apply (metis linorder_linear min_max.le_supI2 min_max.sup_absorb1)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   996
  done
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   997
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   998
lemma within: "netord (n within S) x y \<longleftrightarrow> netord n x y \<and> x \<in> S"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
   999
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1000
  have "\<forall>x y. (\<forall>z. netord n z x \<and> z \<in> S \<longrightarrow> netord n z y) \<or> (\<forall>z. netord n z y \<and> z \<in> S \<longrightarrow> netord n z x)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1001
    by (metis net)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1002
  thus ?thesis
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1003
    unfolding within_def
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1004
    using mknet_inverse[of "\<lambda>x y. netord n x y \<and> x \<in> S"]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1005
    by simp
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1006
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1007
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1008
lemma in_direction: "netord (a indirection v) x y \<longleftrightarrow> 0 < dist x a \<and> dist x a \<le> dist y a \<and> (\<exists>c \<ge> 0. x - a = c *s v)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1009
  by (simp add: within at indirection_def)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1010
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1011
lemma within_UNIV: "at x within UNIV = at x"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1012
  by (simp add: within_def at_def netord_inverse)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1013
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1014
subsection{* Identify Trivial limits, where we can't approach arbitrarily closely. *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1015
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1016
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  1017
definition "trivial_limit (net:: 'a net) \<longleftrightarrow>
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1018
  (\<forall>(a::'a) b. a = b) \<or> (\<exists>(a::'a) b. a \<noteq> b \<and> (\<forall>x. ~(netord (net) x a) \<and> ~(netord(net) x b)))"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1019
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1020
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  1021
lemma trivial_limit_within: "trivial_limit (at (a::real^'n::finite) within S) \<longleftrightarrow> ~(a islimpt S)"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1022
proof-
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  1023
  {assume "\<forall>(a::real^'n) b. a = b" hence "\<not> a islimpt S"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1024
      apply (simp add: islimpt_approachable_le)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1025
      by (rule exI[where x=1], auto)}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1026
  moreover
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1027
  {fix b c assume bc: "b \<noteq> c" "\<forall>x. \<not> netord (at a within S) x b \<and> \<not> netord (at a within S) x c"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1028
    have "dist a b > 0 \<or> dist a c > 0" using bc by (auto simp add: within at dist_nz[THEN sym])
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  1029
    then have "\<not> a islimpt S"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1030
      using bc
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1031
      unfolding within at dist_nz islimpt_approachable_le
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1032
      by(auto simp add: dist_triangle dist_sym dist_eq_0[THEN sym]) }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1033
  moreover
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  1034
  {assume "\<not> a islimpt S"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1035
    then obtain e where e: "e > 0" "\<forall>x' \<in> S. x' \<noteq> a \<longrightarrow> dist x' a > e"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1036
      unfolding islimpt_approachable_le by (auto simp add: not_le)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1037
    from e vector_choose_dist[of e a] obtain b where b: "dist a b = e" by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1038
    from b e(1) have "a \<noteq> b" by (simp add: dist_nz)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1039
    moreover have "\<forall>x. \<not> ((0 < dist x a \<and> dist x a \<le> dist a a) \<and> x \<in> S) \<and>
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1040
                 \<not> ((0 < dist x a \<and> dist x a \<le> dist b a) \<and> x \<in> S)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1041
      using e(2) b by (auto simp add: dist_refl dist_sym)
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  1042
    ultimately have "trivial_limit (at a within S)"  unfolding trivial_limit_def within at
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1043
      by blast}
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  1044
  ultimately show ?thesis unfolding trivial_limit_def by blast
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1045
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1046
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1047
lemma trivial_limit_at: "~(trivial_limit (at a))"
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  1048
  apply (subst within_UNIV[symmetric])
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1049
  by (simp add: trivial_limit_within islimpt_UNIV)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1050
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1051
lemma trivial_limit_at_infinity: "~(trivial_limit (at_infinity :: ('a::{norm,zero_neq_one}) net))"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1052
  apply (simp add: trivial_limit_def at_infinity)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1053
  by (metis order_refl zero_neq_one)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1054
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1055
lemma trivial_limit_sequentially:  "~(trivial_limit sequentially)"
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  1056
  by (auto simp add: trivial_limit_def sequentially)
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1057
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1058
subsection{* Some property holds "sufficiently close" to the limit point. *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1059
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1060
definition "eventually P net \<longleftrightarrow> trivial_limit net \<or> (\<exists>y. (\<exists>x. netord net x y) \<and> (\<forall>x. netord net x y \<longrightarrow> P x))"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1061
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1062
lemma eventually_happens: "eventually P net ==> trivial_limit net \<or> (\<exists>x. P x)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1063
  by (metis eventually_def)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1064
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1065
lemma eventually_within_le: "eventually P (at a within S) \<longleftrightarrow>
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1066
        (\<exists>d>0. \<forall>x\<in>S. 0 < dist x a \<and> dist x a <= d \<longrightarrow> P x)" (is "?lhs = ?rhs")
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1067
proof
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1068
  assume "?lhs"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1069
  moreover
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1070
  { assume "\<not> a islimpt S"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1071
    then obtain e where "e>0" and e:"\<forall>x'\<in>S. \<not> (x' \<noteq> a \<and> dist x' a \<le> e)" unfolding islimpt_approachable_le by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1072
    hence  "?rhs" apply auto apply (rule_tac x=e in exI) by auto  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1073
  moreover
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1074
  { assume "\<exists>y. (\<exists>x. netord (at a within S) x y) \<and> (\<forall>x. netord (at a within S) x y \<longrightarrow> P x)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1075
    then obtain x y where xy:"netord (at a within S) x y \<and> (\<forall>x. netord (at a within S) x y \<longrightarrow> P x)" by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1076
    hence "?rhs" unfolding within at by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1077
  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1078
  ultimately show "?rhs" unfolding eventually_def trivial_limit_within by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1079
next
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1080
  assume "?rhs"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1081
  then obtain d where "d>0" and d:"\<forall>x\<in>S. 0 < dist x a \<and> dist x a \<le> d \<longrightarrow> P x" by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1082
  thus "?lhs"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1083
    unfolding eventually_def trivial_limit_within islimpt_approachable_le within at unfolding dist_nz[THEN sym] by (clarsimp, rule_tac x=d in exI, auto)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1084
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1085
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1086
lemma eventually_within:  " eventually P (at a within S) \<longleftrightarrow>
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1087
        (\<exists>d>0. \<forall>x\<in>S. 0 < dist x a \<and> dist x a < d \<longrightarrow> P x)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1088
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1089
  { fix d
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1090
    assume "d>0" "\<forall>x\<in>S. 0 < dist x a \<and> dist x a < d \<longrightarrow> P x"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1091
    hence "\<forall>x\<in>S. 0 < dist x a \<and> dist x a \<le> (d/2) \<longrightarrow> P x" using order_less_imp_le by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1092
  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1093
  thus ?thesis unfolding eventually_within_le using approachable_lt_le
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1094
    by (auto, rule_tac x="d/2" in exI, auto)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1095
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1096
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1097
lemma eventually_at: "eventually P (at a) \<longleftrightarrow> (\<exists>d>0. \<forall>x. 0 < dist x a \<and> dist x a < d \<longrightarrow> P x)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1098
  apply (subst within_UNIV[symmetric])
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1099
  by (simp add: eventually_within)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1100
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1101
lemma eventually_sequentially: "eventually P sequentially \<longleftrightarrow> (\<exists>N. \<forall>n\<ge>N. P n)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1102
  apply (simp add: eventually_def sequentially trivial_limit_sequentially)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1103
apply (metis dlo_simps(7) dlo_simps(9) le_maxI2 min_max.le_iff_sup min_max.sup_absorb1 order_antisym_conv) done
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1104
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1105
(* FIXME Declare this with P::'a::some_type \<Rightarrow> bool *)
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  1106
lemma eventually_at_infinity: "eventually (P::(real^'n::finite \<Rightarrow> bool)) at_infinity \<longleftrightarrow> (\<exists>b. \<forall>x. norm x >= b \<longrightarrow> P x)" (is "?lhs = ?rhs")
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1107
proof
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1108
  assume "?lhs" thus "?rhs"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1109
    unfolding eventually_def at_infinity
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1110
    by (auto simp add: trivial_limit_at_infinity)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1111
next
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1112
  assume "?rhs"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1113
  then obtain b where b:"\<forall>x. b \<le> norm x \<longrightarrow> P x" and "b\<ge>0"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1114
    by (metis norm_ge_zero real_le_linear real_le_trans)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1115
  obtain y::"real^'n" where y:"norm y = b" using `b\<ge>0`
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1116
    using vector_choose_size[of b] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1117
  thus "?lhs" unfolding eventually_def at_infinity using b y by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1118
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1119
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1120
lemma always_eventually: "(\<forall>(x::'a::zero_neq_one). P x) ==> eventually P net"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1121
  apply (auto simp add: eventually_def trivial_limit_def )
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1122
  by (rule exI[where x=0], rule exI[where x=1], rule zero_neq_one)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1123
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1124
text{* Combining theorems for "eventually" *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1125
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1126
lemma eventually_and: " eventually (\<lambda>x. P x \<and> Q x) net \<longleftrightarrow> eventually P net \<and> eventually Q net"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1127
  apply (simp add: eventually_def)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1128
  apply (cases "trivial_limit net")
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  1129
  using net_dilemma[of net P Q] by auto
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1130
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1131
lemma eventually_mono: "(\<forall>x. P x \<longrightarrow> Q x) \<Longrightarrow> eventually P net  \<Longrightarrow> eventually Q net"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1132
  by (metis eventually_def)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1133
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1134
lemma eventually_mp: "eventually (\<lambda>x. P x \<longrightarrow> Q x) net \<Longrightarrow> eventually P net \<Longrightarrow> eventually Q net"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1135
  apply (atomize(full))
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1136
  unfolding imp_conjL[symmetric] eventually_and[symmetric]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1137
  by (auto simp add: eventually_def)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1138
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1139
lemma eventually_false: "eventually (\<lambda>x. False) net \<longleftrightarrow> trivial_limit net"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1140
  by (auto simp add: eventually_def)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1141
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1142
lemma not_eventually: "(\<forall>x. \<not> P x ) \<Longrightarrow> ~(trivial_limit net) ==> ~(eventually P net)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1143
  by (auto simp add: eventually_def)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1144
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1145
subsection{* Limits, defined as vacuously true when the limit is trivial. *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1146
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  1147
definition tendsto:: "('a \<Rightarrow> real ^'n::finite) \<Rightarrow> real ^'n \<Rightarrow> 'a net \<Rightarrow> bool" (infixr "--->" 55) where
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1148
  tendsto_def: "(f ---> l) net  \<longleftrightarrow> (\<forall>e>0. eventually (\<lambda>x. dist (f x) l < e) net)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1149
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1150
lemma tendstoD: "(f ---> l) net \<Longrightarrow> e>0 \<Longrightarrow> eventually (\<lambda>x. dist (f x) l < e) net"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1151
  unfolding tendsto_def by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1152
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1153
  text{* Notation Lim to avoid collition with lim defined in analysis *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1154
definition "Lim net f = (THE l. (f ---> l) net)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1155
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  1156
lemma Lim:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1157
 "(f ---> l) net \<longleftrightarrow>
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1158
        trivial_limit net \<or>
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1159
        (\<forall>e>0. \<exists>y. (\<exists>x. netord net x y) \<and>
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1160
                           (\<forall>x. netord(net) x y \<longrightarrow> dist (f x) l < e))"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1161
  by (auto simp add: tendsto_def eventually_def)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1162
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1163
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1164
text{* Show that they yield usual definitions in the various cases. *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1165
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1166
lemma Lim_within_le: "(f ---> l)(at a within S) \<longleftrightarrow>
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1167
           (\<forall>e>0. \<exists>d>0. \<forall>x\<in>S. 0 < dist x a  \<and> dist x a  <= d \<longrightarrow> dist (f x) l < e)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1168
  by (auto simp add: tendsto_def eventually_within_le)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1169
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1170
lemma Lim_within: "(f ---> l) (at a within S) \<longleftrightarrow>
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1171
        (\<forall>e >0. \<exists>d>0. \<forall>x \<in> S. 0 < dist x a  \<and> dist x a  < d  \<longrightarrow> dist (f x) l < e)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1172
  by (auto simp add: tendsto_def eventually_within)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1173
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1174
lemma Lim_at: "(f ---> l) (at a) \<longleftrightarrow>
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1175
        (\<forall>e >0. \<exists>d>0. \<forall>x. 0 < dist x a  \<and> dist x a  < d  \<longrightarrow> dist (f x) l < e)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1176
  by (auto simp add: tendsto_def eventually_at)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1177
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1178
lemma Lim_at_infinity:
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  1179
  "(f ---> l) at_infinity \<longleftrightarrow> (\<forall>e>0. \<exists>b. \<forall>x::real^'n::finite. norm x >= b \<longrightarrow> dist (f x) l < e)"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1180
  by (auto simp add: tendsto_def eventually_at_infinity)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1181
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  1182
lemma Lim_sequentially:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1183
 "(S ---> l) sequentially \<longleftrightarrow>
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1184
          (\<forall>e>0. \<exists>N. \<forall>n\<ge>N. dist (S n) l < e)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1185
  by (auto simp add: tendsto_def eventually_sequentially)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1186
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1187
lemma Lim_eventually: "eventually (\<lambda>x. f x = l) net \<Longrightarrow> (f ---> l) net"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1188
  by (auto simp add: eventually_def Lim dist_refl)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1189
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1190
text{* The expected monotonicity property. *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1191
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1192
lemma Lim_within_empty:  "(f ---> l) (at x within {})"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1193
  by (simp add: Lim_within_le)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1194
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1195
lemma Lim_within_subset: "(f ---> l) (at a within S) \<Longrightarrow> T \<subseteq> S \<Longrightarrow> (f ---> l) (at a within T)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1196
  apply (auto simp add: Lim_within_le)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1197
  by (metis subset_eq)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1198
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1199
lemma Lim_Un: assumes "(f ---> l) (at x within S)" "(f ---> l) (at x within T)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1200
  shows "(f ---> l) (at x within (S \<union> T))"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1201
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1202
  { fix e::real assume "e>0"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1203
    obtain d1 where d1:"d1>0" "\<forall>xa\<in>T. 0 < dist xa x \<and> dist xa x < d1 \<longrightarrow> dist (f xa) l < e" using assms unfolding Lim_within using `e>0` by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1204
    obtain d2 where d2:"d2>0" "\<forall>xa\<in>S. 0 < dist xa x \<and> dist xa x < d2 \<longrightarrow> dist (f xa) l < e" using assms unfolding Lim_within using `e>0` by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1205
    have "\<exists>d>0. \<forall>xa\<in>S \<union> T. 0 < dist xa x \<and> dist xa x < d \<longrightarrow> dist (f xa) l < e" using d1 d2
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1206
      by (rule_tac x="min d1 d2" in exI)auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1207
  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1208
  thus ?thesis unfolding Lim_within by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1209
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1210
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  1211
lemma Lim_Un_univ:
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  1212
 "(f ---> l) (at x within S) \<Longrightarrow> (f ---> l) (at x within T) \<Longrightarrow>  S \<union> T = (UNIV::(real^'n::finite) set)
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1213
        ==> (f ---> l) (at x)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1214
  by (metis Lim_Un within_UNIV)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1215
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1216
text{* Interrelations between restricted and unrestricted limits. *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1217
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1218
lemma Lim_at_within: "(f ---> l)(at a) ==> (f ---> l)(at a within S)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1219
  apply (simp add: Lim_at Lim_within)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1220
  by metis
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1221
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1222
lemma Lim_within_open:
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1223
  assumes"a \<in> S" "open S"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1224
  shows "(f ---> l)(at a within S) \<longleftrightarrow> (f ---> l)(at a)" (is "?lhs \<longleftrightarrow> ?rhs")
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1225
proof
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1226
  assume ?lhs
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1227
  { fix e::real assume "e>0"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1228
    obtain d  where d:  "d >0" "\<forall>x\<in>S. 0 < dist x a \<and> dist x a < d \<longrightarrow> dist (f x) l < e" using `?lhs` `e>0` unfolding Lim_within by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1229
    obtain d' where d': "d'>0" "\<forall>x. dist x a < d' \<longrightarrow> x \<in> S" using assms  unfolding open_def by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1230
    from d d' have "\<exists>d>0. \<forall>x. 0 < dist x a \<and> dist x a < d \<longrightarrow> dist (f x) l < e" by (rule_tac x= "min d d'" in exI)auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1231
  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1232
  thus ?rhs unfolding Lim_at by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1233
next
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1234
  assume ?rhs
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1235
  { fix e::real assume "e>0"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1236
    then obtain d where "d>0" and d:"\<forall>x. 0 < dist x a \<and> dist x a < d \<longrightarrow> dist (f x) l < e" using `?rhs` unfolding Lim_at by auto
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  1237
    hence "\<exists>d>0. \<forall>x. 0 < dist x a \<and> dist x a < d \<longrightarrow> dist (f x) l < e" using `d>0` by auto
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1238
  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1239
  thus ?lhs using Lim_at_within[of f l a S] by (auto simp add: Lim_at)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1240
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1241
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1242
text{* Another limit point characterization. *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1243
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  1244
lemma islimpt_sequential:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1245
 "x islimpt S \<longleftrightarrow> (\<exists>f. (\<forall>n::nat. f n \<in> S -{x}) \<and> (f ---> x) sequentially)" (is "?lhs = ?rhs")
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1246
proof
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1247
  assume ?lhs
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  1248
  then obtain f where f:"\<forall>y. y>0 \<longrightarrow> f y \<in> S \<and> f y \<noteq> x \<and> dist (f y) x < y"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1249
    unfolding islimpt_approachable using choice[of "\<lambda>e y. e>0 \<longrightarrow> y\<in>S \<and> y\<noteq>x \<and> dist y x < e"] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1250
  { fix n::nat
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1251
    have "f (inverse (real n + 1)) \<in> S - {x}" using f by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1252
  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1253
  moreover
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1254
  { fix e::real assume "e>0"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1255
    hence "\<exists>N::nat. inverse (real (N + 1)) < e" using real_arch_inv[of e] apply (auto simp add: Suc_pred') apply(rule_tac x="n - 1" in exI) by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1256
    then obtain N::nat where "inverse (real (N + 1)) < e" by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1257
    hence "\<forall>n\<ge>N. inverse (real n + 1) < e" by (auto, metis Suc_le_mono le_SucE less_imp_inverse_less nat_le_real_less order_less_trans real_of_nat_Suc real_of_nat_Suc_gt_zero)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1258
    moreover have "\<forall>n\<ge>N. dist (f (inverse (real n + 1))) x < (inverse (real n + 1))" using f `e>0` by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1259
    ultimately have "\<exists>N::nat. \<forall>n\<ge>N. dist (f (inverse (real n + 1))) x < e" apply(rule_tac x=N in exI) apply auto apply(erule_tac x=n in allE)+ by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1260
  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1261
  hence " ((\<lambda>n. f (inverse (real n + 1))) ---> x) sequentially"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1262
    unfolding Lim_sequentially using f by auto
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  1263
  ultimately show ?rhs apply (rule_tac x="(\<lambda>n::nat. f (inverse (real n + 1)))" in exI) by auto
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1264
next
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1265
  assume ?rhs
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  1266
  then obtain f::"nat\<Rightarrow>real^'a"  where f:"(\<forall>n. f n \<in> S - {x})" "(\<forall>e>0. \<exists>N. \<forall>n\<ge>N. dist (f n) x < e)" unfolding Lim_sequentially by auto
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1267
  { fix e::real assume "e>0"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1268
    then obtain N where "dist (f N) x < e" using f(2) by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1269
    moreover have "f N\<in>S" "f N \<noteq> x" using f(1) by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1270
    ultimately have "\<exists>x'\<in>S. x' \<noteq> x \<and> dist x' x < e" by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1271
  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1272
  thus ?lhs unfolding islimpt_approachable by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1273
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1274
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1275
text{* Basic arithmetical combining theorems for limits. *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1276
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  1277
lemma Lim_linear: fixes f :: "('a \<Rightarrow> real^'n::finite)" and h :: "(real^'n \<Rightarrow> real^'m::finite)"
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  1278
  assumes "(f ---> l) net" "linear h"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1279
  shows "((\<lambda>x. h (f x)) ---> h l) net"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1280
proof (cases "trivial_limit net")
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1281
  case True
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1282
  thus ?thesis unfolding tendsto_def unfolding eventually_def by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1283
next
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1284
  case False note cas = this
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1285
  obtain b where b: "b>0" "\<forall>x. norm (h x) \<le> b * norm x" using assms(2) using linear_bounded_pos[of h] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1286
  { fix e::real assume "e >0"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1287
    hence "e/b > 0" using `b>0` by (metis divide_pos_pos)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1288
    then have "(\<exists>y. (\<exists>x. netord net x y) \<and> (\<forall>x. netord net x y \<longrightarrow> dist (f x) l < e/b))" using assms `e>0` cas
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1289
      unfolding tendsto_def unfolding eventually_def by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1290
    then obtain y where y: "\<exists>x. netord net x y" "\<forall>x. netord net x y \<longrightarrow> dist (f x) l < e/b" by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1291
    { fix x
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1292
      have "netord net x y \<longrightarrow> dist (h (f x)) (h l) < e"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1293
	using y(2) b unfolding dist_def	using linear_sub[of h "f x" l] `linear h`
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1294
	apply auto by (metis b(1) b(2) dist_def dist_sym less_le_not_le linorder_not_le mult_imp_div_pos_le real_mult_commute xt1(7))
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1295
    }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1296
    hence " (\<exists>y. (\<exists>x. netord net x y) \<and> (\<forall>x. netord net x y \<longrightarrow> dist (h (f x)) (h l) < e))" using y
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1297
      by(rule_tac x="y" in exI) auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1298
  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1299
  thus ?thesis unfolding tendsto_def eventually_def using `b>0` by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1300
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1301
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1302
lemma Lim_const: "((\<lambda>x. a) ---> a) net"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1303
  by (auto simp add: Lim dist_refl trivial_limit_def)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1304
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1305
lemma Lim_cmul: "(f ---> l) net ==> ((\<lambda>x. c *s f x) ---> c *s l) net"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1306
  apply (rule Lim_linear[where f = f])
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1307
  apply simp
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1308
  apply (rule linear_compose_cmul)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1309
  apply (rule linear_id[unfolded id_def])
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1310
  done
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1311
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1312
lemma Lim_neg: "(f ---> l) net ==> ((\<lambda>x. -(f x)) ---> -l) net"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1313
  apply (simp add: Lim dist_def  group_simps)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1314
  apply (subst minus_diff_eq[symmetric])
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1315
  unfolding norm_minus_cancel by simp
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1316
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  1317
lemma Lim_add: fixes f :: "'a \<Rightarrow> real^'n::finite" shows
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1318
 "(f ---> l) net \<Longrightarrow> (g ---> m) net \<Longrightarrow> ((\<lambda>x. f(x) + g(x)) ---> l + m) net"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1319
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1320
  assume as:"(f ---> l) net" "(g ---> m) net"
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  1321
  { fix e::real
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1322
    assume "e>0"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1323
    hence *:"eventually (\<lambda>x. dist (f x) l < e/2) net"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1324
            "eventually (\<lambda>x. dist (g x) m < e/2) net" using as
30654
254478a8dd05 dropped theory Arith_Tools
haftmann
parents: 30582
diff changeset
  1325
      by (auto intro: tendstoD simp del: less_divide_eq_number_of1)
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1326
    hence "eventually (\<lambda>x. dist (f x + g x) (l + m) < e) net"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1327
    proof(cases "trivial_limit net")
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1328
      case True
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1329
      thus ?thesis unfolding eventually_def by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1330
    next
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1331
      case False
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1332
      hence fl:"(\<exists>y. (\<exists>x. netord net x y) \<and> (\<forall>x. netord net x y \<longrightarrow> dist (f x) l < e / 2))" and
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1333
	    gl:"(\<exists>y. (\<exists>x. netord net x y) \<and> (\<forall>x. netord net x y \<longrightarrow> dist (g x) m < e / 2))"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1334
	using * unfolding eventually_def by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1335
      obtain c where c:"(\<exists>x. netord net x c)" "(\<forall>x. netord net x c \<longrightarrow> dist (f x) l < e / 2 \<and> dist (g x) m < e / 2)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1336
	using net_dilemma[of net, OF fl gl] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1337
      { fix x assume "netord net x c"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1338
	with c(2) have " dist (f x + g x) (l + m) < e" using dist_triangle_add[of "f x" "g x" l m] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1339
      }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1340
      with c show ?thesis unfolding eventually_def by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1341
    qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1342
  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1343
  thus ?thesis unfolding tendsto_def by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1344
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1345
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1346
lemma Lim_sub: "(f ---> l) net \<Longrightarrow> (g ---> m) net \<Longrightarrow> ((\<lambda>x. f(x) - g(x)) ---> l - m) net"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1347
  unfolding diff_minus
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1348
  by (simp add: Lim_add Lim_neg)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1349
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1350
lemma Lim_null: "(f ---> l) net \<longleftrightarrow> ((\<lambda>x. f(x) - l) ---> 0) net" by (simp add: Lim dist_def)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1351
lemma Lim_null_norm: "(f ---> 0) net \<longleftrightarrow> ((\<lambda>x. vec1(norm(f x))) ---> 0) net"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1352
  by (simp add: Lim dist_def norm_vec1)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1353
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  1354
lemma Lim_null_comparison:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1355
  assumes "eventually (\<lambda>x. norm(f x) <= g x) net" "((\<lambda>x. vec1(g x)) ---> 0) net"
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  1356
  shows "(f ---> 0) net"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1357
proof(simp add: tendsto_def, rule+)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1358
  fix e::real assume "0<e"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1359
  { fix x
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1360
    assume "norm (f x) \<le> g x" "dist (vec1 (g x)) 0 < e"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1361
    hence "dist (f x) 0 < e"  unfolding vec_def using dist_vec1[of "g x" "0"]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1362
      by (vector dist_def norm_vec1 dist_refl real_vector_norm_def dot_def vec1_def)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1363
  }
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  1364
  thus "eventually (\<lambda>x. dist (f x) 0 < e) net"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1365
    using eventually_and[of "\<lambda>x. norm(f x) <= g x" "\<lambda>x. dist (vec1 (g x)) 0 < e" net]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1366
    using eventually_mono[of "(\<lambda>x. norm (f x) \<le> g x \<and> dist (vec1 (g x)) 0 < e)" "(\<lambda>x. dist (f x) 0 < e)" net]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1367
    using assms `e>0` unfolding tendsto_def by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1368
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1369
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  1370
lemma Lim_component: "(f ---> l) net
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  1371
                      ==> ((\<lambda>a. vec1((f a :: real ^'n::finite)$i)) ---> vec1(l$i)) net"
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  1372
  apply (simp add: Lim dist_def vec1_sub[symmetric] norm_vec1  vector_minus_component[symmetric] del: vector_minus_component)
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  1373
  apply (auto simp del: vector_minus_component)
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1374
  apply (erule_tac x=e in allE)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1375
  apply clarify
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1376
  apply (rule_tac x=y in exI)
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  1377
  apply (auto simp del: vector_minus_component)
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1378
  apply (rule order_le_less_trans)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1379
  apply (rule component_le_norm)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1380
  by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1381
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  1382
lemma Lim_transform_bound:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1383
  assumes "eventually (\<lambda>n. norm(f n) <= norm(g n)) net"  "(g ---> 0) net"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1384
  shows "(f ---> 0) net"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1385
proof(simp add: tendsto_def, rule+)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1386
  fix e::real assume "e>0"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1387
  { fix x
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1388
    assume "norm (f x) \<le> norm (g x)" "dist (g x) 0 < e"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1389
    hence "dist (f x) 0 < e" by norm}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1390
  thus "eventually (\<lambda>x. dist (f x) 0 < e) net"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1391
    using eventually_and[of "\<lambda>x. norm (f x) \<le> norm (g x)" "\<lambda>x. dist (g x) 0 < e" net]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1392
    using eventually_mono[of "\<lambda>x. norm (f x) \<le> norm (g x) \<and> dist (g x) 0 < e" "\<lambda>x. dist (f x) 0 < e" net]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1393
    using assms `e>0` unfolding tendsto_def by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1394
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1395
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1396
text{* Deducing things about the limit from the elements. *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1397
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1398
lemma Lim_in_closed_set:
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1399
  assumes "closed S" "eventually (\<lambda>x. f(x) \<in> S) net"  "\<not>(trivial_limit net)" "(f ---> l) net"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1400
  shows "l \<in> S"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1401
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1402
  { assume "l \<notin> S"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1403
    obtain e where e:"e>0" "ball l e \<subseteq> UNIV - S" using assms(1) `l \<notin> S` unfolding closed_def open_contains_ball by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1404
    hence *:"\<forall>x. dist l x < e \<longrightarrow> x \<notin> S" by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1405
    obtain y where "(\<exists>x. netord net x y) \<and> (\<forall>x. netord net x y \<longrightarrow> dist (f x) l < e)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1406
      using assms(3,4) `e>0` unfolding tendsto_def eventually_def by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1407
    hence "(\<exists>x. netord net x y) \<and> (\<forall>x. netord net x y \<longrightarrow> f x \<notin> S)"  using * by (auto simp add: dist_sym)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1408
    hence False using assms(2,3)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1409
      using eventually_and[of "(\<lambda>x. f x \<in> S)" "(\<lambda>x. f x \<notin> S)"] not_eventually[of "(\<lambda>x. f x \<in> S \<and> f x \<notin> S)" net]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1410
      unfolding eventually_def by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1411
  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1412
  thus ?thesis by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1413
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1414
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1415
text{* Need to prove closed(cball(x,e)) before deducing this as a corollary. *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1416
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  1417
lemma Lim_norm_ubound:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1418
  assumes "\<not>(trivial_limit net)" "(f ---> l) net" "eventually (\<lambda>x. norm(f x) <= e) net"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1419
  shows "norm(l) <= e"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1420
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1421
  obtain y where y: "\<exists>x. netord net x y"  "\<forall>x. netord net x y \<longrightarrow> norm (f x) \<le> e" using assms(1,3) unfolding eventually_def by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1422
  show ?thesis
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1423
  proof(rule ccontr)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1424
    assume "\<not> norm l \<le> e"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1425
    then obtain z where z: "\<exists>x. netord net x z"  "\<forall>x. netord net x z \<longrightarrow> dist (f x) l < norm l - e"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1426
      using assms(2)[unfolded Lim] using assms(1) apply simp apply(erule_tac x="norm l - e" in allE) by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1427
    obtain w where w:"netord net w z"  "netord net w y" using net[of net] using z(1) y(1) by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1428
    hence "dist (f w) l < norm l - e \<and> norm (f w) <= e" using z(2) y(2) by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1429
    thus False using `\<not> norm l \<le> e` by norm
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1430
  qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1431
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1432
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1433
lemma Lim_norm_lbound:
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1434
  assumes "\<not> (trivial_limit net)"  "(f ---> l) net"  "eventually (\<lambda>x. e <= norm(f x)) net"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1435
  shows "e \<le> norm l"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1436
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1437
  obtain y where y: "\<exists>x. netord net x y"  "\<forall>x. netord net x y \<longrightarrow> e \<le> norm (f x)" using assms(1,3) unfolding eventually_def by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1438
  show ?thesis
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1439
  proof(rule ccontr)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1440
    assume "\<not> e \<le> norm l"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1441
    then obtain z where z: "\<exists>x. netord net x z"  "\<forall>x. netord net x z \<longrightarrow> dist (f x) l < e - norm l"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1442
      using assms(2)[unfolded Lim] using assms(1) apply simp apply(erule_tac x="e - norm l" in allE) by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1443
    obtain w where w:"netord net w z"  "netord net w y" using net[of net] using z(1) y(1) by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1444
    hence "dist (f w) l < e - norm l \<and> e \<le> norm (f w)" using z(2) y(2) by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1445
    thus False using `\<not> e \<le> norm l` by norm
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1446
  qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1447
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1448
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1449
text{* Uniqueness of the limit, when nontrivial. *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1450
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1451
lemma Lim_unique:
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  1452
  fixes l::"real^'a::finite" and net::"'b::zero_neq_one net"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1453
  assumes "\<not>(trivial_limit net)"  "(f ---> l) net"  "(f ---> l') net"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1454
  shows "l = l'"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1455
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1456
  { fix e::real assume "e>0"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1457
    hence "eventually (\<lambda>x. norm (0::real^'a) \<le> e) net" unfolding norm_0 using always_eventually[of _ net] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1458
    hence "norm (l - l') \<le> e" using Lim_norm_ubound[of net "\<lambda>x. 0" "l-l'"] using assms using Lim_sub[of f l net f l'] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1459
  } note * = this
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1460
  { assume "norm (l - l') > 0"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1461
    hence "norm (l - l') = 0" using *[of "(norm (l - l')) /2"] using norm_ge_zero[of "l - l'"] by simp
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1462
  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1463
  hence "l = l'" using norm_ge_zero[of "l - l'"] unfolding le_less and dist_nz[of l l', unfolded dist_def, THEN sym] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1464
  thus ?thesis using assms using Lim_sub[of f l net f l'] by simp
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1465
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1466
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  1467
lemma tendsto_Lim:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1468
 "~(trivial_limit (net::('b::zero_neq_one net))) \<Longrightarrow> (f ---> l) net ==> Lim net f = l"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1469
  unfolding Lim_def using Lim_unique[of net f] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1470
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1471
text{* Limit under bilinear function (surprisingly tedious, but important) *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1472
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1473
lemma norm_bound_lemma:
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  1474
  "0 < e \<Longrightarrow> \<exists>d>0. \<forall>(x'::real^'b::finite) y'::real^'a::finite. norm(x' - (x::real^'b)) < d \<and> norm(y' - y) < d \<longrightarrow> norm(x') * norm(y' - y) + norm(x' - x) * norm(y) < e"
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  1475
proof-
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1476
  assume e: "0 < e"
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  1477
  have th1: "(2 * norm x + 2 * norm y + 2) > 0" using norm_ge_zero[of x] norm_ge_zero[of y] by norm
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1478
  hence th0: "0 < e / (2 * norm x + 2 * norm y + 2)"  using `e>0` using divide_pos_pos by auto
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  1479
  moreover
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1480
  { fix x' y'
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1481
    assume h: "norm (x' - x) < 1" "norm (x' - x) < e / (2 * norm x + 2 * norm y + 2)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1482
      "norm (y' - y) < 1" "norm (y' - y) < e / (2 * norm x + 2 * norm y + 2)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1483
    have th: "\<And>a b (c::real). a \<ge> 0 \<Longrightarrow> c \<ge> 0 \<Longrightarrow> a + (b + c) < e ==> b < e " by arith
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  1484
    from h have thx: "norm (x' - x) * norm y < e / 2"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1485
      using th0 th1 apply (simp add: field_simps)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1486
      apply (rule th) defer defer apply assumption
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1487
      by (simp_all add: norm_ge_zero zero_le_mult_iff)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1488
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1489
    have "norm x' - norm x < 1" apply(rule le_less_trans)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1490
      using h(1) using norm_triangle_ineq2[of x' x] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1491
    hence *:"norm x' < 1 + norm x"  by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1492
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  1493
    have thy: "norm (y' - y) * norm x' < e / (2 * norm x + 2 * norm y + 2) * (1 + norm x)"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1494
      using mult_strict_mono'[OF h(4) * norm_ge_zero norm_ge_zero] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1495
    also have "\<dots> \<le> e/2" apply simp unfolding divide_le_eq
30649
57753e0ec1d4 1. New cancellation simprocs for common factors in inequations
nipkow
parents: 30582
diff changeset
  1496
      using th1 th0 `e>0` by auto
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1497
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1498
    finally have "norm x' * norm (y' - y) + norm (x' - x) * norm y < e"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1499
      using thx and e by (simp add: field_simps)  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1500
  ultimately show ?thesis apply(rule_tac x="min 1 (e / 2 / (norm x + norm y + 1))" in exI) by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1501
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1502
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  1503
lemma Lim_bilinear:
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  1504
  fixes net :: "'a net" and h:: "real ^'m::finite \<Rightarrow> real ^'n::finite \<Rightarrow> real ^'p::finite"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1505
  assumes "(f ---> l) net" and "(g ---> m) net" and "bilinear h"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1506
  shows "((\<lambda>x. h (f x) (g x)) ---> (h l m)) net"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1507
proof(cases "trivial_limit net")
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1508
  case True thus "((\<lambda>x. h (f x) (g x)) ---> h l m) net" unfolding Lim ..
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1509
next
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1510
  case False note ntriv = this
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1511
  obtain B where "B>0" and B:"\<forall>x y. norm (h x y) \<le> B * norm x * norm y" using bilinear_bounded_pos[OF assms(3)] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1512
  { fix e::real assume "e>0"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1513
    obtain d where "d>0" and d:"\<forall>x' y'. norm (x' - l) < d \<and> norm (y' - m) < d \<longrightarrow> norm x' * norm (y' - m) + norm (x' - l) * norm m < e / B" using `B>0` `e>0`
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1514
      using norm_bound_lemma[of "e / B" l m] using divide_pos_pos by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1515
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1516
    have *:"\<And>x y. h (f x) (g x) - h l m = h (f x) (g x - m) + h (f x - l) m"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1517
      unfolding bilinear_rsub[OF assms(3)]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1518
      unfolding bilinear_lsub[OF assms(3)] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1519
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1520
    { fix x assume "dist (f x) l < d \<and> dist (g x) m < d"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1521
      hence **:"norm (f x) * norm (g x - m) + norm (f x - l) * norm m < e / B"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1522
	using d[THEN spec[where x="f x"], THEN spec[where x="g x"]] unfolding dist_def  by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1523
      have "norm (h (f x) (g x - m)) + norm (h (f x - l) m) \<le> B * norm (f x) * norm (g x - m) + B * norm (f x - l) * norm m"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1524
	using B[THEN spec[where x="f x"], THEN spec[where x="g x - m"]]
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  1525
	using B[THEN spec[where x="f x - l"], THEN spec[where x="m"]] by auto
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1526
      also have "\<dots> < e" using ** and `B>0` by(auto simp add: field_simps)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1527
      finally have "dist (h (f x) (g x)) (h l m) < e" unfolding dist_def and * using norm_triangle_lt by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1528
    }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1529
    moreover
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1530
    obtain c where "(\<exists>x. netord net x c) \<and> (\<forall>x. netord net x c \<longrightarrow> dist (f x) l < d \<and> dist (g x) m < d)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1531
      using net_dilemma[of net "\<lambda>x. dist (f x) l < d" "\<lambda>x. dist (g x) m < d"] using assms(1,2) unfolding Lim using False and `d>0` by (auto elim!: allE[where x=d])
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1532
    ultimately have "\<exists>y. (\<exists>x. netord net x y) \<and> (\<forall>x. netord net x y \<longrightarrow> dist (h (f x) (g x)) (h l m) < e)" by auto  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1533
  thus "((\<lambda>x. h (f x) (g x)) ---> h l m) net" unfolding Lim by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1534
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1535
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1536
text{* These are special for limits out of the same vector space. *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1537
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1538
lemma Lim_within_id: "(id ---> a) (at a within s)" by (auto simp add: Lim_within id_def)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1539
lemma Lim_at_id: "(id ---> a) (at a)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1540
apply (subst within_UNIV[symmetric]) by (simp add: Lim_within_id)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1541
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  1542
lemma Lim_at_zero: "(f ---> l) (at (a::real^'a::finite)) \<longleftrightarrow> ((\<lambda>x. f(a + x)) ---> l) (at 0)" (is "?lhs = ?rhs")
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1543
proof
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1544
  assume "?lhs"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1545
  { fix e::real assume "e>0"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1546
    with `?lhs` obtain d where d:"d>0" "\<forall>x. 0 < dist x a \<and> dist x a < d \<longrightarrow> dist (f x) l < e" unfolding Lim_at by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1547
    { fix x::"real^'a" assume "0 < dist x 0 \<and> dist x 0 < d"
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  1548
      hence "dist (f (a + x)) l < e" using d
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1549
      apply(erule_tac x="x+a" in allE) by(auto simp add: comm_monoid_add.mult_commute dist_def dist_sym)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1550
    }
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  1551
    hence "\<exists>d>0. \<forall>x. 0 < dist x 0 \<and> dist x 0 < d \<longrightarrow> dist (f (a + x)) l < e" using d(1) by auto
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1552
  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1553
  thus "?rhs" unfolding Lim_at by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1554
next
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1555
  assume "?rhs"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1556
  { fix e::real assume "e>0"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1557
    with `?rhs` obtain d where d:"d>0" "\<forall>x. 0 < dist x 0 \<and> dist x 0 < d \<longrightarrow> dist (f (a + x)) l < e"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1558
      unfolding Lim_at by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1559
    { fix x::"real^'a" assume "0 < dist x a \<and> dist x a < d"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1560
      hence "dist (f x) l < e" using d apply(erule_tac x="x-a" in allE)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1561
	by(auto simp add: comm_monoid_add.mult_commute dist_def dist_sym)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1562
    }
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  1563
    hence "\<exists>d>0. \<forall>x. 0 < dist x a \<and> dist x a < d \<longrightarrow> dist (f x) l < e" using d(1) by auto
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1564
  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1565
  thus "?lhs" unfolding Lim_at by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1566
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1567
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1568
text{* It's also sometimes useful to extract the limit point from the net.  *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1569
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1570
definition "netlimit net = (SOME a. \<forall>x. ~(netord net x a))"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1571
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1572
lemma netlimit_within: assumes"~(trivial_limit (at a within S))"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1573
  shows "(netlimit (at a within S) = a)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1574
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1575
  { fix x assume "x \<noteq> a"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1576
    then obtain y where y:"dist y a \<le> dist a a \<and> 0 < dist y a \<and> y \<in> S \<or> dist y a \<le> dist x a \<and> 0 < dist y a \<and> y \<in> S" using assms unfolding trivial_limit_def within at by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1577
    assume "\<forall>y. \<not> netord (at a within S) y x"
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  1578
    hence "x = a" using y unfolding within at by (auto simp add: dist_refl dist_nz)
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1579
  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1580
  moreover
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1581
  have "\<forall>y. \<not> netord (at a within S) y a"  using assms unfolding trivial_limit_def within at by (auto simp add: dist_refl)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1582
  ultimately show ?thesis unfolding netlimit_def using some_equality[of "\<lambda>x. \<forall>y. \<not> netord (at a within S) y x"] by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1583
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1584
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1585
lemma netlimit_at: "netlimit(at a) = a"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1586
  apply (subst within_UNIV[symmetric])
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1587
  using netlimit_within[of a UNIV]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1588
  by (simp add: trivial_limit_at within_UNIV)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1589
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1590
text{* Transformation of limit. *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1591
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1592
lemma Lim_transform: assumes "((\<lambda>x. f x - g x) ---> 0) net" "(f ---> l) net"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1593
  shows "(g ---> l) net"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1594
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1595
  from assms have "((\<lambda>x. f x - g x - f x) ---> 0 - l) net" using Lim_sub[of "\<lambda>x. f x - g x" 0 net f l] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1596
  thus "?thesis" using Lim_neg [of "\<lambda> x. - g x" "-l" net] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1597
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1598
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1599
lemma Lim_transform_eventually:  "eventually (\<lambda>x. f x = g x) net \<Longrightarrow> (f ---> l) net ==> (g ---> l) net"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1600
  using Lim_eventually[of "\<lambda>x. f x - g x" 0 net] Lim_transform[of f g net l] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1601
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  1602
lemma Lim_transform_within:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1603
  assumes "0 < d" "(\<forall>x'\<in>S. 0 < dist x' x \<and> dist x' x < d \<longrightarrow> f x' = g x')"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1604
          "(f ---> l) (at x within S)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1605
  shows   "(g ---> l) (at x within S)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1606
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1607
  have "((\<lambda>x. f x - g x) ---> 0) (at x within S)" unfolding Lim_within[of "\<lambda>x. f x - g x" 0 x S] using assms(1,2) by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1608
  thus ?thesis using Lim_transform[of f g "at x within S" l] using assms(3) by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1609
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1610
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  1611
lemma Lim_transform_at: "0 < d \<Longrightarrow> (\<forall>x'. 0 < dist x' x \<and> dist x' x < d \<longrightarrow> f x' = g x') \<Longrightarrow>
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1612
  (f ---> l) (at x) ==> (g ---> l) (at x)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1613
  apply (subst within_UNIV[symmetric])
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1614
  using Lim_transform_within[of d UNIV x f g l]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1615
  by (auto simp add: within_UNIV)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1616
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1617
text{* Common case assuming being away from some crucial point like 0. *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1618
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  1619
lemma Lim_transform_away_within:
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  1620
  fixes f:: "real ^'m::finite \<Rightarrow> real ^'n::finite"
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  1621
  assumes "a\<noteq>b" "\<forall>x\<in> S. x \<noteq> a \<and> x \<noteq> b \<longrightarrow> f x = g x"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1622
  and "(f ---> l) (at a within S)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1623
  shows "(g ---> l) (at a within S)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1624
proof-
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  1625
  have "\<forall>x'\<in>S. 0 < dist x' a \<and> dist x' a < dist a b \<longrightarrow> f x' = g x'" using assms(2)
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  1626
    apply auto apply(erule_tac x=x' in ballE) by (auto simp add: dist_sym dist_refl)
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1627
  thus ?thesis using Lim_transform_within[of "dist a b" S a f g l] using assms(1,3) unfolding dist_nz by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1628
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1629
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  1630
lemma Lim_transform_away_at:
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  1631
  fixes f:: "real ^'m::finite \<Rightarrow> real ^'n::finite"
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  1632
  assumes ab: "a\<noteq>b" and fg: "\<forall>x. x \<noteq> a \<and> x \<noteq> b \<longrightarrow> f x = g x"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1633
  and fl: "(f ---> l) (at a)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1634
  shows "(g ---> l) (at a)"
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  1635
  using Lim_transform_away_within[OF ab, of UNIV f g l] fg fl
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1636
  by (auto simp add: within_UNIV)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1637
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1638
text{* Alternatively, within an open set. *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1639
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  1640
lemma Lim_transform_within_open:
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  1641
  fixes f:: "real ^'m::finite \<Rightarrow> real ^'n::finite"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1642
  assumes "open S"  "a \<in> S"  "\<forall>x\<in>S. x \<noteq> a \<longrightarrow> f x = g x"  "(f ---> l) (at a)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1643
  shows "(g ---> l) (at a)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1644
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1645
  from assms(1,2) obtain e::real where "e>0" and e:"ball a e \<subseteq> S" unfolding open_contains_ball by auto
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  1646
  hence "\<forall>x'. 0 < dist x' a \<and> dist x' a < e \<longrightarrow> f x' = g x'" using assms(3)
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1647
    unfolding ball_def subset_eq apply auto apply(erule_tac x=x' in allE) apply(erule_tac x=x' in ballE) by(auto simp add: dist_refl dist_sym)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1648
  thus ?thesis using Lim_transform_at[of e a f g l] `e>0` assms(4) by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1649
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1650
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1651
text{* A congruence rule allowing us to transform limits assuming not at point. *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1652
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  1653
lemma Lim_cong_within[cong add]:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1654
 "(\<And>x. x \<noteq> a \<Longrightarrow> f x = g x) ==> ((\<lambda>x. f x) ---> l) (at a within S) \<longleftrightarrow> ((g ---> l) (at a within S))"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1655
  by (simp add: Lim_within dist_nz[symmetric])
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1656
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  1657
lemma Lim_cong_at[cong add]:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1658
 "(\<And>x. x \<noteq> a ==> f x = g x) ==> (((\<lambda>x. f x) ---> l) (at a) \<longleftrightarrow> ((g ---> l) (at a)))"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1659
  by (simp add: Lim_at dist_nz[symmetric])
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1660
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1661
text{* Useful lemmas on closure and set of possible sequential limits.*}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1662
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  1663
lemma closure_sequential:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1664
 "l \<in> closure S \<longleftrightarrow> (\<exists>x. (\<forall>n. x n \<in> S) \<and> (x ---> l) sequentially)" (is "?lhs = ?rhs")
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1665
proof
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1666
  assume "?lhs" moreover
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1667
  { assume "l \<in> S"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1668
    hence "?rhs" using Lim_const[of l sequentially] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1669
  } moreover
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1670
  { assume "l islimpt S"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1671
    hence "?rhs" unfolding islimpt_sequential by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1672
  } ultimately
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1673
  show "?rhs" unfolding closure_def by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1674
next
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1675
  assume "?rhs"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1676
  thus "?lhs" unfolding closure_def unfolding islimpt_sequential by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1677
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1678
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  1679
lemma closed_sequential_limits:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1680
 "closed S \<longleftrightarrow> (\<forall>x l. (\<forall>n. x n \<in> S) \<and> (x ---> l) sequentially \<longrightarrow> l \<in> S)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1681
  unfolding closed_limpt
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1682
  by (metis closure_sequential closure_closed closed_limpt islimpt_sequential mem_delete)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1683
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1684
lemma closure_approachable: "x \<in> closure S \<longleftrightarrow> (\<forall>e>0. \<exists>y\<in>S. dist y x < e)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1685
  apply (auto simp add: closure_def islimpt_approachable)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1686
  by (metis dist_refl)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1687
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1688
lemma closed_approachable: "closed S ==> (\<forall>e>0. \<exists>y\<in>S. dist y x < e) \<longleftrightarrow> x \<in> S"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1689
  by (metis closure_closed closure_approachable)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1690
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1691
text{* Some other lemmas about sequences. *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1692
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1693
lemma seq_offset: "(f ---> l) sequentially ==> ((\<lambda>i. f( i + k)) ---> l) sequentially"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1694
  apply (auto simp add: Lim_sequentially)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1695
  by (metis trans_le_add1 )
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1696
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1697
lemma seq_offset_neg: "(f ---> l) sequentially ==> ((\<lambda>i. f(i - k)) ---> l) sequentially"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1698
  apply (simp add: Lim_sequentially)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1699
  apply (subgoal_tac "\<And>N k (n::nat). N + k <= n ==> N <= n - k")
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1700
  apply metis
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1701
  by arith
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1702
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1703
lemma seq_offset_rev: "((\<lambda>i. f(i + k)) ---> l) sequentially ==> (f ---> l) sequentially"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1704
  apply (simp add: Lim_sequentially)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1705
  apply (subgoal_tac "\<And>N k (n::nat). N + k <= n ==> N <= n - k \<and> (n - k) + k = n")
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1706
  by metis arith
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1707
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1708
lemma seq_harmonic: "((\<lambda>n. vec1(inverse (real n))) ---> 0) sequentially"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1709
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1710
  { fix e::real assume "e>0"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1711
    hence "\<exists>N::nat. \<forall>n::nat\<ge>N. inverse (real n) < e"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1712
      using real_arch_inv[of e] apply auto apply(rule_tac x=n in exI)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1713
      by (metis dlo_simps(4) le_imp_inverse_le linorder_not_less real_of_nat_gt_zero_cancel_iff real_of_nat_less_iff xt1(7))
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1714
  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1715
  thus ?thesis unfolding Lim_sequentially dist_def apply simp unfolding norm_vec1 by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1716
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1717
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1718
text{* More properties of closed balls. *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1719
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1720
lemma closed_cball: "closed(cball x e)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1721
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1722
  { fix xa::"nat\<Rightarrow>real^'a" and l assume as: "\<forall>n. dist x (xa n) \<le> e" "(xa ---> l) sequentially"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1723
    from as(2) have "((\<lambda>n. x - xa n) ---> x - l) sequentially" using Lim_sub[of "\<lambda>n. x" x sequentially xa l] Lim_const[of x sequentially] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1724
    moreover from as(1) have "eventually (\<lambda>n. norm (x - xa n) \<le> e) sequentially" unfolding eventually_sequentially dist_def by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1725
    ultimately have "dist x l \<le> e"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1726
      unfolding dist_def
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1727
      using Lim_norm_ubound[of sequentially _ "x - l" e] using trivial_limit_sequentially by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1728
  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1729
  thus ?thesis unfolding closed_sequential_limits by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1730
qed
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  1731
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1732
lemma open_contains_cball: "open S \<longleftrightarrow> (\<forall>x\<in>S. \<exists>e>0.  cball x e \<subseteq> S)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1733
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1734
  { fix x and e::real assume "x\<in>S" "e>0" "ball x e \<subseteq> S"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1735
    hence "\<exists>d>0. cball x d \<subseteq> S" unfolding subset_eq by (rule_tac x="e/2" in exI, auto)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1736
  } moreover
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1737
  { fix x and e::real assume "x\<in>S" "e>0" "cball x e \<subseteq> S"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1738
    hence "\<exists>d>0. ball x d \<subseteq> S" unfolding subset_eq apply(rule_tac x="e/2" in exI) by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1739
  } ultimately
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1740
  show ?thesis unfolding open_contains_ball by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1741
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1742
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1743
lemma open_contains_cball_eq: "open S ==> (\<forall>x. x \<in> S \<longleftrightarrow> (\<exists>e>0. cball x e \<subseteq> S))"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1744
  by (metis open_contains_cball subset_eq order_less_imp_le centre_in_cball mem_def)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1745
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1746
lemma mem_interior_cball: "x \<in> interior S \<longleftrightarrow> (\<exists>e>0. cball x e \<subseteq> S)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1747
  apply (simp add: interior_def)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1748
  by (metis open_contains_cball subset_trans ball_subset_cball centre_in_ball open_ball)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1749
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1750
lemma islimpt_ball: "y islimpt ball x e \<longleftrightarrow> 0 < e \<and> y \<in> cball x e" (is "?lhs = ?rhs")
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1751
proof
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1752
  assume "?lhs"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1753
  { assume "e \<le> 0"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1754
    hence *:"ball x e = {}" using ball_eq_empty[of x e] by auto
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  1755
    have False using `?lhs` unfolding * using islimpt_EMPTY[of y] by auto
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1756
  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1757
  hence "e > 0" by (metis dlo_simps(3))
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1758
  moreover
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1759
  have "y \<in> cball x e" using closed_cball[of x e] islimpt_subset[of y "ball x e" "cball x e"] ball_subset_cball[of x e] `?lhs` unfolding closed_limpt by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1760
  ultimately show "?rhs" by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1761
next
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1762
  assume "?rhs" hence "e>0"  by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1763
  { fix d::real assume "d>0"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1764
    have "\<exists>x'\<in>ball x e. x' \<noteq> y \<and> dist x' y < d"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1765
    proof(cases "d \<le> dist x y")
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1766
      case True thus "\<exists>x'\<in>ball x e. x' \<noteq> y \<and> dist x' y < d"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1767
      proof(cases "x=y")
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1768
	case True hence False using `d \<le> dist x y` `d>0` dist_refl[of x] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1769
	thus "\<exists>x'\<in>ball x e. x' \<noteq> y \<and> dist x' y < d" by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1770
      next
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1771
	case False
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1772
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1773
	have "dist x (y - (d / (2 * dist y x)) *s (y - x))
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  1774
	      = norm (x - y + (d / (2 * norm (y - x))) *s (y - x))"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1775
	  unfolding mem_cball mem_ball dist_def diff_diff_eq2 diff_add_eq[THEN sym] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1776
	also have "\<dots> = \<bar>- 1 + d / (2 * norm (x - y))\<bar> * norm (x - y)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1777
	  using vector_sadd_rdistrib[of "- 1" "d / (2 * norm (y - x))", THEN sym, of "y - x"]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1778
	  unfolding vector_smult_lneg vector_smult_lid
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1779
	  by (auto simp add: dist_sym[unfolded dist_def] norm_mul)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1780
	also have "\<dots> = \<bar>- norm (x - y) + d / 2\<bar>"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1781
	  unfolding abs_mult_pos[of "norm (x - y)", OF norm_ge_zero[of "x - y"]]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1782
	  unfolding real_add_mult_distrib using `x\<noteq>y`[unfolded dist_nz, unfolded dist_def] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1783
	also have "\<dots> \<le> e - d/2" using `d \<le> dist x y` and `d>0` and `?rhs` by(auto simp add: dist_def)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1784
	finally have "y - (d / (2 * dist y x)) *s (y - x) \<in> ball x e" using `d>0` by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1785
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1786
	moreover
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1787
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  1788
	have "(d / (2*dist y x)) *s (y - x) \<noteq> 0"
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  1789
	  using `x\<noteq>y`[unfolded dist_nz] `d>0` unfolding vector_mul_eq_0 by (auto simp add: dist_sym dist_refl)
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1790
	moreover
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1791
	have "dist (y - (d / (2 * dist y x)) *s (y - x)) y < d" unfolding dist_def apply simp unfolding norm_minus_cancel norm_mul
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1792
	  using `d>0` `x\<noteq>y`[unfolded dist_nz] dist_sym[of x y]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1793
	  unfolding dist_def by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1794
	ultimately show "\<exists>x'\<in>ball x e. x' \<noteq> y \<and> dist x' y < d" by (rule_tac  x="y - (d / (2*dist y x)) *s (y - x)" in bexI) auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1795
      qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1796
    next
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1797
      case False hence "d > dist x y" by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1798
      show "\<exists>x'\<in>ball x e. x' \<noteq> y \<and> dist x' y < d"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1799
      proof(cases "x=y")
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1800
	case True
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1801
	obtain z where **:"dist y z = (min e d) / 2" using vector_choose_dist[of "(min e d) / 2" y]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1802
	  using `d > 0` `e>0` by (auto simp add: dist_refl)
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  1803
	show "\<exists>x'\<in>ball x e. x' \<noteq> y \<and> dist x' y < d"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1804
	  apply(rule_tac x=z in bexI) unfolding `x=y` dist_sym dist_refl dist_nz using **  `d > 0` `e>0` by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1805
      next
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1806
	case False thus "\<exists>x'\<in>ball x e. x' \<noteq> y \<and> dist x' y < d"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1807
	  using `d>0` `d > dist x y` `?rhs` by(rule_tac x=x in bexI, auto simp add: dist_refl)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1808
      qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1809
    qed  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1810
  thus "?lhs" unfolding mem_cball islimpt_approachable mem_ball by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1811
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1812
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1813
lemma closure_ball: "0 < e ==> (closure(ball x e) = cball x e)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1814
  apply (simp add: closure_def islimpt_ball expand_set_eq)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1815
  by arith
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1816
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  1817
lemma interior_cball: "interior(cball x e) = ball x e"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1818
proof(cases "e\<ge>0")
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1819
  case False note cs = this
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1820
  from cs have "ball x e = {}" using ball_empty[of e x] by auto moreover
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1821
  { fix y assume "y \<in> cball x e"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1822
    hence False unfolding mem_cball using dist_nz[of x y] cs by (auto simp add: dist_refl)  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1823
  hence "cball x e = {}" by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1824
  hence "interior (cball x e) = {}" using interior_empty by auto
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  1825
  ultimately show ?thesis by blast
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1826
next
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1827
  case True note cs = this
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1828
  have "ball x e \<subseteq> cball x e" using ball_subset_cball by auto moreover
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1829
  { fix S y assume as: "S \<subseteq> cball x e" "open S" "y\<in>S"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1830
    then obtain d where "d>0" and d:"\<forall>x'. dist x' y < d \<longrightarrow> x' \<in> S" unfolding open_def by blast
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  1831
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  1832
    then obtain xa where xa:"dist y xa = d / 2" using vector_choose_dist[of "d/2" y] by auto
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1833
    hence xa_y:"xa \<noteq> y" using dist_nz[of y xa] using `d>0` by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1834
    have "xa\<in>S" using d[THEN spec[where x=xa]] using xa apply(auto simp add: dist_sym) unfolding dist_nz[THEN sym] using xa_y by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1835
    hence xa_cball:"xa \<in> cball x e" using as(1) by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1836
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1837
    hence "y \<in> ball x e" proof(cases "x = y")
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1838
      case True
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1839
      hence "e>0" using xa_y[unfolded dist_nz] xa_cball[unfolded mem_cball] by (auto simp add: dist_sym)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1840
      thus "y \<in> ball x e" using `x = y ` by simp
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1841
    next
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1842
      case False
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1843
      have "dist (y + (d / 2 / dist y x) *s (y - x)) y < d" unfolding dist_def
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  1844
	using `d>0` norm_ge_zero[of "y - x"] `x \<noteq> y` by auto
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1845
      hence *:"y + (d / 2 / dist y x) *s (y - x) \<in> cball x e" using d as(1)[unfolded subset_eq] by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1846
      have "y - x \<noteq> 0" using `x \<noteq> y` by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1847
      hence **:"d / (2 * norm (y - x)) > 0" unfolding zero_less_norm_iff[THEN sym]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1848
	using `d>0` divide_pos_pos[of d "2*norm (y - x)"] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1849
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1850
      have "dist (y + (d / 2 / dist y x) *s (y - x)) x = norm (y + (d / (2 * norm (y - x))) *s y - (d / (2 * norm (y - x))) *s x - x)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1851
	by (auto simp add: dist_def vector_ssub_ldistrib add_diff_eq)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1852
      also have "\<dots> = norm ((1 + d / (2 * norm (y - x))) *s (y - x))"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1853
	by (auto simp add: vector_sadd_rdistrib vector_smult_lid ring_simps vector_sadd_rdistrib vector_ssub_ldistrib)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1854
      also have "\<dots> = \<bar>1 + d / (2 * norm (y - x))\<bar> * norm (y - x)" using ** by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1855
      also have "\<dots> = (dist y x) + d/2"using ** by (auto simp add: left_distrib dist_def)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1856
      finally have "e \<ge> dist x y +d/2" using *[unfolded mem_cball] by (auto simp add: dist_sym)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1857
      thus "y \<in> ball x e" unfolding mem_ball using `d>0` by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1858
    qed  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1859
  hence "\<forall>S \<subseteq> cball x e. open S \<longrightarrow> S \<subseteq> ball x e" by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1860
  ultimately show ?thesis using interior_unique[of "ball x e" "cball x e"] using open_ball[of x e] by auto
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  1861
qed
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1862
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1863
lemma frontier_ball: "0 < e ==> frontier(ball a e) = {x. dist a x = e}"
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  1864
  apply (simp add: frontier_def closure_ball interior_open open_ball order_less_imp_le)
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1865
  apply (simp add: expand_set_eq)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1866
  by arith
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1867
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1868
lemma frontier_cball: "frontier(cball a e) = {x. dist a x = e}"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1869
  apply (simp add: frontier_def interior_cball closed_cball closure_closed order_less_imp_le)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1870
  apply (simp add: expand_set_eq)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1871
  by arith
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1872
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1873
lemma cball_eq_empty: "(cball x e = {}) \<longleftrightarrow> e < 0"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1874
  apply (simp add: expand_set_eq not_le)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1875
  by (metis dist_pos_le dist_refl order_less_le_trans)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1876
lemma cball_empty: "e < 0 ==> cball x e = {}" by (simp add: cball_eq_empty)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1877
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1878
lemma cball_eq_sing: "(cball x e = {x}) \<longleftrightarrow> e = 0"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1879
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1880
  { assume as:"\<forall>xa. (dist x xa \<le> e) = (xa = x)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1881
    hence "e \<ge> 0" apply (erule_tac x=x in allE) by (auto simp add: dist_pos_le dist_refl)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1882
    then obtain y where y:"dist x y = e" using vector_choose_dist[of e] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1883
    hence "e = 0" using as apply(erule_tac x=y in allE) by (auto simp add: dist_pos_le dist_refl)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1884
  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1885
  thus ?thesis unfolding expand_set_eq mem_cball by (auto simp add: dist_refl dist_nz dist_le_0)
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  1886
qed
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1887
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1888
lemma cball_sing:  "e = 0 ==> cball x e = {x}" by (simp add: cball_eq_sing)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1889
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1890
text{* For points in the interior, localization of limits makes no difference.   *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1891
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1892
lemma eventually_within_interior: assumes "x \<in> interior S"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1893
  shows "eventually P (at x within S) \<longleftrightarrow> eventually P (at x)" (is "?lhs = ?rhs")
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1894
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1895
  from assms obtain e where e:"e>0" "\<forall>y. dist x y < e \<longrightarrow> y \<in> S" unfolding mem_interior ball_def subset_eq by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1896
  { assume "?lhs" then obtain d where "d>0" "\<forall>xa\<in>S. 0 < dist xa x \<and> dist xa x < d \<longrightarrow> P xa" unfolding eventually_within by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1897
    hence "?rhs" unfolding eventually_at using e by (auto simp add: dist_sym intro!: add exI[of _ "min e d"])
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1898
  } moreover
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1899
  { assume "?rhs" hence "?lhs" unfolding eventually_within eventually_at by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1900
  } ultimately
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1901
  show "?thesis" by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1902
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1903
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1904
lemma lim_within_interior: "x \<in> interior S  ==> ((f ---> l) (at x within S) \<longleftrightarrow> (f ---> l) (at x))"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1905
  by (simp add: tendsto_def eventually_within_interior)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1906
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1907
lemma netlimit_within_interior: assumes "x \<in> interior S"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1908
  shows "netlimit(at x within S) = x" (is "?lhs = ?rhs")
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1909
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1910
  from assms obtain e::real where e:"e>0" "ball x e \<subseteq> S" using open_interior[of S] unfolding open_contains_ball using interior_subset[of S] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1911
  hence "\<not> trivial_limit (at x within S)" using islimpt_subset[of x "ball x e" S] unfolding trivial_limit_within islimpt_ball centre_in_cball by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1912
  thus ?thesis using netlimit_within by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1913
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1914
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1915
subsection{* Boundedness. *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1916
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1917
  (* FIXME: This has to be unified with BSEQ!! *)
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  1918
definition "bounded S \<longleftrightarrow> (\<exists>a. \<forall>(x::real^'n::finite) \<in> S. norm x <= a)"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1919
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1920
lemma bounded_empty[simp]: "bounded {}" by (simp add: bounded_def)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1921
lemma bounded_subset: "bounded T \<Longrightarrow> S \<subseteq> T ==> bounded S"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1922
  by (metis bounded_def subset_eq)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1923
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1924
lemma bounded_interior[intro]: "bounded S ==> bounded(interior S)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1925
  by (metis bounded_subset interior_subset)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1926
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1927
lemma bounded_closure[intro]: assumes "bounded S" shows "bounded(closure S)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1928
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1929
  from assms obtain a where a:"\<forall>x\<in>S. norm x \<le> a" unfolding bounded_def by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1930
  { fix x assume "x\<in>closure S"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1931
    then obtain xa where xa:"\<forall>n. xa n \<in> S"  "(xa ---> x) sequentially" unfolding closure_sequential by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1932
    moreover have "\<exists>y. \<exists>x. netord sequentially x y" using trivial_limit_sequentially unfolding trivial_limit_def by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1933
    hence "\<exists>y. (\<exists>x. netord sequentially x y) \<and> (\<forall>x. netord sequentially x y \<longrightarrow> norm (xa x) \<le> a)" unfolding sequentially_def using a xa(1) by auto
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  1934
    ultimately have "norm x \<le> a" using Lim_norm_ubound[of sequentially xa x a] trivial_limit_sequentially unfolding eventually_def by auto
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1935
  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1936
  thus ?thesis unfolding bounded_def by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1937
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1938
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1939
lemma bounded_cball[simp,intro]: "bounded (cball x e)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1940
  apply (simp add: bounded_def)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1941
  apply (rule exI[where x="norm x + e"])
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1942
  apply (simp add: Ball_def)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1943
  by norm
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1944
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1945
lemma bounded_ball[simp,intro]: "bounded(ball x e)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1946
  by (metis ball_subset_cball bounded_cball bounded_subset)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1947
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1948
lemma finite_imp_bounded[intro]: assumes "finite S" shows "bounded S"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1949
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1950
  { fix x F assume as:"bounded F"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1951
    then obtain a where "\<forall>x\<in>F. norm x \<le> a" unfolding bounded_def by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1952
    hence "bounded (insert x F)" unfolding bounded_def by(auto intro!: add exI[of _ "max a (norm x)"])
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1953
  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1954
  thus ?thesis using finite_induct[of S bounded]  using bounded_empty assms by auto
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  1955
qed
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1956
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1957
lemma bounded_Un[simp]: "bounded (S \<union> T) \<longleftrightarrow> bounded S \<and> bounded T"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1958
  apply (auto simp add: bounded_def)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1959
  by (rule_tac x="max a aa" in exI, auto)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1960
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  1961
lemma bounded_Union[intro]: "finite F \<Longrightarrow> (\<forall>S\<in>F. bounded S) \<Longrightarrow> bounded(\<Union>F)"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1962
  by (induct rule: finite_induct[of F], auto)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1963
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1964
lemma bounded_pos: "bounded S \<longleftrightarrow> (\<exists>b>0. \<forall>x\<in> S. norm x <= b)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1965
  apply (simp add: bounded_def)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1966
  apply (subgoal_tac "\<And>x (y::real). 0 < 1 + abs y \<and> (x <= y \<longrightarrow> x <= 1 + abs y)")
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1967
  by metis arith
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1968
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1969
lemma bounded_Int[intro]: "bounded S \<or> bounded T \<Longrightarrow> bounded (S \<inter> T)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1970
  by (metis Int_lower1 Int_lower2 bounded_subset)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1971
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1972
lemma bounded_diff[intro]: "bounded S ==> bounded (S - T)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1973
apply (metis Diff_subset bounded_subset)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1974
done
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1975
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1976
lemma bounded_insert[intro]:"bounded(insert x S) \<longleftrightarrow> bounded S"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1977
  by (metis Diff_cancel Un_empty_right Un_insert_right bounded_Un bounded_subset finite.emptyI finite_imp_bounded infinite_remove subset_insertI)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1978
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  1979
lemma bot_bounded_UNIV[simp, intro]: "~(bounded (UNIV:: (real^'n::finite) set))"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1980
proof(auto simp add: bounded_pos not_le)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1981
  fix b::real  assume b: "b >0"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1982
  have b1: "b +1 \<ge> 0" using b by simp
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1983
  then obtain x:: "real^'n" where "norm x = b + 1" using vector_choose_size[of "b+1"] by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1984
  hence "norm x > b" using b by simp
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1985
  then show "\<exists>(x::real^'n). b < norm x"  by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1986
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1987
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  1988
lemma bounded_linear_image:
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  1989
  fixes f :: "real^'m::finite \<Rightarrow> real^'n::finite"
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  1990
  assumes "bounded S" "linear f"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1991
  shows "bounded(f ` S)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1992
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1993
  from assms(1) obtain b where b:"b>0" "\<forall>x\<in>S. norm x \<le> b" unfolding bounded_pos by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1994
  from assms(2) obtain B where B:"B>0" "\<forall>x. norm (f x) \<le> B * norm x"  using linear_bounded_pos by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1995
  { fix x assume "x\<in>S"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1996
    hence "norm x \<le> b" using b by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1997
    hence "norm (f x) \<le> B * b" using B(2) apply(erule_tac x=x in allE)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1998
      by (metis B(1) B(2) real_le_trans real_mult_le_cancel_iff2)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  1999
  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2000
  thus ?thesis unfolding bounded_pos apply(rule_tac x="b*B" in exI)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2001
    using b B real_mult_order[of b B] by (auto simp add: real_mult_commute)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2002
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2003
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2004
lemma bounded_scaling: "bounded S \<Longrightarrow> bounded ((\<lambda>x. c *s x) ` S)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2005
  apply (rule bounded_linear_image, assumption)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2006
  by (rule linear_compose_cmul, rule linear_id[unfolded id_def])
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2007
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2008
lemma bounded_translation: assumes "bounded S" shows "bounded ((\<lambda>x. a + x) ` S)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2009
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2010
  from assms obtain b where b:"b>0" "\<forall>x\<in>S. norm x \<le> b" unfolding bounded_pos by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2011
  { fix x assume "x\<in>S"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2012
    hence "norm (a + x) \<le> b + norm a" using norm_triangle_ineq[of a x] b by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2013
  }
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  2014
  thus ?thesis unfolding bounded_pos using norm_ge_zero[of a] b(1) using add_strict_increasing[of b 0 "norm a"]
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2015
    by (auto intro!: add exI[of _ "b + norm a"])
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2016
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2017
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2018
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2019
text{* Some theorems on sups and infs using the notion "bounded". *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2020
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2021
lemma bounded_vec1: "bounded(vec1 ` S) \<longleftrightarrow>  (\<exists>a. \<forall>x\<in>S. abs x <= a)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2022
  by (simp add: bounded_def forall_vec1 norm_vec1 vec1_in_image_vec1)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2023
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  2024
lemma bounded_has_rsup: assumes "bounded(vec1 ` S)" "S \<noteq> {}"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2025
  shows "\<forall>x\<in>S. x <= rsup S" and "\<forall>b. (\<forall>x\<in>S. x <= b) \<longrightarrow> rsup S <= b"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2026
proof
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2027
  fix x assume "x\<in>S"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2028
  from assms(1) obtain a where a:"\<forall>x\<in>S. \<bar>x\<bar> \<le> a" unfolding bounded_vec1 by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2029
  hence *:"S *<= a" using setleI[of S a] by (metis abs_le_interval_iff mem_def)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2030
  thus "x \<le> rsup S" using rsup[OF `S\<noteq>{}`] using assms(1)[unfolded bounded_vec1] using isLubD2[of UNIV S "rsup S" x] using `x\<in>S` by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2031
next
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2032
  show "\<forall>b. (\<forall>x\<in>S. x \<le> b) \<longrightarrow> rsup S \<le> b" using assms
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2033
  using rsup[of S, unfolded isLub_def isUb_def leastP_def setle_def setge_def]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2034
  apply (auto simp add: bounded_vec1)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2035
  by (auto simp add: isLub_def isUb_def leastP_def setle_def setge_def)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2036
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2037
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2038
lemma rsup_insert: assumes "bounded (vec1 ` S)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2039
  shows "rsup(insert x S) = (if S = {} then x else max x (rsup S))"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2040
proof(cases "S={}")
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2041
  case True thus ?thesis using rsup_finite_in[of "{x}"] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2042
next
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2043
  let ?S = "insert x S"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2044
  case False
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2045
  hence *:"\<forall>x\<in>S. x \<le> rsup S" using bounded_has_rsup(1)[of S] using assms by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2046
  hence "insert x S *<= max x (rsup S)" unfolding setle_def by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2047
  hence "isLub UNIV ?S (rsup ?S)" using rsup[of ?S] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2048
  moreover
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2049
  have **:"isUb UNIV ?S (max x (rsup S))" unfolding isUb_def setle_def using * by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2050
  { fix y assume as:"isUb UNIV (insert x S) y"
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  2051
    hence "max x (rsup S) \<le> y" unfolding isUb_def using rsup_le[OF `S\<noteq>{}`]
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2052
      unfolding setle_def by auto  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2053
  hence "max x (rsup S) <=* isUb UNIV (insert x S)" unfolding setge_def Ball_def mem_def by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2054
  hence "isLub UNIV ?S (max x (rsup S))" using ** isLubI2[of UNIV ?S "max x (rsup S)"] unfolding Collect_def by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2055
  ultimately show ?thesis using real_isLub_unique[of UNIV ?S] using `S\<noteq>{}` by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2056
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2057
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2058
lemma sup_insert_finite: "finite S \<Longrightarrow> rsup(insert x S) = (if S = {} then x else max x (rsup S))"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2059
  apply (rule rsup_insert)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2060
  apply (rule finite_imp_bounded)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2061
  by simp
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2062
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2063
lemma bounded_has_rinf:
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2064
  assumes "bounded(vec1 ` S)"  "S \<noteq> {}"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2065
  shows "\<forall>x\<in>S. x >= rinf S" and "\<forall>b. (\<forall>x\<in>S. x >= b) \<longrightarrow> rinf S >= b"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2066
proof
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2067
  fix x assume "x\<in>S"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2068
  from assms(1) obtain a where a:"\<forall>x\<in>S. \<bar>x\<bar> \<le> a" unfolding bounded_vec1 by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2069
  hence *:"- a <=* S" using setgeI[of S "-a"] unfolding abs_le_interval_iff by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2070
  thus "x \<ge> rinf S" using rinf[OF `S\<noteq>{}`] using isGlbD2[of UNIV S "rinf S" x] using `x\<in>S` by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2071
next
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2072
  show "\<forall>b. (\<forall>x\<in>S. x >= b) \<longrightarrow> rinf S \<ge> b" using assms
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2073
  using rinf[of S, unfolded isGlb_def isLb_def greatestP_def setle_def setge_def]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2074
  apply (auto simp add: bounded_vec1)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2075
  by (auto simp add: isGlb_def isLb_def greatestP_def setle_def setge_def)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2076
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2077
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2078
(* TODO: Move this to RComplete.thy -- would need to include Glb into RComplete *)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2079
lemma real_isGlb_unique: "[| isGlb R S x; isGlb R S y |] ==> x = (y::real)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2080
  apply (frule isGlb_isLb)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2081
  apply (frule_tac x = y in isGlb_isLb)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2082
  apply (blast intro!: order_antisym dest!: isGlb_le_isLb)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2083
  done
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2084
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2085
lemma rinf_insert: assumes "bounded (vec1 ` S)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2086
  shows "rinf(insert x S) = (if S = {} then x else min x (rinf S))" (is "?lhs = ?rhs")
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2087
proof(cases "S={}")
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2088
  case True thus ?thesis using rinf_finite_in[of "{x}"] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2089
next
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2090
  let ?S = "insert x S"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2091
  case False
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2092
  hence *:"\<forall>x\<in>S. x \<ge> rinf S" using bounded_has_rinf(1)[of S] using assms by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2093
  hence "min x (rinf S) <=* insert x S" unfolding setge_def by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2094
  hence "isGlb UNIV ?S (rinf ?S)" using rinf[of ?S] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2095
  moreover
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2096
  have **:"isLb UNIV ?S (min x (rinf S))" unfolding isLb_def setge_def using * by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2097
  { fix y assume as:"isLb UNIV (insert x S) y"
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  2098
    hence "min x (rinf S) \<ge> y" unfolding isLb_def using rinf_ge[OF `S\<noteq>{}`]
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2099
      unfolding setge_def by auto  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2100
  hence "isLb UNIV (insert x S) *<= min x (rinf S)" unfolding setle_def Ball_def mem_def by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2101
  hence "isGlb UNIV ?S (min x (rinf S))" using ** isGlbI2[of UNIV ?S "min x (rinf S)"] unfolding Collect_def by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2102
  ultimately show ?thesis using real_isGlb_unique[of UNIV ?S] using `S\<noteq>{}` by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2103
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2104
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2105
lemma inf_insert_finite: "finite S ==> rinf(insert x S) = (if S = {} then x else min x (rinf S))"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2106
  by (rule rinf_insert, rule finite_imp_bounded, simp)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2107
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2108
subsection{* Compactness (the definition is the one based on convegent subsequences). *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2109
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  2110
definition "compact S \<longleftrightarrow>
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  2111
   (\<forall>(f::nat \<Rightarrow> real^'n::finite). (\<forall>n. f n \<in> S) \<longrightarrow>
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2112
       (\<exists>l\<in>S. \<exists>r. (\<forall>m n. m < n \<longrightarrow> r m < r n) \<and> ((f o r) ---> l) sequentially))"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2113
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2114
lemma monotone_bigger: fixes r::"nat\<Rightarrow>nat"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2115
  assumes "\<forall>m n::nat. m < n --> r m < r n"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2116
  shows "n \<le> r n"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2117
proof(induct n)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2118
  show "0 \<le> r 0" by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2119
next
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2120
  fix n assume "n \<le> r n"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2121
  moreover have "r n < r (Suc n)" using assms by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2122
  ultimately show "Suc n \<le> r (Suc n)" by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2123
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2124
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2125
lemma lim_subsequence: "\<forall>m n. m < n \<longrightarrow> r m < r n \<Longrightarrow> (s ---> l) sequentially \<Longrightarrow> ((s o r) ---> l) sequentially"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2126
unfolding Lim_sequentially by (simp, metis  monotone_bigger le_trans)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2127
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2128
lemma num_Axiom: "EX! g. g 0 = e \<and> (\<forall>n. g (Suc n) = f n (g n))"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2129
  unfolding Ex1_def
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2130
  apply (rule_tac x="nat_rec e f" in exI)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2131
  apply (rule conjI)+
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2132
apply (rule def_nat_rec_0, simp)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2133
apply (rule allI, rule def_nat_rec_Suc, simp)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2134
apply (rule allI, rule impI, rule ext)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2135
apply (erule conjE)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2136
apply (induct_tac x)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2137
apply (simp add: nat_rec_0)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2138
apply (erule_tac x="n" in allE)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2139
apply (simp)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2140
done
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2141
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2142
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2143
lemma convergent_bounded_increasing: fixes s ::"nat\<Rightarrow>real"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2144
  assumes "\<forall>m n. m \<le> n --> s m \<le> s n" and "\<forall>n. abs(s n) \<le> b"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2145
  shows "\<exists> l. \<forall>e::real>0. \<exists> N. \<forall>n \<ge> N.  abs(s n - l) < e"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2146
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2147
  have "isUb UNIV (range s) b" using assms(2) and abs_le_D1 unfolding isUb_def and setle_def by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2148
  then obtain t where t:"isLub UNIV (range s) t" using reals_complete[of "range s" ] by auto
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  2149
  { fix e::real assume "e>0" and as:"\<forall>N. \<exists>n\<ge>N. \<not> \<bar>s n - t\<bar> < e"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2150
    { fix n::nat
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2151
      obtain N where "N\<ge>n" and n:"\<bar>s N - t\<bar> \<ge> e" using as[THEN spec[where x=n]] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2152
      have "t \<ge> s N" using isLub_isUb[OF t, unfolded isUb_def setle_def] by auto
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  2153
      with n have "s N \<le> t - e" using `e>0` by auto
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2154
      hence "s n \<le> t - e" using assms(1)[THEN spec[where x=n], THEN spec[where x=N]] using `n\<le>N` by auto  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2155
    hence "isUb UNIV (range s) (t - e)" unfolding isUb_def and setle_def by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2156
    hence False using isLub_le_isUb[OF t, of "t - e"] and `e>0` by auto  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2157
  thus ?thesis by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2158
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2159
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2160
lemma convergent_bounded_monotone: fixes s::"nat \<Rightarrow> real"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2161
  assumes "\<forall>n. abs(s n) \<le> b" and "(\<forall>m n. m \<le> n --> s m \<le> s n) \<or> (\<forall>m n. m \<le> n --> s n \<le> s m)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2162
  shows "\<exists>l. \<forall>e::real>0. \<exists>N. \<forall>n\<ge>N. abs(s n - l) < e"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2163
  using convergent_bounded_increasing[of s b] assms using convergent_bounded_increasing[of "\<lambda>n. - s n" b]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2164
  apply auto unfolding minus_add_distrib[THEN sym, unfolded diff_minus[THEN sym]]
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  2165
  unfolding abs_minus_cancel by(rule_tac x="-l" in exI)auto
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  2166
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  2167
lemma compact_real_lemma:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2168
 assumes "\<forall>n::nat. abs(s n) \<le> b"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2169
  shows "\<exists>l r. (\<forall>m n::nat. m < n --> r m < r n) \<and>
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2170
           (\<forall>e>0::real. \<exists>N. \<forall>n\<ge>N. (abs(s (r n) - l) < e))"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2171
proof-
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  2172
  obtain r where r:"\<forall>m n::nat. m < n \<longrightarrow> r m < r n"
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  2173
    "(\<forall>m n. m \<le> n \<longrightarrow> s (r m) \<le> s (r n)) \<or> (\<forall>m n. m \<le> n \<longrightarrow> s (r n) \<le> s (r m))"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2174
    using seq_monosub[of s] by (auto simp add: subseq_def monoseq_def)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2175
  thus ?thesis using convergent_bounded_monotone[of "s o r" b] and assms by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2176
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2177
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  2178
lemma compact_lemma:
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  2179
  assumes "bounded s" and "\<forall>n. (x::nat \<Rightarrow>real^'a::finite) n \<in> s"
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  2180
  shows "\<forall>d.
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  2181
        \<exists>l::(real^'a::finite). \<exists> r. (\<forall>n m::nat. m < n --> r m < r n) \<and>
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  2182
        (\<forall>e>0. \<exists>N. \<forall>n\<ge>N. \<forall>i\<in>d. \<bar>x (r n) $ i - l $ i\<bar> < e)"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2183
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2184
  obtain b where b:"\<forall>x\<in>s. norm x \<le> b" using assms(1)[unfolded bounded_def] by auto
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  2185
  { { fix i::'a
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2186
      { fix n::nat
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  2187
	have "\<bar>x n $ i\<bar> \<le> b" using b[THEN bspec[where x="x n"]] and component_le_norm[of "x n" i] and assms(2)[THEN spec[where x=n]] by auto }
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2188
      hence "\<forall>n. \<bar>x n $ i\<bar> \<le> b" by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2189
    } note b' = this
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2190
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  2191
    fix d::"'a set" have "finite d" by simp
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2192
    hence "\<exists>l::(real^'a). \<exists> r. (\<forall>n m::nat. m < n --> r m < r n) \<and>
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  2193
        (\<forall>e>0. \<exists>N. \<forall>n\<ge>N. \<forall>i\<in>d. \<bar>x (r n) $ i - l $ i\<bar> < e)"
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  2194
    proof(induct d) case empty thus ?case by auto
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  2195
    next case (insert k d)
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  2196
	obtain l1::"real^'a" and r1 where r1:"\<forall>n m::nat. m < n \<longrightarrow> r1 m < r1 n" and lr1:"\<forall>e>0. \<exists>N. \<forall>n\<ge>N. \<forall>i\<in>d. \<bar>x (r1 n) $ i - l1 $ i\<bar> < e"
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  2197
	  using insert(3) by auto
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  2198
	obtain l2 r2 where r2:"\<forall>m n::nat. m < n \<longrightarrow> r2 m < r2 n" and lr2:"\<forall>e>0. \<exists>N. \<forall>n\<ge>N. \<bar>(x \<circ> r1) (r2 n) $ k - l2\<bar> < e"
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  2199
	  using b'[of k] and compact_real_lemma[of "\<lambda>i. ((x \<circ> r1) i)$k" b] by auto
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2200
	def r \<equiv> "r1 \<circ> r2" have r:"\<forall>m n. m < n \<longrightarrow> r m < r n" unfolding r_def o_def using r1 and r2 by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2201
	moreover
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  2202
	def l \<equiv> "(\<chi> i. if i = k then l2 else l1$i)::real^'a"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2203
	{ fix e::real assume "e>0"
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  2204
	  from lr1 obtain N1 where N1:"\<forall>n\<ge>N1. \<forall>i\<in>d. \<bar>x (r1 n) $ i - l1 $ i\<bar> < e" using `e>0` by blast
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  2205
	  from lr2 obtain N2 where N2:"\<forall>n\<ge>N2. \<bar>(x \<circ> r1) (r2 n) $ k - l2\<bar> < e" using `e>0` by blast
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2206
	  { fix n assume n:"n\<ge> N1 + N2"
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  2207
	    fix i assume i:"i\<in>(insert k d)"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2208
	    hence "\<bar>x (r n) $ i - l $ i\<bar> < e"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2209
	      using N2[THEN spec[where x="n"]] and n
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2210
 	      using N1[THEN spec[where x="r2 n"]] and n
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2211
	      using monotone_bigger[OF r] and i
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  2212
	      unfolding l_def and r_def
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2213
	      using monotone_bigger[OF r2, of n] by auto  }
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  2214
	  hence "\<exists>N. \<forall>n\<ge>N. \<forall>i\<in>(insert k d). \<bar>x (r n) $ i - l $ i\<bar> < e" by blast	}
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  2215
	ultimately show ?case by auto
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2216
    qed  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2217
  thus ?thesis by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2218
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2219
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  2220
lemma bounded_closed_imp_compact: fixes s::"(real^'a::finite) set"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2221
  assumes "bounded s" and "closed s"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2222
  shows "compact s"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2223
proof-
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  2224
  let ?d = "UNIV::'a set"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2225
  { fix f assume as:"\<forall>n::nat. f n \<in> s"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2226
    obtain l::"real^'a" and r where r:"\<forall>n m::nat. m < n \<longrightarrow> r m < r n"
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  2227
      and lr:"\<forall>e>0. \<exists>N. \<forall>n\<ge>N. \<forall>i\<in>?d. \<bar>f (r n) $ i - l $ i\<bar> < e"
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  2228
      using compact_lemma[OF assms(1) as, THEN spec[where x="?d"]] by auto
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2229
    { fix e::real assume "e>0"
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  2230
      hence "0 < e / (real_of_nat (card ?d))" using zero_less_card_finite using divide_pos_pos[of e, of "real_of_nat (card ?d)"] by auto
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  2231
      then obtain N::nat where N:"\<forall>n\<ge>N. \<forall>i\<in>?d. \<bar>f (r n) $ i - l $ i\<bar> < e / (real_of_nat (card ?d))" using lr[THEN spec[where x="e / (real_of_nat (card ?d))"]] by blast
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2232
      { fix n assume n:"n\<ge>N"
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  2233
	hence "finite ?d"  "?d \<noteq> {}" by auto
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2234
	moreover
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  2235
	{ fix i assume i:"i \<in> ?d"
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  2236
	  hence "\<bar>((f \<circ> r) n - l) $ i\<bar> < e / real_of_nat (card ?d)" using `n\<ge>N` using N[THEN spec[where x=n]]
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  2237
	    by auto  }
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  2238
	ultimately have "(\<Sum>i \<in> ?d. \<bar>((f \<circ> r) n - l) $ i\<bar>)
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  2239
	  < (\<Sum>i \<in> ?d. e / real_of_nat (card ?d))"
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  2240
	  using setsum_strict_mono[of "?d" "\<lambda>i. \<bar>((f \<circ> r) n - l) $ i\<bar>" "\<lambda>i. e / (real_of_nat (card ?d))"] by auto
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  2241
	hence "(\<Sum>i \<in> ?d. \<bar>((f \<circ> r) n - l) $ i\<bar>) < e" unfolding setsum_constant by auto
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2242
	hence "dist ((f \<circ> r) n) l < e" unfolding dist_def using norm_le_l1[of "(f \<circ> r) n - l"] by auto  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2243
      hence "\<exists>N. \<forall>n\<ge>N. dist ((f \<circ> r) n) l < e" by auto  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2244
    hence *:"((f \<circ> r) ---> l) sequentially" unfolding Lim_sequentially by auto
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  2245
    moreover have "l\<in>s"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2246
      using assms(2)[unfolded closed_sequential_limits, THEN spec[where x="f \<circ> r"], THEN spec[where x=l]] and * and as by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2247
    ultimately have "\<exists>l\<in>s. \<exists>r. (\<forall>m n. m < n \<longrightarrow> r m < r n) \<and> ((f \<circ> r) ---> l) sequentially" using r by auto  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2248
  thus ?thesis unfolding compact_def by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2249
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2250
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2251
subsection{* Completeness. *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2252
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2253
  (* FIXME: Unify this with Cauchy from SEQ!!!!!*)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2254
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2255
definition cauchy_def:"cauchy s \<longleftrightarrow> (\<forall>e>0. \<exists>N. \<forall>m n. m \<ge> N \<and> n \<ge> N --> dist(s m)(s n) < e)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2256
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  2257
definition complete_def:"complete s \<longleftrightarrow> (\<forall>f::(nat=>real^'a::finite). (\<forall>n. f n \<in> s) \<and> cauchy f
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2258
                      --> (\<exists>l \<in> s. (f ---> l) sequentially))"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2259
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2260
lemma cauchy: "cauchy s \<longleftrightarrow> (\<forall>e>0.\<exists> N::nat. \<forall>n\<ge>N. dist(s n)(s N) < e)" (is "?lhs = ?rhs")
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2261
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2262
  { assume ?rhs
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2263
    { fix e::real
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2264
      assume "e>0"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2265
      with `?rhs` obtain N where N:"\<forall>n\<ge>N. dist (s n) (s N) < e/2"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2266
	by (erule_tac x="e/2" in allE) auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2267
      { fix n m
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2268
	assume nm:"N \<le> m \<and> N \<le> n"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2269
	hence "dist (s m) (s n) < e" using N
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2270
	  using dist_triangle_half_l[of "s m" "s N" "e" "s n"]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2271
	  by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2272
      }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2273
      hence "\<exists>N. \<forall>m n. N \<le> m \<and> N \<le> n \<longrightarrow> dist (s m) (s n) < e"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2274
	by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2275
    }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2276
    hence ?lhs
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2277
      unfolding cauchy_def
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2278
      by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2279
  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2280
  thus ?thesis
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2281
    unfolding cauchy_def
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2282
    using dist_triangle_half_l
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2283
    by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2284
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2285
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  2286
lemma convergent_imp_cauchy:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2287
 "(s ---> l) sequentially ==> cauchy s"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2288
proof(simp only: cauchy_def, rule, rule)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2289
  fix e::real assume "e>0" "(s ---> l) sequentially"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2290
  then obtain N::nat where N:"\<forall>n\<ge>N. dist (s n) l < e/2" unfolding Lim_sequentially by(erule_tac x="e/2" in allE) auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2291
  thus "\<exists>N. \<forall>m n. N \<le> m \<and> N \<le> n \<longrightarrow> dist (s m) (s n) < e"  using dist_triangle_half_l[of _ l e _] by (rule_tac x=N in exI) auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2292
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2293
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2294
lemma cauchy_imp_bounded: assumes "cauchy s" shows "bounded {y. (\<exists>n::nat. y = s n)}"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2295
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2296
  from assms obtain N::nat where "\<forall>m n. N \<le> m \<and> N \<le> n \<longrightarrow> dist (s m) (s n) < 1" unfolding cauchy_def apply(erule_tac x= 1 in allE) by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2297
  hence N:"\<forall>n. N \<le> n \<longrightarrow> dist (s N) (s n) < 1" by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2298
  { fix n::nat assume "n\<ge>N"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2299
    hence "norm (s n) \<le> norm (s N) + 1" using N apply(erule_tac x=n in allE) unfolding dist_def
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2300
      using norm_triangle_sub[of "s N" "s n"] by (auto, metis dist_def dist_sym le_add_right_mono norm_triangle_sub real_less_def)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2301
  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2302
  hence "\<forall>n\<ge>N. norm (s n) \<le> norm (s N) + 1" by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2303
  moreover
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2304
  have "bounded (s ` {0..N})" using finite_imp_bounded[of "s ` {1..N}"] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2305
  then obtain a where a:"\<forall>x\<in>s ` {0..N}. norm x \<le> a" unfolding bounded_def by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2306
  ultimately show "?thesis" unfolding bounded_def
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2307
    apply(rule_tac x="max a (norm (s N) + 1)" in exI) apply auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2308
    apply(erule_tac x=n in allE) apply(erule_tac x=n in ballE) by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2309
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2310
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2311
lemma compact_imp_complete: assumes "compact s" shows "complete s"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2312
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2313
  { fix f assume as: "(\<forall>n::nat. f n \<in> s)" "cauchy f"
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  2314
    from as(1) obtain l r where lr: "l\<in>s" "(\<forall>m n. m < n \<longrightarrow> r m < r n)" "((f \<circ> r) ---> l) sequentially" using assms unfolding compact_def by blast
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2315
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2316
    { fix n :: nat have lr':"n \<le> r n"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2317
    proof (induct n)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2318
      show "0 \<le> r 0" using lr(2) by blast
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  2319
    next fix na assume "na \<le> r na" moreover have "na < Suc na \<longrightarrow> r na < r (Suc na)" using lr(2) by blast
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2320
      ultimately show "Suc na \<le> r (Suc na)" by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2321
    qed } note lr' = this
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2322
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2323
    { fix e::real assume "e>0"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2324
      from as(2) obtain N where N:"\<forall>m n. N \<le> m \<and> N \<le> n \<longrightarrow> dist (f m) (f n) < e/2" unfolding cauchy_def using `e>0` apply (erule_tac x="e/2" in allE) by auto
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  2325
      from lr(3)[unfolded Lim_sequentially, THEN spec[where x="e/2"]] obtain M where M:"\<forall>n\<ge>M. dist ((f \<circ> r) n) l < e/2" using `e>0` by auto
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2326
      { fix n::nat assume n:"n \<ge> max N M"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2327
	have "dist ((f \<circ> r) n) l < e/2" using n M by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2328
	moreover have "r n \<ge> N" using lr'[of n] n by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2329
	hence "dist (f n) ((f \<circ> r) n) < e / 2" using N using n by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2330
	ultimately have "dist (f n) l < e" using dist_triangle_half_r[of "f (r n)" "f n" e l] by (auto simp add: dist_sym)  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2331
      hence "\<exists>N. \<forall>n\<ge>N. dist (f n) l < e" by blast  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2332
    hence "\<exists>l\<in>s. (f ---> l) sequentially" using `l\<in>s` unfolding Lim_sequentially by auto  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2333
  thus ?thesis unfolding complete_def by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2334
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2335
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  2336
lemma complete_univ:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2337
 "complete UNIV"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2338
proof(simp add: complete_def, rule, rule)
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  2339
  fix f::"nat \<Rightarrow> real^'n::finite" assume "cauchy f"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2340
  hence "bounded (f`UNIV)" using cauchy_imp_bounded[of f] unfolding image_def by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2341
  hence "compact (closure (f`UNIV))"  using bounded_closed_imp_compact[of "closure (range f)"] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2342
  hence "complete (closure (range f))" using compact_imp_complete by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2343
  thus "\<exists>l. (f ---> l) sequentially" unfolding complete_def[of "closure (range f)"] using `cauchy f` unfolding closure_def  by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2344
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2345
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2346
lemma complete_eq_closed: "complete s \<longleftrightarrow> closed s" (is "?lhs = ?rhs")
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2347
proof
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2348
  assume ?lhs
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2349
  { fix x assume "x islimpt s"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2350
    then obtain f where f:"\<forall>n. f n \<in> s - {x}" "(f ---> x) sequentially" unfolding islimpt_sequential by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2351
    then obtain l where l: "l\<in>s" "(f ---> l) sequentially" using `?lhs`[unfolded complete_def]  using convergent_imp_cauchy[of f x] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2352
    hence "x \<in> s"  using Lim_unique[of sequentially f l x] trivial_limit_sequentially f(2) by auto  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2353
  thus ?rhs unfolding closed_limpt by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2354
next
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2355
  assume ?rhs
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2356
  { fix f assume as:"\<forall>n::nat. f n \<in> s" "cauchy f"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2357
    then obtain l where "(f ---> l) sequentially" using complete_univ[unfolded complete_def, THEN spec[where x=f]] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2358
    hence "\<exists>l\<in>s. (f ---> l) sequentially" using `?rhs`[unfolded closed_sequential_limits, THEN spec[where x=f], THEN spec[where x=l]] using as(1) by auto  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2359
  thus ?lhs unfolding complete_def by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2360
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2361
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2362
lemma convergent_eq_cauchy: "(\<exists>l. (s ---> l) sequentially) \<longleftrightarrow> cauchy s" (is "?lhs = ?rhs")
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2363
proof
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2364
  assume ?lhs then obtain l where "(s ---> l) sequentially" by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2365
  thus ?rhs using convergent_imp_cauchy by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2366
next
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2367
  assume ?rhs thus ?lhs using complete_univ[unfolded complete_def, THEN spec[where x=s]] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2368
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2369
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2370
lemma convergent_imp_bounded: "(s ---> l) sequentially ==> bounded (s ` (UNIV::(nat set)))"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2371
  using convergent_eq_cauchy[of s]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2372
  using cauchy_imp_bounded[of s]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2373
  unfolding image_def
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2374
  by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2375
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2376
subsection{* Total boundedness. *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2377
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  2378
fun helper_1::"((real^'n::finite) set) \<Rightarrow> real \<Rightarrow> nat \<Rightarrow> real^'n" where
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2379
  "helper_1 s e n = (SOME y::real^'n. y \<in> s \<and> (\<forall>m<n. \<not> (dist (helper_1 s e m) y < e)))"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2380
declare helper_1.simps[simp del]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2381
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  2382
lemma compact_imp_totally_bounded:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2383
  assumes "compact s"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2384
  shows "\<forall>e>0. \<exists>k. finite k \<and> k \<subseteq> s \<and> s \<subseteq> (\<Union>((\<lambda>x. ball x e) ` k))"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2385
proof(rule, rule, rule ccontr)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2386
  fix e::real assume "e>0" and assm:"\<not> (\<exists>k. finite k \<and> k \<subseteq> s \<and> s \<subseteq> \<Union>(\<lambda>x. ball x e) ` k)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2387
  def x \<equiv> "helper_1 s e"
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  2388
  { fix n
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2389
    have "x n \<in> s \<and> (\<forall>m<n. \<not> dist (x m) (x n) < e)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2390
    proof(induct_tac rule:nat_less_induct)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2391
      fix n  def Q \<equiv> "(\<lambda>y. y \<in> s \<and> (\<forall>m<n. \<not> dist (x m) y < e))"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2392
      assume as:"\<forall>m<n. x m \<in> s \<and> (\<forall>ma<m. \<not> dist (x ma) (x m) < e)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2393
      have "\<not> s \<subseteq> (\<Union>x\<in>x ` {0..<n}. ball x e)" using assm apply simp apply(erule_tac x="x ` {0 ..< n}" in allE) using as by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2394
      then obtain z where z:"z\<in>s" "z \<notin> (\<Union>x\<in>x ` {0..<n}. ball x e)" unfolding subset_eq by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2395
      have "Q (x n)" unfolding x_def and helper_1.simps[of s e n]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2396
	apply(rule someI2[where a=z]) unfolding x_def[symmetric] and Q_def using z by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2397
      thus "x n \<in> s \<and> (\<forall>m<n. \<not> dist (x m) (x n) < e)" unfolding Q_def by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2398
    qed }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2399
  hence "\<forall>n::nat. x n \<in> s" and x:"\<forall>n. \<forall>m < n. \<not> (dist (x m) (x n) < e)" by blast+
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2400
  then obtain l r where "l\<in>s" and r:"\<forall>m n. m < n \<longrightarrow> r m < r n" and "((x \<circ> r) ---> l) sequentially" using assms(1)[unfolded compact_def, THEN spec[where x=x]] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2401
  from this(3) have "cauchy (x \<circ> r)" using convergent_imp_cauchy by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2402
  then obtain N::nat where N:"\<forall>m n. N \<le> m \<and> N \<le> n \<longrightarrow> dist ((x \<circ> r) m) ((x \<circ> r) n) < e" unfolding cauchy_def using `e>0` by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2403
  show False
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2404
    using N[THEN spec[where x=N], THEN spec[where x="N+1"]]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2405
    using r[THEN spec[where x=N], THEN spec[where x="N+1"]]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2406
    using x[THEN spec[where x="r (N+1)"], THEN spec[where x="r (N)"]] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2407
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2408
30268
5af6ed62385b fixed document;
wenzelm
parents: 30267
diff changeset
  2409
subsection{* Heine-Borel theorem (following Burkill \& Burkill vol. 2) *}
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2410
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  2411
lemma heine_borel_lemma: fixes s::"(real^'n::finite) set"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2412
  assumes "compact s"  "s \<subseteq> (\<Union> t)"  "\<forall>b \<in> t. open b"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2413
  shows "\<exists>e>0. \<forall>x \<in> s. \<exists>b \<in> t. ball x e \<subseteq> b"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2414
proof(rule ccontr)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2415
  assume "\<not> (\<exists>e>0. \<forall>x\<in>s. \<exists>b\<in>t. ball x e \<subseteq> b)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2416
  hence cont:"\<forall>e>0. \<exists>x\<in>s. \<forall>xa\<in>t. \<not> (ball x e \<subseteq> xa)" by auto
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  2417
  { fix n::nat
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2418
    have "1 / real (n + 1) > 0" by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2419
    hence "\<exists>x. x\<in>s \<and> (\<forall>xa\<in>t. \<not> (ball x (inverse (real (n+1))) \<subseteq> xa))" using cont unfolding Bex_def by auto }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2420
  hence "\<forall>n::nat. \<exists>x. x \<in> s \<and> (\<forall>xa\<in>t. \<not> ball x (inverse (real (n + 1))) \<subseteq> xa)" by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2421
  then obtain f where f:"\<forall>n::nat. f n \<in> s \<and> (\<forall>xa\<in>t. \<not> ball (f n) (inverse (real (n + 1))) \<subseteq> xa)"
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  2422
    using choice[of "\<lambda>n::nat. \<lambda>x. x\<in>s \<and> (\<forall>xa\<in>t. \<not> ball x (inverse (real (n + 1))) \<subseteq> xa)"] by auto
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2423
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2424
  then obtain l r where l:"l\<in>s" and r:"\<forall>m n. m < n \<longrightarrow> r m < r n" and lr:"((f \<circ> r) ---> l) sequentially"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2425
    using assms(1)[unfolded compact_def, THEN spec[where x=f]] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2426
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2427
  obtain b where "l\<in>b" "b\<in>t" using assms(2) and l by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2428
  then obtain e where "e>0" and e:"\<forall>z. dist z l < e \<longrightarrow> z\<in>b"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2429
    using assms(3)[THEN bspec[where x=b]] unfolding open_def by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2430
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2431
  then obtain N1 where N1:"\<forall>n\<ge>N1. dist ((f \<circ> r) n) l < e / 2"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2432
    using lr[unfolded Lim_sequentially, THEN spec[where x="e/2"]] by auto
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  2433
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2434
  obtain N2::nat where N2:"N2>0" "inverse (real N2) < e /2" using real_arch_inv[of "e/2"] and `e>0` by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2435
  have N2':"inverse (real (r (N1 + N2) +1 )) < e/2"
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  2436
    apply(rule order_less_trans) apply(rule less_imp_inverse_less) using N2
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2437
    using monotone_bigger[OF r, of "N1 + N2"] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2438
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2439
  def x \<equiv> "(f (r (N1 + N2)))"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2440
  have x:"\<not> ball x (inverse (real (r (N1 + N2) + 1))) \<subseteq> b" unfolding x_def
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2441
    using f[THEN spec[where x="r (N1 + N2)"]] using `b\<in>t` by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2442
  have "\<exists>y\<in>ball x (inverse (real (r (N1 + N2) + 1))). y\<notin>b" apply(rule ccontr) using x by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2443
  then obtain y where y:"y \<in> ball x (inverse (real (r (N1 + N2) + 1)))" "y \<notin> b" by auto
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  2444
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2445
  have "dist x l < e/2" using N1 unfolding x_def o_def by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2446
  hence "dist y l < e" using y N2' using dist_triangle[of y l x]by (auto simp add:dist_sym)
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  2447
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2448
  thus False using e and `y\<notin>b` by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2449
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2450
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2451
lemma compact_imp_heine_borel: "compact s ==> (\<forall>f. (\<forall>t \<in> f. open t) \<and> s \<subseteq> (\<Union> f)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2452
               \<longrightarrow> (\<exists>f'. f' \<subseteq> f \<and> finite f' \<and> s \<subseteq> (\<Union> f')))"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2453
proof clarify
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2454
  fix f assume "compact s" " \<forall>t\<in>f. open t" "s \<subseteq> \<Union>f"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2455
  then obtain e::real where "e>0" and "\<forall>x\<in>s. \<exists>b\<in>f. ball x e \<subseteq> b" using heine_borel_lemma[of s f] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2456
  hence "\<forall>x\<in>s. \<exists>b. b\<in>f \<and> ball x e \<subseteq> b" by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2457
  hence "\<exists>bb. \<forall>x\<in>s. bb x \<in>f \<and> ball x e \<subseteq> bb x" using bchoice[of s "\<lambda>x b. b\<in>f \<and> ball x e \<subseteq> b"] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2458
  then obtain  bb where bb:"\<forall>x\<in>s. (bb x) \<in> f \<and> ball x e \<subseteq> (bb x)" by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2459
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2460
  from `compact s` have  "\<exists> k. finite k \<and> k \<subseteq> s \<and> s \<subseteq> \<Union>(\<lambda>x. ball x e) ` k" using compact_imp_totally_bounded[of s] `e>0` by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2461
  then obtain k where k:"finite k" "k \<subseteq> s" "s \<subseteq> \<Union>(\<lambda>x. ball x e) ` k" by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2462
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2463
  have "finite (bb ` k)" using k(1) by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2464
  moreover
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2465
  { fix x assume "x\<in>s"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2466
    hence "x\<in>\<Union>(\<lambda>x. ball x e) ` k" using k(3)  unfolding subset_eq by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2467
    hence "\<exists>X\<in>bb ` k. x \<in> X" using bb k(2) by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2468
    hence "x \<in> \<Union>(bb ` k)" using  Union_iff[of x "bb ` k"] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2469
  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2470
  ultimately show "\<exists>f'\<subseteq>f. finite f' \<and> s \<subseteq> \<Union>f'" using bb k(2) by (rule_tac x="bb ` k" in exI) auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2471
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2472
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2473
subsection{* Bolzano-Weierstrass property. *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2474
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  2475
lemma heine_borel_imp_bolzano_weierstrass:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2476
  assumes "\<forall>f. (\<forall>t \<in> f. open t) \<and> s \<subseteq> (\<Union> f) --> (\<exists>f'. f' \<subseteq> f \<and> finite f' \<and> s \<subseteq> (\<Union> f'))"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2477
          "infinite t"  "t \<subseteq> s"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2478
  shows "\<exists>x \<in> s. x islimpt t"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2479
proof(rule ccontr)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2480
  assume "\<not> (\<exists>x \<in> s. x islimpt t)"
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  2481
  then obtain f where f:"\<forall>x\<in>s. x \<in> f x \<and> open (f x) \<and> (\<forall>y\<in>t. y \<in> f x \<longrightarrow> y = x)" unfolding islimpt_def
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2482
    using bchoice[of s "\<lambda> x T. x \<in> T \<and> open T \<and> (\<forall>y\<in>t. y \<in> T \<longrightarrow> y = x)"] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2483
  obtain g where g:"g\<subseteq>{t. \<exists>x. x \<in> s \<and> t = f x}" "finite g" "s \<subseteq> \<Union>g"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2484
    using assms(1)[THEN spec[where x="{t. \<exists>x. x\<in>s \<and> t = f x}"]] using f by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2485
  from g(1,3) have g':"\<forall>x\<in>g. \<exists>xa \<in> s. x = f xa" by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2486
  { fix x y assume "x\<in>t" "y\<in>t" "f x = f y"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2487
    hence "x \<in> f x"  "y \<in> f x \<longrightarrow> y = x" using f[THEN bspec[where x=x]] and `t\<subseteq>s` by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2488
    hence "x = y" using `f x = f y` and f[THEN bspec[where x=y]] and `y\<in>t` and `t\<subseteq>s` by auto  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2489
  hence "infinite (f ` t)" using assms(2) using finite_imageD[unfolded inj_on_def, of f t] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2490
  moreover
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2491
  { fix x assume "x\<in>t" "f x \<notin> g"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2492
    from g(3) assms(3) `x\<in>t` obtain h where "h\<in>g" and "x\<in>h" by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2493
    then obtain y where "y\<in>s" "h = f y" using g'[THEN bspec[where x=h]] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2494
    hence "y = x" using f[THEN bspec[where x=y]] and `x\<in>t` and `x\<in>h`[unfolded `h = f y`] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2495
    hence False using `f x \<notin> g` `h\<in>g` unfolding `h = f y` by auto  }
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  2496
  hence "f ` t \<subseteq> g" by auto
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  2497
  ultimately show False using g(2) using finite_subset by auto
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2498
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2499
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2500
subsection{* Complete the chain of compactness variants. *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2501
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  2502
primrec helper_2::"(real \<Rightarrow> real^'n::finite) \<Rightarrow> nat \<Rightarrow> real ^'n" where
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2503
  "helper_2 beyond 0 = beyond 0" |
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2504
  "helper_2 beyond (Suc n) = beyond (norm (helper_2 beyond n) + 1 )"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2505
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  2506
lemma bolzano_weierstrass_imp_bounded: fixes s::"(real^'n::finite) set"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2507
  assumes "\<forall>t. infinite t \<and> t \<subseteq> s --> (\<exists>x \<in> s. x islimpt t)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2508
  shows "bounded s"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2509
proof(rule ccontr)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2510
  assume "\<not> bounded s"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2511
  then obtain beyond where "\<forall>a. beyond a \<in>s \<and> \<not> norm (beyond a) \<le> a"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2512
    unfolding bounded_def apply simp using choice[of "\<lambda>a x. x\<in>s \<and> \<not> norm x \<le> a"] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2513
  hence beyond:"\<And>a. beyond a \<in>s" "\<And>a. norm (beyond a) > a" unfolding linorder_not_le by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2514
  def x \<equiv> "helper_2 beyond"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2515
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2516
  { fix m n ::nat assume "m<n"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2517
    hence "norm (x m) + 1 < norm (x n)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2518
    proof(induct n)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2519
      case 0 thus ?case by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2520
    next
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  2521
      case (Suc n)
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  2522
      have *:"norm (x n) + 1 < norm (x (Suc n))" unfolding x_def and helper_2.simps
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2523
	using beyond(2)[of "norm (helper_2 beyond n) + 1"] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2524
      thus ?case proof(cases "m < n")
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2525
	case True thus ?thesis using Suc and * by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2526
      next
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2527
	case False hence "m = n" using Suc(2) by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2528
	thus ?thesis using * by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2529
      qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2530
    qed  } note * = this
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2531
  { fix m n ::nat assume "m\<noteq>n"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2532
    have "1 < dist (x m) (x n)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2533
    proof(cases "m<n")
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  2534
      case True
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2535
      hence "1 < norm (x n) - norm (x m)" using *[of m n] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2536
      thus ?thesis unfolding dist_sym[of "x m" "x n"] unfolding dist_def using norm_triangle_sub[of "x n" "x m"] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2537
    next
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2538
      case False hence "n<m" using `m\<noteq>n` by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2539
      hence "1 < norm (x m) - norm (x n)" using *[of n m] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2540
      thus ?thesis unfolding dist_sym[of "x n" "x m"] unfolding dist_def using norm_triangle_sub[of "x m" "x n"] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2541
    qed  } note ** = this
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2542
  { fix a b assume "x a = x b" "a \<noteq> b"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2543
    hence False using **[of a b] unfolding dist_eq_0[THEN sym] by auto  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2544
  hence "inj x" unfolding inj_on_def by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2545
  moreover
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2546
  { fix n::nat
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2547
    have "x n \<in> s"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2548
    proof(cases "n = 0")
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  2549
      case True thus ?thesis unfolding x_def using beyond by auto
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2550
    next
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2551
      case False then obtain z where "n = Suc z" using not0_implies_Suc by auto
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  2552
      thus ?thesis unfolding x_def using beyond by auto
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2553
    qed  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2554
  ultimately have "infinite (range x) \<and> range x \<subseteq> s" unfolding x_def using range_inj_infinite[of "helper_2 beyond"] using beyond(1) by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2555
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2556
  then obtain l where "l\<in>s" and l:"l islimpt range x" using assms[THEN spec[where x="range x"]] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2557
  then obtain y where "x y \<noteq> l" and y:"dist (x y) l < 1/2" unfolding islimpt_approachable apply(erule_tac x="1/2" in allE) by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2558
  then obtain z where "x z \<noteq> l" and z:"dist (x z) l < dist (x y) l" using l[unfolded islimpt_approachable, THEN spec[where x="dist (x y) l"]]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2559
    unfolding dist_nz by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2560
  show False using y and z and dist_triangle_half_l[of "x y" l 1 "x z"] and **[of y z] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2561
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2562
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  2563
lemma sequence_infinite_lemma:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2564
  assumes "\<forall>n::nat. (f n  \<noteq> l)"  "(f ---> l) sequentially"
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  2565
  shows "infinite {y::real^'a::finite. (\<exists> n. y = f n)}"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2566
proof(rule ccontr)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2567
  let ?A = "(\<lambda>x. dist x l) ` {y. \<exists>n. y = f n}"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2568
  assume "\<not> infinite {y. \<exists>n. y = f n}"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2569
  hence **:"finite ?A" "?A \<noteq> {}" by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2570
  obtain k where k:"dist (f k) l = Min ?A" using Min_in[OF **] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2571
  have "0 < Min ?A" using assms(1) unfolding dist_nz unfolding Min_gr_iff[OF **] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2572
  then obtain N where "dist (f N) l < Min ?A" using assms(2)[unfolded Lim_sequentially, THEN spec[where x="Min ?A"]] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2573
  moreover have "dist (f N) l \<in> ?A" by auto
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  2574
  ultimately show False using Min_le[OF **(1), of "dist (f N) l"] by auto
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  2575
qed
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  2576
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  2577
lemma sequence_unique_limpt:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2578
  assumes "\<forall>n::nat. (f n \<noteq> l)"  "(f ---> l) sequentially"  "l' islimpt {y.  (\<exists>n. y = f n)}"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2579
  shows "l' = l"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2580
proof(rule ccontr)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2581
  def e \<equiv> "dist l' l"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2582
  assume "l' \<noteq> l" hence "e>0" unfolding dist_nz e_def by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2583
  then obtain N::nat where N:"\<forall>n\<ge>N. dist (f n) l < e / 2"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2584
    using assms(2)[unfolded Lim_sequentially, THEN spec[where x="e/2"]] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2585
  def d \<equiv> "Min (insert (e/2) ((\<lambda>n. if dist (f n) l' = 0 then e/2 else dist (f n) l') ` {0 .. N}))"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2586
  have "d>0" using `e>0` unfolding d_def e_def using dist_pos_le[of _ l', unfolded order_le_less] by auto
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  2587
  obtain k where k:"f k \<noteq> l'"  "dist (f k) l' < d" using `d>0` and assms(3)[unfolded islimpt_approachable, THEN spec[where x="d"]] by auto
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2588
  have "k\<ge>N" using k(1)[unfolded dist_nz] using k(2)[unfolded d_def]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2589
    by force
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2590
  hence "dist l' l < e" using N[THEN spec[where x=k]] using k(2)[unfolded d_def] and dist_triangle_half_r[of "f k" l' e l] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2591
  thus False unfolding e_def by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2592
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2593
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  2594
lemma bolzano_weierstrass_imp_closed:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2595
  assumes "\<forall>t. infinite t \<and> t \<subseteq> s --> (\<exists>x \<in> s. x islimpt t)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2596
  shows "closed s"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2597
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2598
  { fix x l assume as: "\<forall>n::nat. x n \<in> s" "(x ---> l) sequentially"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2599
    hence "l \<in> s"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2600
    proof(cases "\<forall>n. x n \<noteq> l")
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2601
      case False thus "l\<in>s" using as(1) by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2602
    next
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2603
      case True note cas = this
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2604
      with as(2) have "infinite {y. \<exists>n. y = x n}" using sequence_infinite_lemma[of x l] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2605
      then obtain l' where "l'\<in>s" "l' islimpt {y. \<exists>n. y = x n}" using assms[THEN spec[where x="{y. \<exists>n. y = x n}"]] as(1) by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2606
      thus "l\<in>s" using sequence_unique_limpt[of x l l'] using as cas by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2607
    qed  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2608
  thus ?thesis unfolding closed_sequential_limits by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2609
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2610
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2611
text{* Hence express everything as an equivalence.   *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2612
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2613
lemma compact_eq_heine_borel: "compact s \<longleftrightarrow>
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2614
           (\<forall>f. (\<forall>t \<in> f. open t) \<and> s \<subseteq> (\<Union> f)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2615
               --> (\<exists>f'. f' \<subseteq> f \<and> finite f' \<and> s \<subseteq> (\<Union> f')))" (is "?lhs = ?rhs")
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2616
proof
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2617
  assume ?lhs thus ?rhs using compact_imp_heine_borel[of s] by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2618
next
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2619
  assume ?rhs
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2620
  hence "\<forall>t. infinite t \<and> t \<subseteq> s \<longrightarrow> (\<exists>x\<in>s. x islimpt t)" using heine_borel_imp_bolzano_weierstrass[of s] by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2621
  thus ?lhs using bolzano_weierstrass_imp_bounded[of s] bolzano_weierstrass_imp_closed[of s] bounded_closed_imp_compact[of s] by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2622
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2623
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  2624
lemma compact_eq_bolzano_weierstrass:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2625
        "compact s \<longleftrightarrow> (\<forall>t. infinite t \<and> t \<subseteq> s --> (\<exists>x \<in> s. x islimpt t))" (is "?lhs = ?rhs")
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2626
proof
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2627
  assume ?lhs thus ?rhs unfolding compact_eq_heine_borel using heine_borel_imp_bolzano_weierstrass[of s] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2628
next
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2629
  assume ?rhs thus ?lhs using bolzano_weierstrass_imp_bounded bolzano_weierstrass_imp_closed bounded_closed_imp_compact by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2630
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2631
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  2632
lemma compact_eq_bounded_closed:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2633
 "compact s \<longleftrightarrow> bounded s \<and> closed s"  (is "?lhs = ?rhs")
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2634
proof
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2635
  assume ?lhs thus ?rhs unfolding compact_eq_bolzano_weierstrass using bolzano_weierstrass_imp_bounded bolzano_weierstrass_imp_closed by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2636
next
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2637
  assume ?rhs thus ?lhs using bounded_closed_imp_compact by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2638
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2639
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  2640
lemma compact_imp_bounded:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2641
 "compact s ==> bounded s"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2642
  unfolding compact_eq_bounded_closed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2643
  by simp
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2644
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  2645
lemma compact_imp_closed:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2646
 "compact s ==> closed s"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2647
  unfolding compact_eq_bounded_closed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2648
  by simp
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2649
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2650
text{* In particular, some common special cases. *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2651
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  2652
lemma compact_empty[simp]:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2653
 "compact {}"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2654
  unfolding compact_def
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2655
  by simp
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2656
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2657
  (* FIXME : Rename *)
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  2658
lemma compact_union[intro]:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2659
 "compact s \<Longrightarrow> compact t ==> compact (s \<union> t)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2660
  unfolding compact_eq_bounded_closed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2661
  using bounded_Un[of s t]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2662
  using closed_Un[of s t]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2663
  by simp
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2664
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  2665
lemma compact_inter[intro]:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2666
 "compact s \<Longrightarrow> compact t ==> compact (s \<inter> t)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2667
  unfolding compact_eq_bounded_closed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2668
  using bounded_Int[of s t]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2669
  using closed_Int[of s t]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2670
  by simp
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2671
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  2672
lemma compact_inter_closed[intro]:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2673
 "compact s \<Longrightarrow> closed t ==> compact (s \<inter> t)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2674
  unfolding compact_eq_bounded_closed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2675
  using closed_Int[of s t]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2676
  using bounded_subset[of "s \<inter> t" s]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2677
  by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2678
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  2679
lemma closed_inter_compact[intro]:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2680
 "closed s \<Longrightarrow> compact t ==> compact (s \<inter> t)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2681
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2682
  assume "closed s" "compact t"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2683
  moreover
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2684
  have "s \<inter> t = t \<inter> s" by auto ultimately
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2685
  show ?thesis
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2686
    using compact_inter_closed[of t s]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2687
    by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2688
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2689
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  2690
lemma finite_imp_closed:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2691
 "finite s ==> closed s"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2692
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2693
  assume "finite s" hence "\<not>( \<exists>t. t \<subseteq> s \<and> infinite t)" using finite_subset by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2694
  thus ?thesis using bolzano_weierstrass_imp_closed[of s] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2695
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2696
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  2697
lemma finite_imp_compact:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2698
 "finite s ==> compact s"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2699
  unfolding compact_eq_bounded_closed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2700
  using finite_imp_closed finite_imp_bounded
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2701
  by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2702
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  2703
lemma compact_sing[simp]:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2704
 "compact {a}"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2705
  using finite_imp_compact[of "{a}"]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2706
  by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2707
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  2708
lemma closed_sing[simp]:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2709
 "closed {a}"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2710
  using compact_eq_bounded_closed compact_sing[of a]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2711
  by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2712
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  2713
lemma compact_cball[simp]:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2714
 "compact(cball x e)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2715
  using compact_eq_bounded_closed bounded_cball closed_cball
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2716
  by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2717
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  2718
lemma compact_frontier_bounded[intro]:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2719
 "bounded s ==> compact(frontier s)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2720
  unfolding frontier_def
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  2721
  using compact_eq_bounded_closed
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2722
  by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2723
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  2724
lemma compact_frontier[intro]:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2725
 "compact s ==> compact (frontier s)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2726
  using compact_eq_bounded_closed compact_frontier_bounded
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2727
  by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2728
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  2729
lemma frontier_subset_compact:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2730
 "compact s ==> frontier s \<subseteq> s"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2731
  using frontier_subset_closed compact_eq_bounded_closed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2732
  by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2733
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  2734
lemma open_delete:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2735
 "open s ==> open(s - {x})"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2736
  using open_diff[of s "{x}"] closed_sing
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2737
  by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2738
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2739
text{* Finite intersection property. I could make it an equivalence in fact. *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2740
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  2741
lemma compact_imp_fip:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2742
  assumes "compact s"  "\<forall>t \<in> f. closed t"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2743
        "\<forall>f'. finite f' \<and> f' \<subseteq> f --> (s \<inter> (\<Inter> f') \<noteq> {})"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2744
  shows "s \<inter> (\<Inter> f) \<noteq> {}"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2745
proof
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2746
  assume as:"s \<inter> (\<Inter> f) = {}"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2747
  hence "s \<subseteq> \<Union>op - UNIV ` f" by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2748
  moreover have "Ball (op - UNIV ` f) open" using open_diff closed_diff using assms(2) by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2749
  ultimately obtain f' where f':"f' \<subseteq> op - UNIV ` f"  "finite f'"  "s \<subseteq> \<Union>f'" using assms(1)[unfolded compact_eq_heine_borel, THEN spec[where x="(\<lambda>t. UNIV - t) ` f"]] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2750
  hence "finite (op - UNIV ` f') \<and> op - UNIV ` f' \<subseteq> f" by(auto simp add: Diff_Diff_Int)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2751
  hence "s \<inter> \<Inter>op - UNIV ` f' \<noteq> {}" using assms(3)[THEN spec[where x="op - UNIV ` f'"]] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2752
  thus False using f'(3) unfolding subset_eq and Union_iff by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2753
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2754
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2755
subsection{* Bounded closed nest property (proof does not use Heine-Borel).            *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2756
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  2757
lemma bounded_closed_nest:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2758
  assumes "\<forall>n. closed(s n)" "\<forall>n. (s n \<noteq> {})"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2759
  "(\<forall>m n. m \<le> n --> s n \<subseteq> s m)"  "bounded(s 0)"
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  2760
  shows "\<exists> a::real^'a::finite. \<forall>n::nat. a \<in> s(n)"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2761
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2762
  from assms(2) obtain x where x:"\<forall>n::nat. x n \<in> s n" using choice[of "\<lambda>n x. x\<in> s n"] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2763
  from assms(4,1) have *:"compact (s 0)" using bounded_closed_imp_compact[of "s 0"] by auto
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  2764
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2765
  then obtain l r where lr:"l\<in>s 0" "\<forall>m n. m < n \<longrightarrow> r m < r n" "((x \<circ> r) ---> l) sequentially"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2766
    unfolding compact_def apply(erule_tac x=x in allE)  using x using assms(3) by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2767
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2768
  { fix n::nat
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2769
    { fix e::real assume "e>0"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2770
      with lr(3) obtain N where N:"\<forall>m\<ge>N. dist ((x \<circ> r) m) l < e" unfolding Lim_sequentially by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2771
      hence "dist ((x \<circ> r) (max N n)) l < e" by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2772
      moreover
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2773
      have "r (max N n) \<ge> n" using lr(2) using monotone_bigger[of r "max N n"] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2774
      hence "(x \<circ> r) (max N n) \<in> s n"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2775
	using x apply(erule_tac x=n in allE)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2776
	using x apply(erule_tac x="r (max N n)" in allE)
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  2777
	using assms(3) apply(erule_tac x=n in allE)apply( erule_tac x="r (max N n)" in allE) by auto
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2778
      ultimately have "\<exists>y\<in>s n. dist y l < e" by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2779
    }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2780
    hence "l \<in> s n" using closed_approachable[of "s n" l] assms(1) by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2781
  }
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  2782
  thus ?thesis by auto
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2783
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2784
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2785
text{* Decreasing case does not even need compactness, just completeness.        *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2786
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  2787
lemma decreasing_closed_nest:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2788
  assumes "\<forall>n. closed(s n)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2789
          "\<forall>n. (s n \<noteq> {})"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2790
          "\<forall>m n. m \<le> n --> s n \<subseteq> s m"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2791
          "\<forall>e>0. \<exists>n. \<forall>x \<in> (s n). \<forall> y \<in> (s n). dist x y < e"
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  2792
  shows "\<exists>a::real^'a::finite. \<forall>n::nat. a \<in> s n"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2793
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2794
  have "\<forall>n. \<exists> x. x\<in>s n" using assms(2) by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2795
  hence "\<exists>t. \<forall>n. t n \<in> s n" using choice[of "\<lambda> n x. x \<in> s n"] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2796
  then obtain t where t: "\<forall>n. t n \<in> s n" by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2797
  { fix e::real assume "e>0"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2798
    then obtain N where N:"\<forall>x\<in>s N. \<forall>y\<in>s N. dist x y < e" using assms(4) by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2799
    { fix m n ::nat assume "N \<le> m \<and> N \<le> n"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2800
      hence "t m \<in> s N" "t n \<in> s N" using assms(3) t unfolding  subset_eq t by blast+
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2801
      hence "dist (t m) (t n) < e" using N by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2802
    }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2803
    hence "\<exists>N. \<forall>m n. N \<le> m \<and> N \<le> n \<longrightarrow> dist (t m) (t n) < e" by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2804
  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2805
  hence  "cauchy t" unfolding cauchy_def by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2806
  then obtain l where l:"(t ---> l) sequentially" using complete_univ unfolding complete_def by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2807
  { fix n::nat
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2808
    { fix e::real assume "e>0"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2809
      then obtain N::nat where N:"\<forall>n\<ge>N. dist (t n) l < e" using l[unfolded Lim_sequentially] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2810
      have "t (max n N) \<in> s n" using assms(3) unfolding subset_eq apply(erule_tac x=n in allE) apply (erule_tac x="max n N" in allE) using t by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2811
      hence "\<exists>y\<in>s n. dist y l < e" apply(rule_tac x="t (max n N)" in bexI) using N by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2812
    }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2813
    hence "l \<in> s n" using closed_approachable[of "s n" l] assms(1) by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2814
  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2815
  then show ?thesis by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2816
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2817
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2818
text{* Strengthen it to the intersection actually being a singleton.             *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2819
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  2820
lemma decreasing_closed_nest_sing:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2821
  assumes "\<forall>n. closed(s n)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2822
          "\<forall>n. s n \<noteq> {}"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2823
          "\<forall>m n. m \<le> n --> s n \<subseteq> s m"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2824
          "\<forall>e>0. \<exists>n. \<forall>x \<in> (s n). \<forall> y\<in>(s n). dist x y < e"
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  2825
  shows "\<exists>a::real^'a::finite. \<Inter> {t. (\<exists>n::nat. t = s n)} = {a}"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2826
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2827
  obtain a where a:"\<forall>n. a \<in> s n" using decreasing_closed_nest[of s] using assms by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2828
  { fix b assume b:"b \<in> \<Inter>{t. \<exists>n. t = s n}"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2829
    { fix e::real assume "e>0"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2830
      hence "dist a b < e" using assms(4 )using b using a by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2831
    }
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  2832
    hence "dist a b = 0" by (metis dist_eq_0 dist_nz real_less_def)
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2833
  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2834
  with a have "\<Inter>{t. \<exists>n. t = s n} = {a}"  unfolding dist_eq_0 by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2835
  thus ?thesis by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2836
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2837
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2838
text{* Cauchy-type criteria for uniform convergence. *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2839
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  2840
lemma uniformly_convergent_eq_cauchy: fixes s::"nat \<Rightarrow> 'b \<Rightarrow> real^'a::finite" shows
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2841
 "(\<exists>l. \<forall>e>0. \<exists>N. \<forall>n x. N \<le> n \<and> P x --> dist(s n x)(l x) < e) \<longleftrightarrow>
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2842
  (\<forall>e>0. \<exists>N. \<forall>m n x. N \<le> m \<and> N \<le> n \<and> P x  --> dist (s m x) (s n x) < e)" (is "?lhs = ?rhs")
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2843
proof(rule)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2844
  assume ?lhs
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2845
  then obtain l where l:"\<forall>e>0. \<exists>N. \<forall>n x. N \<le> n \<and> P x \<longrightarrow> dist (s n x) (l x) < e" by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2846
  { fix e::real assume "e>0"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2847
    then obtain N::nat where N:"\<forall>n x. N \<le> n \<and> P x \<longrightarrow> dist (s n x) (l x) < e / 2" using l[THEN spec[where x="e/2"]] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2848
    { fix n m::nat and x::"'b" assume "N \<le> m \<and> N \<le> n \<and> P x"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2849
      hence "dist (s m x) (s n x) < e"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2850
	using N[THEN spec[where x=m], THEN spec[where x=x]]
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  2851
	using N[THEN spec[where x=n], THEN spec[where x=x]]
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2852
	using dist_triangle_half_l[of "s m x" "l x" e "s n x"] by auto  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2853
    hence "\<exists>N. \<forall>m n x. N \<le> m \<and> N \<le> n \<and> P x  --> dist (s m x) (s n x) < e"  by auto  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2854
  thus ?rhs by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2855
next
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2856
  assume ?rhs
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2857
  hence "\<forall>x. P x \<longrightarrow> cauchy (\<lambda>n. s n x)" unfolding cauchy_def apply auto by (erule_tac x=e in allE)auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2858
  then obtain l where l:"\<forall>x. P x \<longrightarrow> ((\<lambda>n. s n x) ---> l x) sequentially" unfolding convergent_eq_cauchy[THEN sym]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2859
    using choice[of "\<lambda>x l. P x \<longrightarrow> ((\<lambda>n. s n x) ---> l) sequentially"] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2860
  { fix e::real assume "e>0"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2861
    then obtain N where N:"\<forall>m n x. N \<le> m \<and> N \<le> n \<and> P x \<longrightarrow> dist (s m x) (s n x) < e/2"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2862
      using `?rhs`[THEN spec[where x="e/2"]] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2863
    { fix x assume "P x"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2864
      then obtain M where M:"\<forall>n\<ge>M. dist (s n x) (l x) < e/2"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2865
	using l[THEN spec[where x=x], unfolded Lim_sequentially] using `e>0` by(auto elim!: allE[where x="e/2"])
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2866
      fix n::nat assume "n\<ge>N"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2867
      hence "dist(s n x)(l x) < e"  using `P x`and N[THEN spec[where x=n], THEN spec[where x="N+M"], THEN spec[where x=x]]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2868
	using M[THEN spec[where x="N+M"]] and dist_triangle_half_l[of "s n x" "s (N+M) x" e "l x"] by (auto simp add: dist_sym)  }
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  2869
    hence "\<exists>N. \<forall>n x. N \<le> n \<and> P x \<longrightarrow> dist(s n x)(l x) < e" by auto }
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2870
  thus ?lhs by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2871
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2872
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  2873
lemma uniformly_cauchy_imp_uniformly_convergent:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2874
  assumes "\<forall>e>0.\<exists>N. \<forall>m (n::nat) x. N \<le> m \<and> N \<le> n \<and> P x --> dist(s m x)(s n x) < e"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2875
          "\<forall>x. P x --> (\<forall>e>0. \<exists>N. \<forall>n. N \<le> n --> dist(s n x)(l x) < e)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2876
  shows "\<forall>e>0. \<exists>N. \<forall>n x. N \<le> n \<and> P x --> dist(s n x)(l x) < e"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2877
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2878
  obtain l' where l:"\<forall>e>0. \<exists>N. \<forall>n x. N \<le> n \<and> P x \<longrightarrow> dist (s n x) (l' x) < e"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2879
    using assms(1) unfolding uniformly_convergent_eq_cauchy[THEN sym] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2880
  moreover
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2881
  { fix x assume "P x"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2882
    hence "l x = l' x" using Lim_unique[OF trivial_limit_sequentially, of "\<lambda>n. s n x" "l x" "l' x"]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2883
      using l and assms(2) unfolding Lim_sequentially by blast  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2884
  ultimately show ?thesis by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2885
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2886
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2887
subsection{* Define continuity over a net to take in restrictions of the set. *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2888
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2889
definition "continuous net f \<longleftrightarrow> (f ---> f(netlimit net)) net"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2890
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  2891
lemma continuous_trivial_limit:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2892
 "trivial_limit net ==> continuous net f"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2893
  unfolding continuous_def tendsto_def eventually_def by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2894
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2895
lemma continuous_within: "continuous (at x within s) f \<longleftrightarrow> (f ---> f(x)) (at x within s)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2896
  unfolding continuous_def
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2897
  unfolding tendsto_def
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2898
  using netlimit_within[of x s]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2899
  unfolding eventually_def
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2900
  by (cases "trivial_limit (at x within s)") auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2901
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2902
lemma continuous_at: "continuous (at x) f \<longleftrightarrow> (f ---> f(x)) (at x)" using within_UNIV[of x]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2903
  using continuous_within[of x UNIV f] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2904
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  2905
lemma continuous_at_within:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2906
  assumes "continuous (at x) f"  shows "continuous (at x within s) f"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2907
proof(cases "x islimpt s")
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2908
  case True show ?thesis using assms unfolding continuous_def and netlimit_at
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2909
    using Lim_at_within[of f "f x" x s]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2910
    unfolding netlimit_within[unfolded trivial_limit_within not_not, OF True] by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2911
next
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2912
  case False thus ?thesis unfolding continuous_def and netlimit_at
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2913
    unfolding Lim and trivial_limit_within by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2914
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2915
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2916
text{* Derive the epsilon-delta forms, which we often use as "definitions" *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2917
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2918
lemma continuous_within_eps_delta:
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2919
  "continuous (at x within s) f \<longleftrightarrow> (\<forall>e>0. \<exists>d>0. \<forall>x'\<in> s.  dist x' x < d --> dist (f x') (f x) < e)"
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  2920
  unfolding continuous_within and Lim_within
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  2921
  apply auto unfolding dist_nz[THEN sym] apply(auto elim!:allE) apply(rule_tac x=d in exI) by auto
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2922
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2923
lemma continuous_at_eps_delta: "continuous (at x) f \<longleftrightarrow>  (\<forall>e>0. \<exists>d>0.
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2924
                           \<forall>x'. dist x' x < d --> dist(f x')(f x) < e)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2925
  using continuous_within_eps_delta[of x UNIV f]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2926
  unfolding within_UNIV by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2927
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2928
text{* Versions in terms of open balls. *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2929
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  2930
lemma continuous_within_ball:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2931
 "continuous (at x within s) f \<longleftrightarrow> (\<forall>e>0. \<exists>d>0.
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2932
                            f ` (ball x d \<inter> s) \<subseteq> ball (f x) e)" (is "?lhs = ?rhs")
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2933
proof
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2934
  assume ?lhs
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2935
  { fix e::real assume "e>0"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2936
    then obtain d where d: "d>0" "\<forall>xa\<in>s. 0 < dist xa x \<and> dist xa x < d \<longrightarrow> dist (f xa) (f x) < e"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2937
      using `?lhs`[unfolded continuous_within Lim_within] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2938
    { fix y assume "y\<in>f ` (ball x d \<inter> s)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2939
      hence "y \<in> ball (f x) e" using d(2) unfolding dist_nz[THEN sym]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2940
	apply (auto simp add: dist_sym mem_ball) apply(erule_tac x=xa in ballE) apply auto unfolding dist_refl using `e>0` by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2941
    }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2942
    hence "\<exists>d>0. f ` (ball x d \<inter> s) \<subseteq> ball (f x) e" using `d>0` unfolding subset_eq ball_def by (auto simp add: dist_sym)  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2943
  thus ?rhs by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2944
next
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  2945
  assume ?rhs thus ?lhs unfolding continuous_within Lim_within ball_def subset_eq
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2946
    apply (auto simp add: dist_sym) apply(erule_tac x=e in allE) by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2947
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2948
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  2949
lemma continuous_at_ball: fixes f::"real^'a::finite \<Rightarrow> real^'a"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2950
  shows "continuous (at x) f \<longleftrightarrow> (\<forall>e>0. \<exists>d>0. f ` (ball x d) \<subseteq> ball (f x) e)" (is "?lhs = ?rhs")
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2951
proof
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2952
  assume ?lhs thus ?rhs unfolding continuous_at Lim_at subset_eq Ball_def Bex_def image_iff mem_ball
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2953
    apply auto apply(erule_tac x=e in allE) apply auto apply(rule_tac x=d in exI) apply auto apply(erule_tac x=xa in allE) apply (auto simp add: dist_refl dist_sym dist_nz)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2954
    unfolding dist_nz[THEN sym] by (auto simp add: dist_refl)
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  2955
next
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2956
  assume ?rhs thus ?lhs unfolding continuous_at Lim_at subset_eq Ball_def Bex_def image_iff mem_ball
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2957
    apply auto apply(erule_tac x=e in allE) apply auto apply(rule_tac x=d in exI) apply auto apply(erule_tac x="f xa" in allE) by (auto simp add: dist_refl dist_sym dist_nz)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2958
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2959
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2960
text{* For setwise continuity, just start from the epsilon-delta definitions. *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2961
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2962
definition "continuous_on s f \<longleftrightarrow> (\<forall>x \<in> s. \<forall>e>0. \<exists>d::real>0. \<forall>x' \<in> s. dist x' x < d --> dist (f x') (f x) < e)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2963
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2964
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2965
definition "uniformly_continuous_on s f \<longleftrightarrow>
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2966
        (\<forall>e>0. \<exists>d>0. \<forall>x\<in>s. \<forall> x'\<in>s. dist x' x < d
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2967
                           --> dist (f x') (f x) < e)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2968
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2969
text{* Some simple consequential lemmas. *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2970
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  2971
lemma uniformly_continuous_imp_continuous:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2972
 " uniformly_continuous_on s f ==> continuous_on s f"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2973
  unfolding uniformly_continuous_on_def continuous_on_def by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2974
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  2975
lemma continuous_at_imp_continuous_within:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2976
 "continuous (at x) f ==> continuous (at x within s) f"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2977
  unfolding continuous_within continuous_at using Lim_at_within by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2978
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2979
lemma continuous_at_imp_continuous_on: assumes "(\<forall>x \<in> s. continuous (at x) f)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2980
  shows "continuous_on s f"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2981
proof(simp add: continuous_at continuous_on_def, rule, rule, rule)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2982
  fix x and e::real assume "x\<in>s" "e>0"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2983
  hence "eventually (\<lambda>xa. dist (f xa) (f x) < e) (at x)" using assms unfolding continuous_at tendsto_def by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2984
  then obtain d where d:"d>0" "\<forall>xa. 0 < dist xa x \<and> dist xa x < d \<longrightarrow> dist (f xa) (f x) < e" unfolding eventually_at by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2985
  { fix x' assume "\<not> 0 < dist x' x"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2986
    hence "x=x'"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2987
      using dist_nz[of x' x] by auto
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  2988
    hence "dist (f x') (f x) < e" using dist_refl[of "f x'"] `e>0` by auto
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2989
  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2990
  thus "\<exists>d>0. \<forall>x'\<in>s. dist x' x < d \<longrightarrow> dist (f x') (f x) < e" using d by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2991
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2992
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  2993
lemma continuous_on_eq_continuous_within:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2994
 "continuous_on s f \<longleftrightarrow> (\<forall>x \<in> s. continuous (at x within s) f)" (is "?lhs = ?rhs")
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2995
proof
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2996
  assume ?rhs
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2997
  { fix x assume "x\<in>s"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2998
    fix e::real assume "e>0"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  2999
    assume "\<exists>d>0. \<forall>xa\<in>s. 0 < dist xa x \<and> dist xa x < d \<longrightarrow> dist (f xa) (f x) < e"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3000
    then obtain d where "d>0" and d:"\<forall>xa\<in>s. 0 < dist xa x \<and> dist xa x < d \<longrightarrow> dist (f xa) (f x) < e" by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3001
    { fix x' assume as:"x'\<in>s" "dist x' x < d"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3002
      hence "dist (f x') (f x) < e" using dist_refl[of "f x'"] `e>0` d `x'\<in>s` dist_eq_0[of x' x] dist_pos_le[of x' x] as(2) by (metis dist_eq_0 dist_nz) }
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3003
    hence "\<exists>d>0. \<forall>x'\<in>s. dist x' x < d \<longrightarrow> dist (f x') (f x) < e" using `d>0` by (auto simp add: dist_refl)
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3004
  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3005
  thus ?lhs using `?rhs` unfolding continuous_on_def continuous_within Lim_within by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3006
next
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3007
  assume ?lhs
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3008
  thus ?rhs unfolding continuous_on_def continuous_within Lim_within by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3009
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3010
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3011
lemma continuous_on:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3012
 "continuous_on s f \<longleftrightarrow> (\<forall>x \<in> s. (f ---> f(x)) (at x within s))"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3013
  by (auto simp add: continuous_on_eq_continuous_within continuous_within)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3014
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3015
lemma continuous_on_eq_continuous_at:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3016
 "open s ==> (continuous_on s f \<longleftrightarrow> (\<forall>x \<in> s. continuous (at x) f))"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3017
  by (auto simp add: continuous_on continuous_at Lim_within_open)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3018
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3019
lemma continuous_within_subset:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3020
 "continuous (at x within s) f \<Longrightarrow> t \<subseteq> s
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3021
             ==> continuous (at x within t) f"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3022
  unfolding continuous_within by(metis Lim_within_subset)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3023
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3024
lemma continuous_on_subset:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3025
 "continuous_on s f \<Longrightarrow> t \<subseteq> s ==> continuous_on t f"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3026
  unfolding continuous_on by (metis subset_eq Lim_within_subset)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3027
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3028
lemma continuous_on_interior:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3029
 "continuous_on s f \<Longrightarrow> x \<in> interior s ==> continuous (at x) f"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3030
unfolding interior_def
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3031
apply simp
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3032
by (meson continuous_on_eq_continuous_at continuous_on_subset)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3033
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3034
lemma continuous_on_eq:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3035
 "(\<forall>x \<in> s. f x = g x) \<Longrightarrow> continuous_on s f
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3036
           ==> continuous_on s g"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3037
  by (simp add: continuous_on_def)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3038
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3039
text{* Characterization of various kinds of continuity in terms of sequences.  *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3040
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3041
lemma continuous_within_sequentially:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3042
 "continuous (at a within s) f \<longleftrightarrow>
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3043
                (\<forall>x. (\<forall>n::nat. x n \<in> s) \<and> (x ---> a) sequentially
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3044
                     --> ((f o x) ---> f a) sequentially)" (is "?lhs = ?rhs")
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3045
proof
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3046
  assume ?lhs
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3047
  { fix x::"nat \<Rightarrow> real^'a" assume x:"\<forall>n. x n \<in> s" "\<forall>e>0. \<exists>N. \<forall>n\<ge>N. dist (x n) a < e"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3048
    fix e::real assume "e>0"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3049
    from `?lhs` obtain d where "d>0" and d:"\<forall>x\<in>s. 0 < dist x a \<and> dist x a < d \<longrightarrow> dist (f x) (f a) < e" unfolding continuous_within Lim_within using `e>0` by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3050
    from x(2) `d>0` obtain N where N:"\<forall>n\<ge>N. dist (x n) a < d" by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3051
    hence "\<exists>N. \<forall>n\<ge>N. dist ((f \<circ> x) n) (f a) < e"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3052
      apply(rule_tac  x=N in exI) using N d  apply auto using x(1)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3053
      apply(erule_tac x=n in allE) apply(erule_tac x=n in allE)
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3054
      apply(erule_tac x="x n" in ballE)  apply auto unfolding dist_nz[THEN sym] apply auto unfolding dist_refl using `e>0` by auto
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3055
  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3056
  thus ?rhs unfolding continuous_within unfolding Lim_sequentially by simp
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3057
next
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3058
  assume ?rhs
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3059
  { fix e::real assume "e>0"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3060
    assume "\<not> (\<exists>d>0. \<forall>x\<in>s. 0 < dist x a \<and> dist x a < d \<longrightarrow> dist (f x) (f a) < e)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3061
    hence "\<forall>d. \<exists>x. d>0 \<longrightarrow> x\<in>s \<and> (0 < dist x a \<and> dist x a < d \<and> \<not> dist (f x) (f a) < e)" by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3062
    then obtain x where x:"\<forall>d>0. x d \<in> s \<and> (0 < dist (x d) a \<and> dist (x d) a < d \<and> \<not> dist (f (x d)) (f a) < e)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3063
      using choice[of "\<lambda>d x.0<d \<longrightarrow> x\<in>s \<and> (0 < dist x a \<and> dist x a < d \<and> \<not> dist (f x) (f a) < e)"] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3064
    { fix d::real assume "d>0"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3065
      hence "\<exists>N::nat. inverse (real (N + 1)) < d" using real_arch_inv[of d] by (auto, rule_tac x="n - 1" in exI)auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3066
      then obtain N::nat where N:"inverse (real (N + 1)) < d" by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3067
      { fix n::nat assume n:"n\<ge>N"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3068
	hence "dist (x (inverse (real (n + 1)))) a < inverse (real (n + 1))" using x[THEN spec[where x="inverse (real (n + 1))"]] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3069
	moreover have "inverse (real (n + 1)) < d" using N n by (auto, metis Suc_le_mono le_SucE less_imp_inverse_less nat_le_real_less order_less_trans real_of_nat_Suc real_of_nat_Suc_gt_zero)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3070
	ultimately have "dist (x (inverse (real (n + 1)))) a < d" by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3071
      }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3072
      hence "\<exists>N::nat. \<forall>n\<ge>N. dist (x (inverse (real (n + 1)))) a < d" by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3073
    }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3074
    hence "(\<forall>n::nat. x (inverse (real (n + 1))) \<in> s) \<and> (\<forall>e>0. \<exists>N::nat. \<forall>n\<ge>N. dist (x (inverse (real (n + 1)))) a < e)" using x by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3075
    hence "\<forall>e>0. \<exists>N::nat. \<forall>n\<ge>N. dist (f (x (inverse (real (n + 1))))) (f a) < e"  using `?rhs`[THEN spec[where x="\<lambda>n::nat. x (inverse (real (n+1)))"], unfolded Lim_sequentially] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3076
    hence "False" apply(erule_tac x=e in allE) using `e>0` using x by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3077
  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3078
  thus ?lhs  unfolding continuous_within unfolding Lim_within unfolding Lim_sequentially by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3079
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3080
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3081
lemma continuous_at_sequentially:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3082
 "continuous (at a) f \<longleftrightarrow> (\<forall>x. (x ---> a) sequentially
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3083
                  --> ((f o x) ---> f a) sequentially)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3084
  using continuous_within_sequentially[of a UNIV f] unfolding within_UNIV by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3085
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3086
lemma continuous_on_sequentially:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3087
 "continuous_on s f \<longleftrightarrow>  (\<forall>x. \<forall>a \<in> s. (\<forall>n. x(n) \<in> s) \<and> (x ---> a) sequentially
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3088
                    --> ((f o x) ---> f(a)) sequentially)" (is "?lhs = ?rhs")
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3089
proof
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3090
  assume ?rhs thus ?lhs using continuous_within_sequentially[of _ s f] unfolding continuous_on_eq_continuous_within by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3091
next
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3092
  assume ?lhs thus ?rhs unfolding continuous_on_eq_continuous_within using continuous_within_sequentially[of _ s f] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3093
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3094
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3095
lemma uniformly_continuous_on_sequentially:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3096
 "uniformly_continuous_on s f \<longleftrightarrow> (\<forall>x y. (\<forall>n. x n \<in> s) \<and> (\<forall>n. y n \<in> s) \<and>
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3097
                    ((\<lambda>n. x n - y n) ---> 0) sequentially
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3098
                    \<longrightarrow> ((\<lambda>n. f(x n) - f(y n)) ---> 0) sequentially)" (is "?lhs = ?rhs")
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3099
proof
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3100
  assume ?lhs
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3101
  { fix x y assume x:"\<forall>n. x n \<in> s" and y:"\<forall>n. y n \<in> s" and xy:"((\<lambda>n. x n - y n) ---> 0) sequentially"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3102
    { fix e::real assume "e>0"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3103
      then obtain d where "d>0" and d:"\<forall>x\<in>s. \<forall>x'\<in>s. dist x' x < d \<longrightarrow> dist (f x') (f x) < e"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3104
	using `?lhs`[unfolded uniformly_continuous_on_def, THEN spec[where x=e]] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3105
      obtain N where N:"\<forall>n\<ge>N. norm (x n - y n - 0) < d" using xy[unfolded Lim_sequentially dist_def] and `d>0` by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3106
      { fix n assume "n\<ge>N"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3107
	hence "norm (f (x n) - f (y n) - 0) < e"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3108
	  using N[THEN spec[where x=n]] using d[THEN bspec[where x="x n"], THEN bspec[where x="y n"]] using x and y
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3109
	  unfolding dist_sym and dist_def by simp  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3110
      hence "\<exists>N. \<forall>n\<ge>N. norm (f (x n) - f (y n) - 0) < e"  by auto  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3111
    hence "((\<lambda>n. f(x n) - f(y n)) ---> 0) sequentially" unfolding Lim_sequentially and dist_def by auto  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3112
  thus ?rhs by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3113
next
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3114
  assume ?rhs
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3115
  { assume "\<not> ?lhs"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3116
    then obtain e where "e>0" "\<forall>d>0. \<exists>x\<in>s. \<exists>x'\<in>s. dist x' x < d \<and> \<not> dist (f x') (f x) < e" unfolding uniformly_continuous_on_def by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3117
    then obtain fa where fa:"\<forall>x.  0 < x \<longrightarrow> fst (fa x) \<in> s \<and> snd (fa x) \<in> s \<and> dist (fst (fa x)) (snd (fa x)) < x \<and> \<not> dist (f (fst (fa x))) (f (snd (fa x))) < e"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3118
      using choice[of "\<lambda>d x. d>0 \<longrightarrow> fst x \<in> s \<and> snd x \<in> s \<and> dist (snd x) (fst x) < d \<and> \<not> dist (f (snd x)) (f (fst x)) < e"] unfolding Bex_def
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3119
      by (auto simp add: dist_sym)
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3120
    def x \<equiv> "\<lambda>n::nat. fst (fa (inverse (real n + 1)))"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3121
    def y \<equiv> "\<lambda>n::nat. snd (fa (inverse (real n + 1)))"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3122
    have xyn:"\<forall>n. x n \<in> s \<and> y n \<in> s" and xy0:"\<forall>n. dist (x n) (y n) < inverse (real n + 1)" and fxy:"\<forall>n. \<not> dist (f (x n)) (f (y n)) < e"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3123
      unfolding x_def and y_def using fa by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3124
    have *:"\<And>x y. dist (x - y) 0 = dist x y" unfolding dist_def by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3125
    { fix e::real assume "e>0"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3126
      then obtain N::nat where "N \<noteq> 0" and N:"0 < inverse (real N) \<and> inverse (real N) < e" unfolding real_arch_inv[of e]   by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3127
      { fix n::nat assume "n\<ge>N"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3128
	hence "inverse (real n + 1) < inverse (real N)" using real_of_nat_ge_zero and `N\<noteq>0` by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3129
	also have "\<dots> < e" using N by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3130
	finally have "inverse (real n + 1) < e" by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3131
	hence "dist (x n - y n) 0 < e" unfolding * using xy0[THEN spec[where x=n]] by auto  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3132
      hence "\<exists>N. \<forall>n\<ge>N. dist (x n - y n) 0 < e" by auto  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3133
    hence "\<forall>e>0. \<exists>N. \<forall>n\<ge>N. dist (f (x n) - f (y n)) 0 < e" using `?rhs`[THEN spec[where x=x], THEN spec[where x=y]] and xyn unfolding Lim_sequentially by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3134
    hence False unfolding * using fxy and `e>0` by auto  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3135
  thus ?lhs unfolding uniformly_continuous_on_def by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3136
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3137
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3138
text{* The usual transformation theorems. *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3139
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3140
lemma continuous_transform_within:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3141
  assumes "0 < d" "x \<in> s" "\<forall>x' \<in> s. dist x' x < d --> f x' = g x'"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3142
          "continuous (at x within s) f"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3143
  shows "continuous (at x within s) g"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3144
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3145
  { fix e::real assume "e>0"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3146
    then obtain d' where d':"d'>0" "\<forall>xa\<in>s. 0 < dist xa x \<and> dist xa x < d' \<longrightarrow> dist (f xa) (f x) < e" using assms(4) unfolding continuous_within Lim_within by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3147
    { fix x' assume "x'\<in>s" "0 < dist x' x" "dist x' x < (min d d')"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3148
      hence "dist (f x') (g x) < e" using assms(2,3) apply(erule_tac x=x in ballE) unfolding dist_refl using d' by auto  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3149
    hence "\<forall>xa\<in>s. 0 < dist xa x \<and> dist xa x < (min d d') \<longrightarrow> dist (f xa) (g x) < e" by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3150
    hence "\<exists>d>0. \<forall>xa\<in>s. 0 < dist xa x \<and> dist xa x < d \<longrightarrow> dist (f xa) (g x) < e" using `d>0` `d'>0` by(rule_tac x="min d d'" in exI)auto  }
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3151
  hence "(f ---> g x) (at x within s)" unfolding Lim_within using assms(1) by auto
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3152
  thus ?thesis unfolding continuous_within using Lim_transform_within[of d s x f g "g x"] using assms by blast
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3153
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3154
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3155
lemma continuous_transform_at:
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3156
  assumes "0 < d" "\<forall>x'. dist x' x < d --> f x' = g x'"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3157
          "continuous (at x) f"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3158
  shows "continuous (at x) g"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3159
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3160
  { fix e::real assume "e>0"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3161
    then obtain d' where d':"d'>0" "\<forall>xa. 0 < dist xa x \<and> dist xa x < d' \<longrightarrow> dist (f xa) (f x) < e" using assms(3) unfolding continuous_at Lim_at by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3162
    { fix x' assume "0 < dist x' x" "dist x' x < (min d d')"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3163
      hence "dist (f x') (g x) < e" using assms(2) apply(erule_tac x=x in allE) unfolding dist_refl using d' by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3164
    }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3165
    hence "\<forall>xa. 0 < dist xa x \<and> dist xa x < (min d d') \<longrightarrow> dist (f xa) (g x) < e" by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3166
    hence "\<exists>d>0. \<forall>xa. 0 < dist xa x \<and> dist xa x < d \<longrightarrow> dist (f xa) (g x) < e" using `d>0` `d'>0` by(rule_tac x="min d d'" in exI)auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3167
  }
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3168
  hence "(f ---> g x) (at x)" unfolding Lim_at using assms(1) by auto
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3169
  thus ?thesis unfolding continuous_at using Lim_transform_at[of d x f g "g x"] using assms by blast
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3170
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3171
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3172
text{* Combination results for pointwise continuity. *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3173
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3174
lemma continuous_const: "continuous net (\<lambda>x::'a::zero_neq_one. c)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3175
  by(auto simp add: continuous_def Lim_const)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3176
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3177
lemma continuous_cmul:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3178
 "continuous net f ==> continuous net (\<lambda>x. c *s f x)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3179
 by(auto simp add: continuous_def Lim_cmul)
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3180
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3181
lemma continuous_neg:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3182
 "continuous net f ==> continuous net (\<lambda>x. -(f x))"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3183
 by(auto simp add: continuous_def Lim_neg)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3184
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3185
lemma continuous_add:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3186
 "continuous net f \<Longrightarrow> continuous net g
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3187
           ==> continuous net (\<lambda>x. f x + g x)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3188
 by(auto simp add: continuous_def Lim_add)
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3189
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3190
lemma continuous_sub:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3191
 "continuous net f \<Longrightarrow> continuous net g
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3192
           ==> continuous net (\<lambda>x. f(x) - g(x))"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3193
 by(auto simp add: continuous_def Lim_sub)
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3194
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3195
text{* Same thing for setwise continuity. *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3196
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3197
lemma continuous_on_const:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3198
 "continuous_on s (\<lambda>x. c)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3199
  unfolding continuous_on_eq_continuous_within using continuous_const by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3200
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3201
lemma continuous_on_cmul:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3202
 "continuous_on s f ==>  continuous_on s (\<lambda>x. c *s (f x))"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3203
  unfolding continuous_on_eq_continuous_within using continuous_cmul by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3204
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3205
lemma continuous_on_neg:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3206
 "continuous_on s f ==> continuous_on s (\<lambda>x. -(f x))"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3207
  unfolding continuous_on_eq_continuous_within using continuous_neg by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3208
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3209
lemma continuous_on_add:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3210
 "continuous_on s f \<Longrightarrow> continuous_on s g
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3211
           ==> continuous_on s (\<lambda>x. f x + g x)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3212
  unfolding continuous_on_eq_continuous_within using continuous_add by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3213
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3214
lemma continuous_on_sub:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3215
 "continuous_on s f \<Longrightarrow> continuous_on s g
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3216
           ==> continuous_on s (\<lambda>x. f(x) - g(x))"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3217
  unfolding continuous_on_eq_continuous_within using continuous_sub by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3218
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3219
text{* Same thing for uniform continuity, using sequential formulations. *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3220
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3221
lemma uniformly_continuous_on_const:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3222
 "uniformly_continuous_on s (\<lambda>x. c)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3223
  unfolding uniformly_continuous_on_sequentially using Lim_const[of 0] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3224
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3225
lemma uniformly_continuous_on_cmul:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3226
  assumes "uniformly_continuous_on s f"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3227
  shows "uniformly_continuous_on s (\<lambda>x. c *s f(x))"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3228
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3229
  { fix x y assume "((\<lambda>n. f (x n) - f (y n)) ---> 0) sequentially"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3230
    hence "((\<lambda>n. c *s f (x n) - c *s f (y n)) ---> 0) sequentially"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3231
      using Lim_cmul[of "(\<lambda>n. f (x n) - f (y n))" 0 sequentially c]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3232
      unfolding  vector_smult_rzero vector_ssub_ldistrib[of c] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3233
  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3234
  thus ?thesis using assms unfolding uniformly_continuous_on_sequentially by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3235
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3236
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3237
lemma uniformly_continuous_on_neg:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3238
 "uniformly_continuous_on s f
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3239
         ==> uniformly_continuous_on s (\<lambda>x. -(f x))"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3240
  using uniformly_continuous_on_cmul[of s f "-1"] unfolding pth_3 by auto
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3241
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3242
lemma uniformly_continuous_on_add:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3243
  assumes "uniformly_continuous_on s f" "uniformly_continuous_on s g"
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  3244
  shows "uniformly_continuous_on s (\<lambda>x. f(x) + g(x) ::real^'n::finite)"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3245
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3246
  have *:"\<And>fx fy gx gy::real^'n. fx - fy + (gx - gy) = fx + gx - (fy + gy)" by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3247
  {  fix x y assume "((\<lambda>n. f (x n) - f (y n)) ---> 0) sequentially"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3248
                    "((\<lambda>n. g (x n) - g (y n)) ---> 0) sequentially"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3249
    hence "((\<lambda>xa. f (x xa) - f (y xa) + (g (x xa) - g (y xa))) ---> 0 + 0) sequentially"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3250
      using Lim_add[of "\<lambda> n. f (x n) - f (y n)" 0  sequentially "\<lambda> n. g (x n) - g (y n)" 0] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3251
    hence "((\<lambda>n. f (x n) + g (x n) - (f (y n) + g (y n))) ---> 0) sequentially" unfolding Lim_sequentially and * by auto  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3252
  thus ?thesis using assms unfolding uniformly_continuous_on_sequentially by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3253
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3254
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3255
lemma uniformly_continuous_on_sub:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3256
 "uniformly_continuous_on s f \<Longrightarrow> uniformly_continuous_on s g
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3257
           ==> uniformly_continuous_on s  (\<lambda>x. f x - g x)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3258
  unfolding ab_diff_minus
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3259
  using uniformly_continuous_on_add[of s f "\<lambda>x. - g x"]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3260
  using uniformly_continuous_on_neg[of s g] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3261
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3262
text{* Identity function is continuous in every sense. *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3263
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3264
lemma continuous_within_id:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3265
 "continuous (at a within s) (\<lambda>x. x)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3266
  unfolding continuous_within Lim_within by auto
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3267
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3268
lemma continuous_at_id:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3269
 "continuous (at a) (\<lambda>x. x)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3270
  unfolding continuous_at Lim_at by auto
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3271
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3272
lemma continuous_on_id:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3273
 "continuous_on s (\<lambda>x. x)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3274
  unfolding continuous_on Lim_within by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3275
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3276
lemma uniformly_continuous_on_id:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3277
 "uniformly_continuous_on s (\<lambda>x. x)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3278
  unfolding uniformly_continuous_on_def by auto
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3279
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3280
text{* Continuity of all kinds is preserved under composition. *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3281
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3282
lemma continuous_within_compose:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3283
  assumes "continuous (at x within s) f"   "continuous (at (f x) within f ` s) g"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3284
  shows "continuous (at x within s) (g o f)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3285
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3286
  { fix e::real assume "e>0"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3287
    with assms(2)[unfolded continuous_within Lim_within] obtain d  where "d>0" and d:"\<forall>xa\<in>f ` s. 0 < dist xa (f x) \<and> dist xa (f x) < d \<longrightarrow> dist (g xa) (g (f x)) < e" by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3288
    from assms(1)[unfolded continuous_within Lim_within] obtain d' where "d'>0" and d':"\<forall>xa\<in>s. 0 < dist xa x \<and> dist xa x < d' \<longrightarrow> dist (f xa) (f x) < d" using `d>0` by auto
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3289
    { fix y assume as:"y\<in>s"  "0 < dist y x"  "dist y x < d'"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3290
      hence "dist (f y) (f x) < d" using d'[THEN bspec[where x=y]] by (auto simp add:dist_sym)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3291
      hence "dist (g (f y)) (g (f x)) < e" using as(1) d[THEN bspec[where x="f y"]] unfolding dist_nz[THEN sym] using `e>0` by (auto simp add: dist_refl)   }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3292
    hence "\<exists>d>0. \<forall>xa\<in>s. 0 < dist xa x \<and> dist xa x < d \<longrightarrow> dist (g (f xa)) (g (f x)) < e" using `d'>0` by auto  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3293
  thus ?thesis unfolding continuous_within Lim_within by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3294
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3295
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3296
lemma continuous_at_compose:
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3297
  assumes "continuous (at x) f"  "continuous (at (f x)) g"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3298
  shows "continuous (at x) (g o f)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3299
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3300
  have " continuous (at (f x) within range f) g" using assms(2) using continuous_within_subset[of "f x" UNIV g "range f", unfolded within_UNIV] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3301
  thus ?thesis using assms(1) using continuous_within_compose[of x UNIV f g, unfolded within_UNIV] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3302
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3303
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3304
lemma continuous_on_compose:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3305
 "continuous_on s f \<Longrightarrow> continuous_on (f ` s) g \<Longrightarrow> continuous_on s (g o f)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3306
  unfolding continuous_on_eq_continuous_within using continuous_within_compose[of _ s f g] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3307
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3308
lemma uniformly_continuous_on_compose:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3309
  assumes "uniformly_continuous_on s f"  "uniformly_continuous_on (f ` s) g"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3310
  shows "uniformly_continuous_on s (g o f)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3311
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3312
  { fix e::real assume "e>0"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3313
    then obtain d where "d>0" and d:"\<forall>x\<in>f ` s. \<forall>x'\<in>f ` s. dist x' x < d \<longrightarrow> dist (g x') (g x) < e" using assms(2) unfolding uniformly_continuous_on_def by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3314
    obtain d' where "d'>0" "\<forall>x\<in>s. \<forall>x'\<in>s. dist x' x < d' \<longrightarrow> dist (f x') (f x) < d" using `d>0` using assms(1) unfolding uniformly_continuous_on_def by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3315
    hence "\<exists>d>0. \<forall>x\<in>s. \<forall>x'\<in>s. dist x' x < d \<longrightarrow> dist ((g \<circ> f) x') ((g \<circ> f) x) < e" using `d>0` using d by auto  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3316
  thus ?thesis using assms unfolding uniformly_continuous_on_def by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3317
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3318
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3319
text{* Continuity in terms of open preimages. *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3320
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3321
lemma continuous_at_open:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3322
 "continuous (at x) f \<longleftrightarrow> (\<forall>t. open t \<and> f x \<in> t --> (\<exists>s. open s \<and> x \<in> s \<and> (\<forall>x' \<in> s. (f x') \<in> t)))" (is "?lhs = ?rhs")
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3323
proof
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3324
  assume ?lhs
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3325
  { fix t assume as: "open t" "f x \<in> t"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3326
    then obtain e where "e>0" and e:"ball (f x) e \<subseteq> t" unfolding open_contains_ball by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3327
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3328
    obtain d where "d>0" and d:"\<forall>y. 0 < dist y x \<and> dist y x < d \<longrightarrow> dist (f y) (f x) < e" using `e>0` using `?lhs`[unfolded continuous_at Lim_at open_def] by auto
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3329
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3330
    have "open (ball x d)" using open_ball by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3331
    moreover have "x \<in> ball x d" unfolding centre_in_ball using `d>0` by simp
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3332
    moreover
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3333
    { fix x' assume "x'\<in>ball x d" hence "f x' \<in> t"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3334
	using e[unfolded subset_eq Ball_def mem_ball, THEN spec[where x="f x'"]]    d[THEN spec[where x=x']]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3335
	unfolding mem_ball apply (auto simp add: dist_sym)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3336
	unfolding dist_nz[THEN sym] using as(2) by auto  }
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3337
    hence "\<forall>x'\<in>ball x d. f x' \<in> t" by auto
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3338
    ultimately have "\<exists>s. open s \<and> x \<in> s \<and> (\<forall>x'\<in>s. f x' \<in> t)"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3339
      apply(rule_tac x="ball x d" in exI) by simp  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3340
  thus ?rhs by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3341
next
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3342
  assume ?rhs
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3343
  { fix e::real assume "e>0"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3344
    then obtain s where s: "open s"  "x \<in> s"  "\<forall>x'\<in>s. f x' \<in> ball (f x) e" using `?rhs`[unfolded continuous_at Lim_at, THEN spec[where x="ball (f x) e"]]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3345
      unfolding centre_in_ball[of "f x" e, THEN sym] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3346
    then obtain d where "d>0" and d:"ball x d \<subseteq> s" unfolding open_contains_ball by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3347
    { fix y assume "0 < dist y x \<and> dist y x < d"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3348
      hence "dist (f y) (f x) < e" using d[unfolded subset_eq Ball_def mem_ball, THEN spec[where x=y]]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3349
	using s(3)[THEN bspec[where x=y], unfolded mem_ball] by (auto simp add: dist_sym)  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3350
    hence "\<exists>d>0. \<forall>xa. 0 < dist xa x \<and> dist xa x < d \<longrightarrow> dist (f xa) (f x) < e" using `d>0` by auto  }
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3351
  thus ?lhs unfolding continuous_at Lim_at by auto
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3352
qed
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3353
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3354
lemma continuous_on_open:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3355
 "continuous_on s f \<longleftrightarrow>
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3356
        (\<forall>t. openin (subtopology euclidean (f ` s)) t
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3357
            --> openin (subtopology euclidean s) {x \<in> s. f x \<in> t})" (is "?lhs = ?rhs")
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3358
proof
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3359
  assume ?lhs
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3360
  { fix t assume as:"openin (subtopology euclidean (f ` s)) t"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3361
    have "{x \<in> s. f x \<in> t} \<subseteq> s" using as[unfolded openin_euclidean_subtopology_iff] by auto
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3362
    moreover
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3363
    { fix x assume as':"x\<in>{x \<in> s. f x \<in> t}"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3364
      then obtain e where e: "e>0" "\<forall>x'\<in>f ` s. dist x' (f x) < e \<longrightarrow> x' \<in> t" using as[unfolded openin_euclidean_subtopology_iff, THEN conjunct2, THEN bspec[where x="f x"]] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3365
      from this(1) obtain d where d: "d>0" "\<forall>xa\<in>s. 0 < dist xa x \<and> dist xa x < d \<longrightarrow> dist (f xa) (f x) < e" using `?lhs`[unfolded continuous_on Lim_within, THEN bspec[where x=x]] using as' by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3366
      have "\<exists>e>0. \<forall>x'\<in>s. dist x' x < e \<longrightarrow> x' \<in> {x \<in> s. f x \<in> t}" using d e unfolding dist_nz[THEN sym] by (rule_tac x=d in exI, auto simp add: dist_refl)  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3367
    ultimately have "openin (subtopology euclidean s) {x \<in> s. f x \<in> t}" unfolding openin_euclidean_subtopology_iff by auto  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3368
  thus ?rhs unfolding continuous_on Lim_within using openin by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3369
next
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3370
  assume ?rhs
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3371
  { fix e::real and x assume "x\<in>s" "e>0"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3372
    { fix xa x' assume "dist (f xa) (f x) < e" "xa \<in> s" "x' \<in> s" "dist (f xa) (f x') < e - dist (f xa) (f x)"
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3373
      hence "dist (f x') (f x) < e" using dist_triangle[of "f x'" "f x" "f xa"]
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3374
	by (auto simp add: dist_sym)  }
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3375
    hence "ball (f x) e \<inter> f ` s \<subseteq> f ` s \<and> (\<forall>xa\<in>ball (f x) e \<inter> f ` s. \<exists>ea>0. \<forall>x'\<in>f ` s. dist x' xa < ea \<longrightarrow> x' \<in> ball (f x) e \<inter> f ` s)" apply auto
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3376
      apply(rule_tac x="e - dist (f xa) (f x)" in exI) using `e>0` by (auto simp add: dist_sym)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3377
    hence "\<forall>xa\<in>{xa \<in> s. f xa \<in> ball (f x) e \<inter> f ` s}. \<exists>ea>0. \<forall>x'\<in>s. dist x' xa < ea \<longrightarrow> x' \<in> {xa \<in> s. f xa \<in> ball (f x) e \<inter> f ` s}"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3378
      using `?rhs`[unfolded openin_euclidean_subtopology_iff, THEN spec[where x="ball (f x) e \<inter> f ` s"]] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3379
    hence "\<exists>d>0. \<forall>xa\<in>s. 0 < dist xa x \<and> dist xa x < d \<longrightarrow> dist (f xa) (f x) < e" apply(erule_tac x=x in ballE) apply auto unfolding dist_refl using `e>0` `x\<in>s` by (auto simp add: dist_sym)  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3380
  thus ?lhs unfolding continuous_on Lim_within by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3381
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3382
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3383
(* ------------------------------------------------------------------------- *)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3384
(* Similarly in terms of closed sets.                                        *)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3385
(* ------------------------------------------------------------------------- *)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3386
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3387
lemma continuous_on_closed:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3388
 "continuous_on s f \<longleftrightarrow>  (\<forall>t. closedin (subtopology euclidean (f ` s)) t  --> closedin (subtopology euclidean s) {x \<in> s. f x \<in> t})" (is "?lhs = ?rhs")
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3389
proof
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3390
  assume ?lhs
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3391
  { fix t
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3392
    have *:"s - {x \<in> s. f x \<in> f ` s - t} = {x \<in> s. f x \<in> t}" by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3393
    have **:"f ` s - (f ` s - (f ` s - t)) = f ` s - t" by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3394
    assume as:"closedin (subtopology euclidean (f ` s)) t"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3395
    hence "closedin (subtopology euclidean (f ` s)) (f ` s - (f ` s - t))" unfolding closedin_def topspace_euclidean_subtopology unfolding ** by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3396
    hence "closedin (subtopology euclidean s) {x \<in> s. f x \<in> t}" using `?lhs`[unfolded continuous_on_open, THEN spec[where x="(f ` s) - t"]]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3397
      unfolding openin_closedin_eq topspace_euclidean_subtopology unfolding * by auto  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3398
  thus ?rhs by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3399
next
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3400
  assume ?rhs
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3401
  { fix t
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3402
    have *:"s - {x \<in> s. f x \<in> f ` s - t} = {x \<in> s. f x \<in> t}" by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3403
    assume as:"openin (subtopology euclidean (f ` s)) t"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3404
    hence "openin (subtopology euclidean s) {x \<in> s. f x \<in> t}" using `?rhs`[THEN spec[where x="(f ` s) - t"]]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3405
      unfolding openin_closedin_eq topspace_euclidean_subtopology *[THEN sym] closedin_subtopology by auto }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3406
  thus ?lhs unfolding continuous_on_open by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3407
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3408
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3409
text{* Half-global and completely global cases.                                  *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3410
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3411
lemma continuous_open_in_preimage:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3412
  assumes "continuous_on s f"  "open t"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3413
  shows "openin (subtopology euclidean s) {x \<in> s. f x \<in> t}"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3414
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3415
  have *:"\<forall>x. x \<in> s \<and> f x \<in> t \<longleftrightarrow> x \<in> s \<and> f x \<in> (t \<inter> f ` s)" by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3416
  have "openin (subtopology euclidean (f ` s)) (t \<inter> f ` s)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3417
    using openin_open_Int[of t "f ` s", OF assms(2)] unfolding openin_open by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3418
  thus ?thesis using assms(1)[unfolded continuous_on_open, THEN spec[where x="t \<inter> f ` s"]] using * by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3419
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3420
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3421
lemma continuous_closed_in_preimage:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3422
  assumes "continuous_on s f"  "closed t"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3423
  shows "closedin (subtopology euclidean s) {x \<in> s. f x \<in> t}"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3424
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3425
  have *:"\<forall>x. x \<in> s \<and> f x \<in> t \<longleftrightarrow> x \<in> s \<and> f x \<in> (t \<inter> f ` s)" by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3426
  have "closedin (subtopology euclidean (f ` s)) (t \<inter> f ` s)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3427
    using closedin_closed_Int[of t "f ` s", OF assms(2)] unfolding Int_commute by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3428
  thus ?thesis
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3429
    using assms(1)[unfolded continuous_on_closed, THEN spec[where x="t \<inter> f ` s"]] using * by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3430
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3431
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3432
lemma continuous_open_preimage:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3433
  assumes "continuous_on s f" "open s" "open t"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3434
  shows "open {x \<in> s. f x \<in> t}"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3435
proof-
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3436
  obtain T where T: "open T" "{x \<in> s. f x \<in> t} = s \<inter> T"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3437
    using continuous_open_in_preimage[OF assms(1,3)] unfolding openin_open by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3438
  thus ?thesis using open_inter[of s T, OF assms(2)] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3439
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3440
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3441
lemma continuous_closed_preimage:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3442
  assumes "continuous_on s f" "closed s" "closed t"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3443
  shows "closed {x \<in> s. f x \<in> t}"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3444
proof-
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3445
  obtain T where T: "closed T" "{x \<in> s. f x \<in> t} = s \<inter> T"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3446
    using continuous_closed_in_preimage[OF assms(1,3)] unfolding closedin_closed by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3447
  thus ?thesis using closed_Int[of s T, OF assms(2)] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3448
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3449
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3450
lemma continuous_open_preimage_univ:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3451
 "\<forall>x. continuous (at x) f \<Longrightarrow> open s \<Longrightarrow> open {x. f x \<in> s}"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3452
  using continuous_open_preimage[of UNIV f s] open_UNIV continuous_at_imp_continuous_on by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3453
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3454
lemma continuous_closed_preimage_univ:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3455
 "(\<forall>x. continuous (at x) f) \<Longrightarrow> closed s ==> closed {x. f x \<in> s}"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3456
  using continuous_closed_preimage[of UNIV f s] closed_UNIV continuous_at_imp_continuous_on by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3457
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3458
text{* Equality of continuous functions on closure and related results.          *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3459
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3460
lemma continuous_closed_in_preimage_constant:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3461
 "continuous_on s f ==> closedin (subtopology euclidean s) {x \<in> s. f x = a}"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3462
  using continuous_closed_in_preimage[of s f "{a}"] closed_sing by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3463
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3464
lemma continuous_closed_preimage_constant:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3465
 "continuous_on s f \<Longrightarrow> closed s ==> closed {x \<in> s. f x = a}"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3466
  using continuous_closed_preimage[of s f "{a}"] closed_sing by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3467
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3468
lemma continuous_constant_on_closure:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3469
  assumes "continuous_on (closure s) f"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3470
          "\<forall>x \<in> s. f x = a"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3471
  shows "\<forall>x \<in> (closure s). f x = a"
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3472
    using continuous_closed_preimage_constant[of "closure s" f a]
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3473
    assms closure_minimal[of s "{x \<in> closure s. f x = a}"] closure_subset unfolding subset_eq by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3474
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3475
lemma image_closure_subset:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3476
  assumes "continuous_on (closure s) f"  "closed t"  "(f ` s) \<subseteq> t"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3477
  shows "f ` (closure s) \<subseteq> t"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3478
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3479
  have "s \<subseteq> {x \<in> closure s. f x \<in> t}" using assms(3) closure_subset by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3480
  moreover have "closed {x \<in> closure s. f x \<in> t}"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3481
    using continuous_closed_preimage[OF assms(1)] and assms(2) by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3482
  ultimately have "closure s = {x \<in> closure s . f x \<in> t}"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3483
    using closure_minimal[of s "{x \<in> closure s. f x \<in> t}"] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3484
  thus ?thesis by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3485
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3486
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3487
lemma continuous_on_closure_norm_le:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3488
  assumes "continuous_on (closure s) f"  "\<forall>y \<in> s. norm(f y) \<le> b"  "x \<in> (closure s)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3489
  shows "norm(f x) \<le> b"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3490
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3491
  have *:"f ` s \<subseteq> cball 0 b" using assms(2)[unfolded mem_cball_0[THEN sym]] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3492
  show ?thesis
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3493
    using image_closure_subset[OF assms(1) closed_cball[of 0 b] *] assms(3)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3494
    unfolding subset_eq apply(erule_tac x="f x" in ballE) by (auto simp add: dist_def)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3495
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3496
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3497
text{* Making a continuous function avoid some value in a neighbourhood.         *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3498
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3499
lemma continuous_within_avoid:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3500
  assumes "continuous (at x within s) f"  "x \<in> s"  "f x \<noteq> a"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3501
  shows "\<exists>e>0. \<forall>y \<in> s. dist x y < e --> f y \<noteq> a"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3502
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3503
  obtain d where "d>0" and d:"\<forall>xa\<in>s. 0 < dist xa x \<and> dist xa x < d \<longrightarrow> dist (f xa) (f x) < dist (f x) a"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3504
    using assms(1)[unfolded continuous_within Lim_within, THEN spec[where x="dist (f x) a"]] assms(3)[unfolded dist_nz] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3505
  { fix y assume " y\<in>s"  "dist x y < d"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3506
    hence "f y \<noteq> a" using d[THEN bspec[where x=y]] assms(3)[unfolded dist_nz]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3507
      apply auto unfolding dist_nz[THEN sym] by (auto simp add: dist_sym) }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3508
  thus ?thesis using `d>0` by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3509
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3510
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3511
lemma continuous_at_avoid:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3512
  assumes "continuous (at x) f"  "f x \<noteq> a"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3513
  shows "\<exists>e>0. \<forall>y. dist x y < e \<longrightarrow> f y \<noteq> a"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3514
using assms using continuous_within_avoid[of x UNIV f a, unfolded within_UNIV] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3515
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3516
lemma continuous_on_avoid:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3517
  assumes "continuous_on s f"  "x \<in> s"  "f x \<noteq> a"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3518
  shows "\<exists>e>0. \<forall>y \<in> s. dist x y < e \<longrightarrow> f y \<noteq> a"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3519
using assms(1)[unfolded continuous_on_eq_continuous_within, THEN bspec[where x=x], OF assms(2)]  continuous_within_avoid[of x s f a]  assms(2,3) by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3520
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3521
lemma continuous_on_open_avoid:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3522
  assumes "continuous_on s f"  "open s"  "x \<in> s"  "f x \<noteq> a"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3523
  shows "\<exists>e>0. \<forall>y. dist x y < e \<longrightarrow> f y \<noteq> a"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3524
using assms(1)[unfolded continuous_on_eq_continuous_at[OF assms(2)], THEN bspec[where x=x], OF assms(3)]  continuous_at_avoid[of x f a]  assms(3,4) by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3525
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3526
text{* Proving a function is constant by proving open-ness of level set.         *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3527
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3528
lemma continuous_levelset_open_in_cases:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3529
 "connected s \<Longrightarrow> continuous_on s f \<Longrightarrow>
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3530
        openin (subtopology euclidean s) {x \<in> s. f x = a}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3531
        ==> (\<forall>x \<in> s. f x \<noteq> a) \<or> (\<forall>x \<in> s. f x = a)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3532
unfolding connected_clopen using continuous_closed_in_preimage_constant by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3533
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3534
lemma continuous_levelset_open_in:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3535
 "connected s \<Longrightarrow> continuous_on s f \<Longrightarrow>
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3536
        openin (subtopology euclidean s) {x \<in> s. f x = a} \<Longrightarrow>
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3537
        (\<exists>x \<in> s. f x = a)  ==> (\<forall>x \<in> s. f x = a)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3538
using continuous_levelset_open_in_cases[of s f ]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3539
by meson
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3540
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3541
lemma continuous_levelset_open:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3542
  assumes "connected s"  "continuous_on s f"  "open {x \<in> s. f x = a}"  "\<exists>x \<in> s.  f x = a"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3543
  shows "\<forall>x \<in> s. f x = a"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3544
using continuous_levelset_open_in[OF assms(1,2), of a, unfolded openin_open] using assms (3,4) by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3545
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3546
text{* Some arithmetical combinations (more to prove).                           *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3547
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3548
lemma open_scaling[intro]:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3549
  assumes "c \<noteq> 0"  "open s"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3550
  shows "open((\<lambda>x. c *s x) ` s)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3551
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3552
  { fix x assume "x \<in> s"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3553
    then obtain e where "e>0" and e:"\<forall>x'. dist x' x < e \<longrightarrow> x' \<in> s" using assms(2)[unfolded open_def, THEN bspec[where x=x]] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3554
    have "e * abs c > 0" using assms(1)[unfolded zero_less_abs_iff[THEN sym]] using real_mult_order[OF `e>0`] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3555
    moreover
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3556
    { fix y assume "dist y (c *s x) < e * \<bar>c\<bar>"
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3557
      hence "norm ((1 / c) *s y - x) < e" unfolding dist_def
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3558
	using norm_mul[of c "(1 / c) *s y - x", unfolded vector_ssub_ldistrib, unfolded vector_smult_assoc] assms(1)
30649
57753e0ec1d4 1. New cancellation simprocs for common factors in inequations
nipkow
parents: 30582
diff changeset
  3559
	  assms(1)[unfolded zero_less_abs_iff[THEN sym]] by (simp del:zero_less_abs_iff)
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3560
      hence "y \<in> op *s c ` s" using rev_image_eqI[of "(1 / c) *s y" s y "op *s c"]  e[THEN spec[where x="(1 / c) *s y"]]  assms(1) unfolding dist_def vector_smult_assoc by auto  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3561
    ultimately have "\<exists>e>0. \<forall>x'. dist x' (c *s x) < e \<longrightarrow> x' \<in> op *s c ` s" apply(rule_tac x="e * abs c" in exI) by auto  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3562
  thus ?thesis unfolding open_def by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3563
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3564
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3565
lemma open_negations:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3566
 "open s ==> open ((\<lambda> x. -x) ` s)" unfolding pth_3 by auto
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3567
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3568
lemma open_translation:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3569
  assumes "open s"  shows "open((\<lambda>x. a + x) ` s)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3570
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3571
  { fix x have "continuous (at x) (\<lambda>x. x - a)" using continuous_sub[of "at x" "\<lambda>x. x" "\<lambda>x. a"] continuous_at_id[of x] continuous_const[of "at x" a] by auto  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3572
  moreover have "{x. x - a \<in> s}  = op + a ` s" apply auto unfolding image_iff apply(rule_tac x="x - a" in bexI) by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3573
  ultimately show ?thesis using continuous_open_preimage_univ[of "\<lambda>x. x - a" s] using assms by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3574
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3575
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3576
lemma open_affinity:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3577
  assumes "open s"  "c \<noteq> 0"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3578
  shows "open ((\<lambda>x. a + c *s x) ` s)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3579
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3580
  have *:"(\<lambda>x. a + c *s x) = (\<lambda>x. a + x) \<circ> (\<lambda>x. c *s x)" unfolding o_def ..
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3581
  have "op + a ` op *s c ` s = (op + a \<circ> op *s c) ` s" by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3582
  thus ?thesis using assms open_translation[of "op *s c ` s" a] unfolding * by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3583
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3584
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3585
lemma interior_translation: "interior ((\<lambda>x. a + x) ` s) = (\<lambda>x. a + x) ` (interior s)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3586
proof (rule set_ext, rule)
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3587
  fix x assume "x \<in> interior (op + a ` s)"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3588
  then obtain e where "e>0" and e:"ball x e \<subseteq> op + a ` s" unfolding mem_interior by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3589
  hence "ball (x - a) e \<subseteq> s" unfolding subset_eq Ball_def mem_ball dist_def apply auto apply(erule_tac x="a + xa" in allE) unfolding ab_group_add_class.diff_diff_eq[THEN sym] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3590
  thus "x \<in> op + a ` interior s" unfolding image_iff apply(rule_tac x="x - a" in bexI) unfolding mem_interior using `e > 0` by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3591
next
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3592
  fix x assume "x \<in> op + a ` interior s"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3593
  then obtain y e where "e>0" and e:"ball y e \<subseteq> s" and y:"x = a + y" unfolding image_iff Bex_def mem_interior by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3594
  { fix z have *:"a + y - z = y + a - z" by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3595
    assume "z\<in>ball x e"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3596
    hence "z - a \<in> s" using e[unfolded subset_eq, THEN bspec[where x="z - a"]] unfolding mem_ball dist_def y ab_group_add_class.diff_diff_eq2 * by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3597
    hence "z \<in> op + a ` s" unfolding image_iff by(auto intro!: bexI[where x="z - a"])  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3598
  hence "ball x e \<subseteq> op + a ` s" unfolding subset_eq by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3599
  thus "x \<in> interior (op + a ` s)" unfolding mem_interior using `e>0` by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3600
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3601
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3602
subsection {* Preservation of compactness and connectedness under continuous function.  *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3603
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3604
lemma compact_continuous_image:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3605
  assumes "continuous_on s f"  "compact s"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3606
  shows "compact(f ` s)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3607
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3608
  { fix x assume x:"\<forall>n::nat. x n \<in> f ` s"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3609
    then obtain y where y:"\<forall>n. y n \<in> s \<and> x n = f (y n)" unfolding image_iff Bex_def using choice[of "\<lambda>n xa. xa \<in> s \<and> x n = f xa"] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3610
    then obtain l r where "l\<in>s" and r:"\<forall>m n. m < n \<longrightarrow> r m < r n" and lr:"((y \<circ> r) ---> l) sequentially" using assms(2)[unfolded compact_def, THEN spec[where x=y]] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3611
    { fix e::real assume "e>0"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3612
      then obtain d where "d>0" and d:"\<forall>x'\<in>s. dist x' l < d \<longrightarrow> dist (f x') (f l) < e" using assms(1)[unfolded continuous_on_def, THEN bspec[where x=l], OF `l\<in>s`] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3613
      then obtain N::nat where N:"\<forall>n\<ge>N. dist ((y \<circ> r) n) l < d" using lr[unfolded Lim_sequentially, THEN spec[where x=d]] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3614
      { fix n::nat assume "n\<ge>N" hence "dist ((x \<circ> r) n) (f l) < e" using N[THEN spec[where x=n]] d[THEN bspec[where x="y (r n)"]] y[THEN spec[where x="r n"]] by auto  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3615
      hence "\<exists>N. \<forall>n\<ge>N. dist ((x \<circ> r) n) (f l) < e" by auto  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3616
    hence "\<exists>l\<in>f ` s. \<exists>r. (\<forall>m n. m < n \<longrightarrow> r m < r n) \<and> ((x \<circ> r) ---> l) sequentially" unfolding Lim_sequentially using r lr `l\<in>s` by auto  }
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3617
  thus ?thesis unfolding compact_def by auto
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3618
qed
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3619
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3620
lemma connected_continuous_image:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3621
  assumes "continuous_on s f"  "connected s"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3622
  shows "connected(f ` s)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3623
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3624
  { fix T assume as: "T \<noteq> {}"  "T \<noteq> f ` s"  "openin (subtopology euclidean (f ` s)) T"  "closedin (subtopology euclidean (f ` s)) T"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3625
    have "{x \<in> s. f x \<in> T} = {} \<or> {x \<in> s. f x \<in> T} = s"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3626
      using assms(1)[unfolded continuous_on_open, THEN spec[where x=T]]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3627
      using assms(1)[unfolded continuous_on_closed, THEN spec[where x=T]]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3628
      using assms(2)[unfolded connected_clopen, THEN spec[where x="{x \<in> s. f x \<in> T}"]] as(3,4) by auto
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3629
    hence False using as(1,2)
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3630
      using as(4)[unfolded closedin_def topspace_euclidean_subtopology] by auto }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3631
  thus ?thesis unfolding connected_clopen by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3632
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3633
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3634
text{* Continuity implies uniform continuity on a compact domain.                *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3635
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3636
lemma compact_uniformly_continuous:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3637
  assumes "continuous_on s f"  "compact s"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3638
  shows "uniformly_continuous_on s f"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3639
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3640
    { fix x assume x:"x\<in>s"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3641
      hence "\<forall>xa. \<exists>y. 0 < xa \<longrightarrow> (y > 0 \<and> (\<forall>x'\<in>s. dist x' x < y \<longrightarrow> dist (f x') (f x) < xa))" using assms(1)[unfolded continuous_on_def, THEN bspec[where x=x]] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3642
      hence "\<exists>fa. \<forall>xa>0. \<forall>x'\<in>s. fa xa > 0 \<and> (dist x' x < fa xa \<longrightarrow> dist (f x') (f x) < xa)" using choice[of "\<lambda>e d. e>0 \<longrightarrow> d>0 \<and>(\<forall>x'\<in>s. (dist x' x < d \<longrightarrow> dist (f x') (f x) < e))"] by auto  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3643
    then have "\<forall>x\<in>s. \<exists>y. \<forall>xa. 0 < xa \<longrightarrow> (\<forall>x'\<in>s. y xa > 0 \<and> (dist x' x < y xa \<longrightarrow> dist (f x') (f x) < xa))" by auto
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3644
    then obtain d where d:"\<forall>e>0. \<forall>x\<in>s. \<forall>x'\<in>s. d x e > 0 \<and> (dist x' x < d x e \<longrightarrow> dist (f x') (f x) < e)"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3645
      using bchoice[of s "\<lambda>x fa. \<forall>xa>0. \<forall>x'\<in>s. fa xa > 0 \<and> (dist x' x < fa xa \<longrightarrow> dist (f x') (f x) < xa)"] by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3646
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3647
  { fix e::real assume "e>0"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3648
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3649
    { fix x assume "x\<in>s" hence "x \<in> ball x (d x (e / 2))" unfolding centre_in_ball using d[THEN spec[where x="e/2"]] using `e>0` by auto  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3650
    hence "s \<subseteq> \<Union>{ball x (d x (e / 2)) |x. x \<in> s}" unfolding subset_eq by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3651
    moreover
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3652
    { fix b assume "b\<in>{ball x (d x (e / 2)) |x. x \<in> s}" hence "open b" by auto  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3653
    ultimately obtain ea where "ea>0" and ea:"\<forall>x\<in>s. \<exists>b\<in>{ball x (d x (e / 2)) |x. x \<in> s}. ball x ea \<subseteq> b" using heine_borel_lemma[OF assms(2), of "{ball x (d x (e / 2)) | x. x\<in>s }"] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3654
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3655
    { fix x y assume "x\<in>s" "y\<in>s" and as:"dist y x < ea"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3656
      obtain z where "z\<in>s" and z:"ball x ea \<subseteq> ball z (d z (e / 2))" using ea[THEN bspec[where x=x]] and `x\<in>s` by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3657
      hence "x\<in>ball z (d z (e / 2))" using `ea>0` unfolding subset_eq by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3658
      hence "dist (f z) (f x) < e / 2" using d[THEN spec[where x="e/2"]] and `e>0` and `x\<in>s` and `z\<in>s`
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3659
	by (auto  simp add: dist_sym)
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3660
      moreover have "y\<in>ball z (d z (e / 2))" using as and `ea>0` and z[unfolded subset_eq]
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3661
	by (auto simp add: dist_sym)
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3662
      hence "dist (f z) (f y) < e / 2" using d[THEN spec[where x="e/2"]] and `e>0` and `y\<in>s` and `z\<in>s`
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3663
	by (auto  simp add: dist_sym)
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3664
      ultimately have "dist (f y) (f x) < e" using dist_triangle_half_r[of "f z" "f x" e "f y"]
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3665
	by (auto simp add: dist_sym)  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3666
    then have "\<exists>d>0. \<forall>x\<in>s. \<forall>x'\<in>s. dist x' x < d \<longrightarrow> dist (f x') (f x) < e" using `ea>0` by auto  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3667
  thus ?thesis unfolding uniformly_continuous_on_def by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3668
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3669
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3670
text{* Continuity of inverse function on compact domain. *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3671
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3672
lemma continuous_on_inverse:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3673
  assumes "continuous_on s f"  "compact s"  "\<forall>x \<in> s. g (f x) = x"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3674
  shows "continuous_on (f ` s) g"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3675
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3676
  have *:"g ` f ` s = s" using assms(3) by (auto simp add: image_iff)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3677
  { fix t assume t:"closedin (subtopology euclidean (g ` f ` s)) t"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3678
    then obtain T where T: "closed T" "t = s \<inter> T" unfolding closedin_closed unfolding * by auto
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3679
    have "continuous_on (s \<inter> T) f" using continuous_on_subset[OF assms(1), of "s \<inter> t"]
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3680
      unfolding T(2) and Int_left_absorb by auto
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3681
    moreover have "compact (s \<inter> T)"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3682
      using assms(2) unfolding compact_eq_bounded_closed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3683
      using bounded_subset[of s "s \<inter> T"] and T(1) by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3684
    ultimately have "closed (f ` t)" using T(1) unfolding T(2)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3685
      using compact_continuous_image unfolding compact_eq_bounded_closed by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3686
    moreover have "{x \<in> f ` s. g x \<in> t} = f ` s \<inter> f ` t" using assms(3) unfolding T(2) by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3687
    ultimately have "closedin (subtopology euclidean (f ` s)) {x \<in> f ` s. g x \<in> t}"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3688
      unfolding closedin_closed by auto  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3689
  thus ?thesis unfolding continuous_on_closed by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3690
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3691
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3692
subsection{* A uniformly convergent limit of continuous functions is continuous.       *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3693
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3694
lemma continuous_uniform_limit:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3695
  assumes "\<not> (trivial_limit net)"  "eventually (\<lambda>n. continuous_on s (f n)) net"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3696
  "\<forall>e>0. eventually (\<lambda>n. \<forall>x \<in> s. norm(f n x - g x) < e) net"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3697
  shows "continuous_on s g"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3698
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3699
  { fix x and e::real assume "x\<in>s" "e>0"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3700
    have "eventually (\<lambda>n. \<forall>x\<in>s. norm (f n x - g x) < e / 3) net" using `e>0` assms(3)[THEN spec[where x="e/3"]] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3701
    then obtain n where n:"\<forall>xa\<in>s. norm (f n xa - g xa) < e / 3"  "continuous_on s (f n)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3702
      using eventually_and[of "(\<lambda>n. \<forall>x\<in>s. norm (f n x - g x) < e / 3)" "(\<lambda>n. continuous_on s (f n))" net] assms(1,2) eventually_happens by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3703
    have "e / 3 > 0" using `e>0` by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3704
    then obtain d where "d>0" and d:"\<forall>x'\<in>s. dist x' x < d \<longrightarrow> dist (f n x') (f n x) < e / 3"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3705
      using n(2)[unfolded continuous_on_def, THEN bspec[where x=x], OF `x\<in>s`, THEN spec[where x="e/3"]] by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3706
    { fix y assume "y\<in>s" "dist y x < d"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3707
      hence "dist (f n y) (f n x) < e / 3" using d[THEN bspec[where x=y]] by auto
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3708
      hence "norm (f n y - g x) < 2 * e / 3" using norm_triangle_lt[of "f n y - f n x" "f n x - g x" "2*e/3"]
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3709
	using n(1)[THEN bspec[where x=x], OF `x\<in>s`] unfolding dist_def unfolding ab_group_add_class.ab_diff_minus by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3710
      hence "dist (g y) (g x) < e" unfolding dist_def using n(1)[THEN bspec[where x=y], OF `y\<in>s`]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3711
	unfolding norm_minus_cancel[of "f n y - g y", THEN sym] using norm_triangle_lt[of "f n y - g x" "g y - f n y" e] by (auto simp add: uminus_add_conv_diff)  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3712
    hence "\<exists>d>0. \<forall>x'\<in>s. dist x' x < d \<longrightarrow> dist (g x') (g x) < e" using `d>0` by auto  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3713
  thus ?thesis unfolding continuous_on_def by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3714
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3715
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3716
subsection{* Topological properties of linear functions.                               *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3717
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  3718
lemma linear_lim_0: fixes f::"real^'a::finite \<Rightarrow> real^'b::finite"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3719
  assumes "linear f" shows "(f ---> 0) (at (0))"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3720
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3721
  obtain B where "B>0" and B:"\<forall>x. norm (f x) \<le> B * norm x" using linear_bounded_pos[OF assms] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3722
  { fix e::real assume "e>0"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3723
    { fix x::"real^'a" assume "norm x < e / B"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3724
      hence "B * norm x < e" using `B>0` using mult_strict_right_mono[of "norm x" " e / B" B] unfolding real_mult_commute by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3725
      hence "norm (f x) < e" using B[THEN spec[where x=x]] `B>0` using order_le_less_trans[of "norm (f x)" "B * norm x" e] by auto   }
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3726
    moreover have "e / B > 0" using `e>0` `B>0` divide_pos_pos by auto
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3727
    ultimately have "\<exists>d>0. \<forall>x. 0 < dist x 0 \<and> dist x 0 < d \<longrightarrow> dist (f x) 0 < e" unfolding dist_def by auto  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3728
  thus ?thesis unfolding Lim_at by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3729
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3730
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3731
lemma linear_continuous_at:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3732
  assumes "linear f"  shows "continuous (at a) f"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3733
  unfolding continuous_at Lim_at_zero[of f "f a" a] using linear_lim_0[OF assms]
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3734
  unfolding Lim_null[of "\<lambda>x. f (a + x)"] unfolding linear_sub[OF assms, THEN sym] by auto
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3735
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3736
lemma linear_continuous_within:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3737
 "linear f ==> continuous (at x within s) f"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3738
  using continuous_at_imp_continuous_within[of x f s] using linear_continuous_at[of f] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3739
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3740
lemma linear_continuous_on:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3741
 "linear f ==> continuous_on s f"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3742
  using continuous_at_imp_continuous_on[of s f] using linear_continuous_at[of f] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3743
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3744
text{* Also bilinear functions, in composition form.                             *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3745
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3746
lemma bilinear_continuous_at_compose:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3747
 "continuous (at x) f \<Longrightarrow> continuous (at x) g \<Longrightarrow> bilinear h
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3748
        ==> continuous (at x) (\<lambda>x. h (f x) (g x))"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3749
  unfolding continuous_at using Lim_bilinear[of f "f x" "(at x)" g "g x" h] by auto
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3750
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3751
lemma bilinear_continuous_within_compose:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3752
 "continuous (at x within s) f \<Longrightarrow> continuous (at x within s) g \<Longrightarrow> bilinear h
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3753
        ==> continuous (at x within s) (\<lambda>x. h (f x) (g x))"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3754
  unfolding continuous_within using Lim_bilinear[of f "f x"] by auto
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3755
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3756
lemma bilinear_continuous_on_compose:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3757
 "continuous_on s f \<Longrightarrow> continuous_on s g \<Longrightarrow> bilinear h
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3758
             ==> continuous_on s (\<lambda>x. h (f x) (g x))"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3759
  unfolding continuous_on_eq_continuous_within apply auto apply(erule_tac x=x in ballE) apply auto apply(erule_tac x=x in ballE) apply auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3760
  using bilinear_continuous_within_compose[of _ s f g h] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3761
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3762
subsection{* Topological stuff lifted from and dropped to R                            *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3763
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3764
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3765
lemma open_vec1:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3766
 "open(vec1 ` s) \<longleftrightarrow>
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3767
        (\<forall>x \<in> s. \<exists>e>0. \<forall>x'. abs(x' - x) < e --> x' \<in> s)" (is "?lhs = ?rhs")
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3768
  unfolding open_def apply simp unfolding forall_vec1 dist_vec1 vec1_in_image_vec1 by simp
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3769
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3770
lemma islimpt_approachable_vec1:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3771
 "(vec1 x) islimpt (vec1 ` s) \<longleftrightarrow>
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3772
         (\<forall>e>0.  \<exists>x'\<in> s. x' \<noteq> x \<and> abs(x' - x) < e)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3773
  by (auto simp add: islimpt_approachable dist_vec1 vec1_eq)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3774
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3775
lemma closed_vec1:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3776
 "closed (vec1 ` s) \<longleftrightarrow>
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3777
        (\<forall>x. (\<forall>e>0.  \<exists>x' \<in> s. x' \<noteq> x \<and> abs(x' - x) < e)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3778
            --> x \<in> s)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3779
  unfolding closed_limpt islimpt_approachable forall_vec1 apply simp
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3780
  unfolding dist_vec1 vec1_in_image_vec1 abs_minus_commute by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3781
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3782
lemma continuous_at_vec1_range:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3783
 "continuous (at x) (vec1 o f) \<longleftrightarrow> (\<forall>e>0. \<exists>d>0.
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3784
        \<forall>x'. norm(x' - x) < d --> abs(f x' - f x) < e)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3785
  unfolding continuous_at unfolding Lim_at apply simp unfolding dist_vec1 unfolding dist_nz[THEN sym] unfolding dist_def apply auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3786
  apply(erule_tac x=e in allE) apply auto apply (rule_tac x=d in exI) apply auto apply (erule_tac x=x' in allE) apply auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3787
  apply(erule_tac x=e in allE) by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3788
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3789
lemma continuous_on_vec1_range:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3790
 " continuous_on s (vec1 o f) \<longleftrightarrow> (\<forall>x \<in> s. \<forall>e>0. \<exists>d>0. (\<forall>x' \<in> s. norm(x' - x) < d --> abs(f x' - f x) < e))"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3791
  unfolding continuous_on_def apply (simp del: dist_sym) unfolding dist_vec1 unfolding dist_def ..
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3792
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3793
lemma continuous_at_vec1_norm:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3794
 "\<forall>x. continuous (at x) (vec1 o norm)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3795
  unfolding continuous_at_vec1_range using real_abs_sub_norm order_le_less_trans by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3796
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3797
lemma continuous_on_vec1_norm:
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3798
 "\<forall>s. continuous_on s (vec1 o norm)"
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3799
unfolding continuous_on_vec1_range norm_vec1[THEN sym] by (metis norm_vec1 order_le_less_trans real_abs_sub_norm)
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3800
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3801
lemma continuous_at_vec1_component:
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  3802
  shows "continuous (at (a::real^'a::finite)) (\<lambda> x. vec1(x$i))"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3803
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3804
  { fix e::real and x assume "0 < dist x a" "dist x a < e" "e>0"
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  3805
    hence "\<bar>x $ i - a $ i\<bar> < e" using component_le_norm[of "x - a" i] unfolding dist_def by auto  }
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3806
  thus ?thesis unfolding continuous_at tendsto_def eventually_at dist_vec1 by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3807
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3808
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3809
lemma continuous_on_vec1_component:
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  3810
  shows "continuous_on s (\<lambda> x::real^'a::finite. vec1(x$i))"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3811
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3812
  { fix e::real and x xa assume "x\<in>s" "e>0" "xa\<in>s" "0 < norm (xa - x) \<and> norm (xa - x) < e"
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  3813
    hence "\<bar>xa $ i - x $ i\<bar> < e" using component_le_norm[of "xa - x" i] by auto  }
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3814
  thus ?thesis unfolding continuous_on Lim_within dist_vec1 unfolding dist_def by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3815
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3816
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3817
lemma continuous_at_vec1_infnorm:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3818
 "continuous (at x) (vec1 o infnorm)"
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3819
  unfolding continuous_at Lim_at o_def unfolding dist_vec1 unfolding dist_def
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3820
  apply auto apply (rule_tac x=e in exI) apply auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3821
  using order_trans[OF real_abs_sub_infnorm infnorm_le_norm, of _ x] by (metis xt1(7))
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3822
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3823
text{* Hence some handy theorems on distance, diameter etc. of/from a set.       *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3824
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3825
lemma compact_attains_sup:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3826
  assumes "compact (vec1 ` s)"  "s \<noteq> {}"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3827
  shows "\<exists>x \<in> s. \<forall>y \<in> s. y \<le> x"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3828
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3829
  from assms(1) have a:"bounded (vec1 ` s)" "closed (vec1 ` s)" unfolding compact_eq_bounded_closed by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3830
  { fix e::real assume as: "\<forall>x\<in>s. x \<le> rsup s" "rsup s \<notin> s"  "0 < e" "\<forall>x'\<in>s. x' = rsup s \<or> \<not> rsup s - x' < e"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3831
    have "isLub UNIV s (rsup s)" using rsup[OF assms(2)] unfolding setle_def using as(1) by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3832
    moreover have "isUb UNIV s (rsup s - e)" unfolding isUb_def unfolding setle_def using as(4,2) by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3833
    ultimately have False using isLub_le_isUb[of UNIV s "rsup s" "rsup s - e"] using `e>0` by auto  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3834
  thus ?thesis using bounded_has_rsup(1)[OF a(1) assms(2)] using a(2)[unfolded closed_vec1, THEN spec[where x="rsup s"]]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3835
    apply(rule_tac x="rsup s" in bexI) by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3836
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3837
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3838
lemma compact_attains_inf:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3839
  assumes "compact (vec1 ` s)" "s \<noteq> {}"  shows "\<exists>x \<in> s. \<forall>y \<in> s. x \<le> y"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3840
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3841
  from assms(1) have a:"bounded (vec1 ` s)" "closed (vec1 ` s)" unfolding compact_eq_bounded_closed by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3842
  { fix e::real assume as: "\<forall>x\<in>s. x \<ge> rinf s"  "rinf s \<notin> s"  "0 < e"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3843
      "\<forall>x'\<in>s. x' = rinf s \<or> \<not> abs (x' - rinf s) < e"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3844
    have "isGlb UNIV s (rinf s)" using rinf[OF assms(2)] unfolding setge_def using as(1) by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3845
    moreover
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3846
    { fix x assume "x \<in> s"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3847
      hence *:"abs (x - rinf s) = x - rinf s" using as(1)[THEN bspec[where x=x]] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3848
      have "rinf s + e \<le> x" using as(4)[THEN bspec[where x=x]] using as(2) `x\<in>s` unfolding * by auto }
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3849
    hence "isLb UNIV s (rinf s + e)" unfolding isLb_def and setge_def by auto
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3850
    ultimately have False using isGlb_le_isLb[of UNIV s "rinf s" "rinf s + e"] using `e>0` by auto  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3851
  thus ?thesis using bounded_has_rinf(1)[OF a(1) assms(2)] using a(2)[unfolded closed_vec1, THEN spec[where x="rinf s"]]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3852
    apply(rule_tac x="rinf s" in bexI) by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3853
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3854
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3855
lemma continuous_attains_sup:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3856
 "compact s \<Longrightarrow> s \<noteq> {} \<Longrightarrow> continuous_on s (vec1 o f)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3857
        ==> (\<exists>x \<in> s. \<forall>y \<in> s.  f y \<le> f x)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3858
  using compact_attains_sup[of "f ` s"]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3859
  using compact_continuous_image[of s "vec1 \<circ> f"] unfolding image_compose by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3860
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3861
lemma continuous_attains_inf:
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3862
 "compact s \<Longrightarrow> s \<noteq> {} \<Longrightarrow> continuous_on s (vec1 o f)
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3863
        ==> (\<exists>x \<in> s. \<forall>y \<in> s. f x \<le> f y)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3864
  using compact_attains_inf[of "f ` s"]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3865
  using compact_continuous_image[of s "vec1 \<circ> f"] unfolding image_compose by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3866
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3867
lemma distance_attains_sup:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3868
  assumes "compact s" "s \<noteq> {}"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3869
  shows "\<exists>x \<in> s. \<forall>y \<in> s. dist a y \<le> dist a x"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3870
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3871
  { fix x assume "x\<in>s" fix e::real assume "e>0"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3872
    { fix x' assume "x'\<in>s" and as:"norm (x' - x) < e"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3873
      hence "\<bar>norm (x' - a) - norm (x - a)\<bar> < e"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3874
	using real_abs_sub_norm[of "x' - a" "x - a"]  by auto  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3875
    hence "\<exists>d>0. \<forall>x'\<in>s. norm (x' - x) < d \<longrightarrow> \<bar>dist x' a - dist x a\<bar> < e" using `e>0` unfolding dist_def by auto }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3876
  thus ?thesis using assms
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3877
    using continuous_attains_sup[of s "\<lambda>x. dist a x"]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3878
    unfolding continuous_on_vec1_range by (auto simp add: dist_sym)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3879
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3880
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3881
text{* For *minimal* distance, we only need closure, not compactness.            *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3882
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3883
lemma distance_attains_inf:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3884
  assumes "closed s"  "s \<noteq> {}"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3885
  shows "\<exists>x \<in> s. \<forall>y \<in> s. dist a x \<le> dist a y"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3886
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3887
  from assms(2) obtain b where "b\<in>s" by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3888
  let ?B = "cball a (dist b a) \<inter> s"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3889
  have "b \<in> ?B" using `b\<in>s` by (simp add: dist_sym)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3890
  hence "?B \<noteq> {}" by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3891
  moreover
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3892
  { fix x assume "x\<in>?B"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3893
    fix e::real assume "e>0"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3894
    { fix x' assume "x'\<in>?B" and as:"norm (x' - x) < e"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3895
      hence "\<bar>norm (x' - a) - norm (x - a)\<bar> < e"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3896
	using real_abs_sub_norm[of "x' - a" "x - a"]  by auto  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3897
    hence "\<exists>d>0. \<forall>x'\<in>?B. norm (x' - x) < d \<longrightarrow> \<bar>dist x' a - dist x a\<bar> < e" using `e>0` unfolding dist_def by auto }
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3898
  hence "continuous_on (cball a (dist b a) \<inter> s) (vec1 \<circ> dist a)" unfolding continuous_on_vec1_range
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3899
    by (auto  simp add: dist_sym)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3900
  moreover have "compact ?B" using compact_cball[of a "dist b a"] unfolding compact_eq_bounded_closed using bounded_Int and closed_Int and assms(1) by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3901
  ultimately obtain x where "x\<in>cball a (dist b a) \<inter> s" "\<forall>y\<in>cball a (dist b a) \<inter> s. dist a x \<le> dist a y" using continuous_attains_inf[of ?B "dist a"] by fastsimp
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3902
  thus ?thesis by fastsimp
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3903
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3904
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3905
subsection{* We can now extend limit compositions to consider the scalar multiplier.   *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3906
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3907
lemma Lim_mul:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3908
  assumes "((vec1 o c) ---> vec1 d) net"  "(f ---> l) net"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3909
  shows "((\<lambda>x. c(x) *s f x) ---> (d *s l)) net"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3910
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3911
  have "bilinear (\<lambda>x. op *s (dest_vec1 (x::real^1)))" unfolding bilinear_def linear_def
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3912
    unfolding dest_vec1_add dest_vec1_cmul
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3913
    apply vector apply auto unfolding semiring_class.right_distrib semiring_class.left_distrib by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3914
  thus ?thesis using Lim_bilinear[OF assms, of "\<lambda>x y. (dest_vec1 x) *s y"] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3915
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3916
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3917
lemma Lim_vmul:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3918
 "((vec1 o c) ---> vec1 d) net ==> ((\<lambda>x. c(x) *s v) ---> d *s v) net"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3919
  using Lim_mul[of c d net "\<lambda>x. v" v] using Lim_const[of v] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3920
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3921
lemma continuous_vmul:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3922
 "continuous net (vec1 o c) ==> continuous net (\<lambda>x. c(x) *s v)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3923
  unfolding continuous_def using Lim_vmul[of c] by auto
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3924
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3925
lemma continuous_mul:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3926
 "continuous net (vec1 o c) \<Longrightarrow> continuous net f
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3927
             ==> continuous net (\<lambda>x. c(x) *s f x) "
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3928
  unfolding continuous_def using Lim_mul[of c] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3929
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3930
lemma continuous_on_vmul:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3931
 "continuous_on s (vec1 o c) ==> continuous_on s (\<lambda>x. c(x) *s v)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3932
  unfolding continuous_on_eq_continuous_within using continuous_vmul[of _ c] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3933
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3934
lemma continuous_on_mul:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3935
 "continuous_on s (vec1 o c) \<Longrightarrow> continuous_on s f
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3936
             ==> continuous_on s (\<lambda>x. c(x) *s f x)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3937
  unfolding continuous_on_eq_continuous_within using continuous_mul[of _ c] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3938
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3939
text{* And so we have continuity of inverse.                                     *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3940
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3941
lemma Lim_inv:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3942
  assumes "((vec1 o f) ---> vec1 l) (net::'a net)"  "l \<noteq> 0"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3943
  shows "((vec1 o inverse o f) ---> vec1(inverse l)) net"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3944
proof(cases "trivial_limit net")
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3945
  case True thus ?thesis unfolding tendsto_def unfolding eventually_def by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3946
next
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3947
  case False note ntriv = this
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3948
  { fix e::real assume "e>0"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3949
    hence "0 < min (\<bar>l\<bar> / 2) (l\<twosuperior> * e / 2)" using `l\<noteq>0` mult_pos_pos[of "l^2" "e/2"] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3950
    then obtain y where y1:"\<exists>x. netord net x y" and
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3951
      y:"\<forall>x. netord net x y \<longrightarrow> dist ((vec1 \<circ> f) x) (vec1 l) < min (\<bar>l\<bar> / 2) (l\<twosuperior> * e / 2)" using ntriv
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3952
      using assms(1)[unfolded tendsto_def eventually_def, THEN spec[where x="min (abs l / 2) (l ^ 2 * e / 2)"]] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3953
    { fix x assume "netord net x y"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3954
      hence *:"\<bar>f x - l\<bar> < min (\<bar>l\<bar> / 2) (l\<twosuperior> * e / 2)" using y[THEN spec[where x=x]] unfolding o_def dist_vec1 by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3955
      hence fx0:"f x \<noteq> 0" using `l \<noteq> 0` by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3956
      hence fxl0: "(f x) * l \<noteq> 0" using `l \<noteq> 0` by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3957
      from * have **:"\<bar>f x - l\<bar> < l\<twosuperior> * e / 2" by auto
30654
254478a8dd05 dropped theory Arith_Tools
haftmann
parents: 30582
diff changeset
  3958
      have "\<bar>f x\<bar> * 2 \<ge> \<bar>l\<bar>" using * by (auto simp del: less_divide_eq_number_of1)
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3959
      hence "\<bar>f x\<bar> * 2 * \<bar>l\<bar>  \<ge> \<bar>l\<bar> * \<bar>l\<bar>" unfolding mult_le_cancel_right by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3960
      hence "\<bar>f x * l\<bar> * 2  \<ge> \<bar>l\<bar>^2" unfolding real_mult_commute and power2_eq_square by auto
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3961
      hence ***:"inverse \<bar>f x * l\<bar> \<le> inverse (l\<twosuperior> / 2)" using fxl0
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3962
	using le_imp_inverse_le[of "l^2 / 2" "\<bar>f x * l\<bar>"]  by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3963
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3964
      have "dist ((vec1 \<circ> inverse \<circ> f) x) (vec1 (inverse l)) < e" unfolding o_def unfolding dist_vec1
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3965
	unfolding inverse_diff_inverse[OF fx0 `l\<noteq>0`] apply simp
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3966
	unfolding mult_commute[of "inverse (f x)"]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3967
	unfolding real_divide_def[THEN sym]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3968
	unfolding divide_divide_eq_left
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3969
	unfolding nonzero_abs_divide[OF fxl0]
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3970
	using mult_less_le_imp_less[OF **, of "inverse \<bar>f x * l\<bar>", of "inverse (l^2 / 2)"] using *** using fx0 `l\<noteq>0`
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3971
	unfolding inverse_eq_divide using `e>0` by auto   }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3972
    hence "(\<exists>y. (\<exists>x. netord net x y) \<and> (\<forall>x. netord net x y \<longrightarrow> dist ((vec1 \<circ> inverse \<circ> f) x) (vec1 (inverse l)) < e))"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3973
      using y1 by auto  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3974
  thus ?thesis unfolding tendsto_def eventually_def by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3975
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3976
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3977
lemma continuous_inv:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3978
 "continuous net (vec1 o f) \<Longrightarrow> f(netlimit net) \<noteq> 0
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3979
           ==> continuous net (vec1 o inverse o f)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3980
  unfolding continuous_def using Lim_inv by auto
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3981
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3982
lemma continuous_at_within_inv:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3983
  assumes "continuous (at a within s) (vec1 o f)" "f a \<noteq> 0"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3984
  shows "continuous (at a within s) (vec1 o inverse o f)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3985
proof(cases "trivial_limit (at a within s)")
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3986
  case True thus ?thesis unfolding continuous_def tendsto_def eventually_def by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3987
next
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3988
  case False note cs = this
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3989
  thus ?thesis using netlimit_within[OF cs] assms(2) continuous_inv[OF assms(1)] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3990
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3991
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  3992
lemma continuous_at_inv:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3993
 "continuous (at a) (vec1 o f) \<Longrightarrow> f a \<noteq> 0
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3994
         ==> continuous (at a) (vec1 o inverse o f) "
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3995
  using within_UNIV[THEN sym, of a] using continuous_at_within_inv[of a UNIV] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3996
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3997
subsection{* Preservation properties for pasted sets.                                  *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3998
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  3999
lemma bounded_pastecart:
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4000
  assumes "bounded s" "bounded t"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4001
  shows "bounded { pastecart x y | x y . (x \<in> s \<and> y \<in> t)}"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4002
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4003
  obtain a b where ab:"\<forall>x\<in>s. norm x \<le> a" "\<forall>x\<in>t. norm x \<le> b" using assms[unfolded bounded_def] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4004
  { fix x y assume "x\<in>s" "y\<in>t"
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  4005
    hence "norm x \<le> a" "norm y \<le> b" using ab by auto
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4006
    hence "norm (pastecart x y) \<le> a + b" using norm_pastecart[of x y] by auto }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4007
  thus ?thesis unfolding bounded_def by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4008
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4009
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  4010
lemma closed_pastecart:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4011
  assumes "closed s"  "closed t"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4012
  shows "closed {pastecart x y | x y . x \<in> s \<and> y \<in> t}"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4013
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4014
  { fix x l assume as:"\<forall>n::nat. x n \<in> {pastecart x y |x y. x \<in> s \<and> y \<in> t}"  "(x ---> l) sequentially"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4015
    { fix n::nat have "fstcart (x n) \<in> s" "sndcart (x n) \<in> t" using as(1)[THEN spec[where x=n]] by auto } note * = this
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4016
    moreover
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4017
    { fix e::real assume "e>0"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4018
      then obtain N::nat where N:"\<forall>n\<ge>N. dist (x n) l < e" using as(2)[unfolded Lim_sequentially, THEN spec[where x=e]] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4019
      { fix n::nat assume "n\<ge>N"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4020
	hence "dist (fstcart (x n)) (fstcart l) < e" "dist (sndcart (x n)) (sndcart l) < e"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4021
	  using N[THEN spec[where x=n]] dist_fstcart[of "x n" l] dist_sndcart[of "x n" l] by auto   }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4022
      hence "\<exists>N. \<forall>n\<ge>N. dist (fstcart (x n)) (fstcart l) < e" "\<exists>N. \<forall>n\<ge>N. dist (sndcart (x n)) (sndcart l) < e" by auto  }
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  4023
    ultimately have "fstcart l \<in> s" "sndcart l \<in> t"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4024
      using assms(1)[unfolded closed_sequential_limits, THEN spec[where x="\<lambda>n. fstcart (x n)"], THEN spec[where x="fstcart l"]]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4025
      using assms(2)[unfolded closed_sequential_limits, THEN spec[where x="\<lambda>n. sndcart (x n)"], THEN spec[where x="sndcart l"]]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4026
      unfolding Lim_sequentially by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4027
    hence "l \<in> {pastecart x y |x y. x \<in> s \<and> y \<in> t}" using pastecart_fst_snd[THEN sym, of l] by auto  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4028
  thus ?thesis unfolding closed_sequential_limits by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4029
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4030
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  4031
lemma compact_pastecart:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4032
 "compact s \<Longrightarrow> compact t ==> compact {pastecart x y | x y . x \<in> s \<and> y \<in> t}"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4033
  unfolding compact_eq_bounded_closed using bounded_pastecart[of s t] closed_pastecart[of s t] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4034
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4035
text{* Hence some useful properties follow quite easily.                         *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4036
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  4037
lemma compact_scaling:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4038
  assumes "compact s"  shows "compact ((\<lambda>x. c *s x) ` s)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4039
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4040
  let ?f = "\<lambda>x. c *s x"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4041
  have *:"linear ?f" unfolding linear_def vector_smult_assoc vector_add_ldistrib real_mult_commute by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4042
  show ?thesis using compact_continuous_image[of s ?f] continuous_at_imp_continuous_on[of s ?f]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4043
    using linear_continuous_at[OF *] assms by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4044
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4045
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  4046
lemma compact_negations:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4047
  assumes "compact s"  shows "compact ((\<lambda>x. -x) ` s)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4048
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4049
  have "uminus ` s = (\<lambda>x. -1 *s x) ` s" apply auto unfolding image_iff pth_3 by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4050
  thus ?thesis using compact_scaling[OF assms, of "-1"] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4051
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4052
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  4053
lemma compact_sums:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4054
  assumes "compact s"  "compact t"  shows "compact {x + y | x y. x \<in> s \<and> y \<in> t}"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4055
proof-
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  4056
  have *:"{x + y | x y. x \<in> s \<and> y \<in> t} =(\<lambda>z. fstcart z + sndcart z) ` {pastecart x y | x y.  x \<in> s \<and> y \<in> t}"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4057
    apply auto unfolding image_iff apply(rule_tac x="pastecart xa y" in bexI) unfolding fstcart_pastecart sndcart_pastecart by auto
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4058
  have "linear (\<lambda>z::real^('a + 'a). fstcart z + sndcart z)" unfolding linear_def
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4059
    unfolding fstcart_add sndcart_add apply auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4060
    unfolding vector_add_ldistrib fstcart_cmul[THEN sym] sndcart_cmul[THEN sym] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4061
  hence "continuous_on {pastecart x y |x y. x \<in> s \<and> y \<in> t} (\<lambda>z. fstcart z + sndcart z)"
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  4062
    using continuous_at_imp_continuous_on linear_continuous_at by auto
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4063
  thus ?thesis unfolding * using compact_continuous_image compact_pastecart[OF assms] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4064
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4065
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  4066
lemma compact_differences:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4067
  assumes "compact s" "compact t"  shows "compact {x - y | x y. x \<in> s \<and> y \<in> t}"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4068
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4069
  have "{x - y | x y::real^'a. x\<in>s \<and> y \<in> t} =  {x + y | x y. x \<in> s \<and> y \<in> (uminus ` t)}"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4070
    apply auto apply(rule_tac x= xa in exI) apply auto apply(rule_tac x=xa in exI) by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4071
  thus ?thesis using compact_sums[OF assms(1) compact_negations[OF assms(2)]] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4072
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4073
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  4074
lemma compact_translation:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4075
  assumes "compact s"  shows "compact ((\<lambda>x. a + x) ` s)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4076
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4077
  have "{x + y |x y. x \<in> s \<and> y \<in> {a}} = (\<lambda>x. a + x) ` s" by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4078
  thus ?thesis using compact_sums[OF assms compact_sing[of a]] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4079
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4080
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  4081
lemma compact_affinity:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4082
 assumes "compact s"  shows "compact ((\<lambda>x. a + c *s x) ` s)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4083
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4084
  have "op + a ` op *s c ` s = (\<lambda>x. a + c *s x) ` s" by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4085
  thus ?thesis using compact_translation[OF compact_scaling[OF assms], of a c] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4086
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4087
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4088
text{* Hence we get the following.                                               *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4089
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  4090
lemma compact_sup_maxdistance:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4091
  assumes "compact s"  "s \<noteq> {}"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4092
  shows "\<exists>x\<in>s. \<exists>y\<in>s. \<forall>u\<in>s. \<forall>v\<in>s. norm(u - v) \<le> norm(x - y)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4093
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4094
  have "{x - y | x y . x\<in>s \<and> y\<in>s} \<noteq> {}" using `s \<noteq> {}` by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4095
  then obtain x where x:"x\<in>{x - y |x y. x \<in> s \<and> y \<in> s}"  "\<forall>y\<in>{x - y |x y. x \<in> s \<and> y \<in> s}. norm y \<le> norm x"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4096
    using compact_differences[OF assms(1) assms(1)]
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  4097
    using distance_attains_sup[unfolded dist_def, of "{x - y | x y . x\<in>s \<and> y\<in>s}" 0] by(auto simp add: norm_minus_cancel)
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4098
  from x(1) obtain a b where "a\<in>s" "b\<in>s" "x = a - b" by auto
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  4099
  thus ?thesis using x(2)[unfolded `x = a - b`] by blast
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4100
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4101
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4102
text{* We can state this in terms of diameter of a set.                          *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4103
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4104
definition "diameter s = (if s = {} then 0::real else rsup {norm(x - y) | x y. x \<in> s \<and> y \<in> s})"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4105
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  4106
lemma diameter_bounded:
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  4107
  assumes "bounded s"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4108
  shows "\<forall>x\<in>s. \<forall>y\<in>s. norm(x - y) \<le> diameter s"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4109
        "\<forall>d>0. d < diameter s --> (\<exists>x\<in>s. \<exists>y\<in>s. norm(x - y) > d)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4110
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4111
  let ?D = "{norm (x - y) |x y. x \<in> s \<and> y \<in> s}"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4112
  obtain a where a:"\<forall>x\<in>s. norm x \<le> a" using assms[unfolded bounded_def] by auto
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  4113
  { fix x y assume "x \<in> s" "y \<in> s"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4114
    hence "norm (x - y) \<le> 2 * a" using norm_triangle_ineq[of x "-y", unfolded norm_minus_cancel] a[THEN bspec[where x=x]] a[THEN bspec[where x=y]] by (auto simp add: ring_simps)  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4115
  note * = this
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4116
  { fix x y assume "x\<in>s" "y\<in>s"  hence "s \<noteq> {}" by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4117
    have lub:"isLub UNIV ?D (rsup ?D)" using * rsup[of ?D] using `s\<noteq>{}` unfolding setle_def by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4118
    have "norm(x - y) \<le> diameter s" unfolding diameter_def using `s\<noteq>{}` *[OF `x\<in>s` `y\<in>s`] `x\<in>s` `y\<in>s` isLubD1[OF lub] unfolding setle_def by auto  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4119
  moreover
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4120
  { fix d::real assume "d>0" "d < diameter s"
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  4121
    hence "s\<noteq>{}" unfolding diameter_def by auto
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4122
    hence lub:"isLub UNIV ?D (rsup ?D)" using * rsup[of ?D] unfolding setle_def by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4123
    have "\<exists>d' \<in> ?D. d' > d"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4124
    proof(rule ccontr)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4125
      assume "\<not> (\<exists>d'\<in>{norm (x - y) |x y. x \<in> s \<and> y \<in> s}. d < d')"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4126
      hence as:"\<forall>d'\<in>?D. d' \<le> d" apply auto apply(erule_tac x="norm (x - y)" in allE) by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4127
      hence "isUb UNIV ?D d" unfolding isUb_def unfolding setle_def by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4128
      thus False using `d < diameter s` `s\<noteq>{}` isLub_le_isUb[OF lub, of d] unfolding diameter_def  by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4129
    qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4130
    hence "\<exists>x\<in>s. \<exists>y\<in>s. norm(x - y) > d" by auto  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4131
  ultimately show "\<forall>x\<in>s. \<forall>y\<in>s. norm(x - y) \<le> diameter s"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4132
        "\<forall>d>0. d < diameter s --> (\<exists>x\<in>s. \<exists>y\<in>s. norm(x - y) > d)" by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4133
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4134
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  4135
lemma diameter_bounded_bound:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4136
 "bounded s \<Longrightarrow> x \<in> s \<Longrightarrow> y \<in> s ==> norm(x - y) \<le> diameter s"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4137
  using diameter_bounded by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4138
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  4139
lemma diameter_compact_attained:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4140
  assumes "compact s"  "s \<noteq> {}"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4141
  shows "\<exists>x\<in>s. \<exists>y\<in>s. (norm(x - y) = diameter s)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4142
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4143
  have b:"bounded s" using assms(1) compact_eq_bounded_closed by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4144
  then obtain x y where xys:"x\<in>s" "y\<in>s" and xy:"\<forall>u\<in>s. \<forall>v\<in>s. norm (u - v) \<le> norm (x - y)" using compact_sup_maxdistance[OF assms] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4145
  hence "diameter s \<le> norm (x - y)" using rsup_le[of "{norm (x - y) |x y. x \<in> s \<and> y \<in> s}" "norm (x - y)"]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4146
    unfolding setle_def and diameter_def by auto
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  4147
  thus ?thesis using diameter_bounded(1)[OF b, THEN bspec[where x=x], THEN bspec[where x=y], OF xys] and xys by auto
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4148
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4149
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4150
text{* Related results with closure as the conclusion.                           *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4151
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  4152
lemma closed_scaling:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4153
  assumes "closed s" shows "closed ((\<lambda>x. c *s x) ` s)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4154
proof(cases "s={}")
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  4155
  case True thus ?thesis by auto
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4156
next
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4157
  case False
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  4158
  show ?thesis
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4159
  proof(cases "c=0")
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4160
    have *:"(\<lambda>x. 0) ` s = {0}" using `s\<noteq>{}` by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4161
    case True thus ?thesis apply auto unfolding * using closed_sing by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4162
  next
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4163
    case False
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4164
    { fix x l assume as:"\<forall>n::nat. x n \<in> op *s c ` s"  "(x ---> l) sequentially"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4165
      { fix n::nat have "(1 / c) *s x n \<in> s" using as(1)[THEN spec[where x=n]] using `c\<noteq>0` by (auto simp add: vector_smult_assoc) }
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  4166
      moreover
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4167
      { fix e::real assume "e>0"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4168
	hence "0 < e *\<bar>c\<bar>"  using `c\<noteq>0` mult_pos_pos[of e "abs c"] by auto
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  4169
	then obtain N where "\<forall>n\<ge>N. dist (x n) l < e * \<bar>c\<bar>" using as(2)[unfolded Lim_sequentially, THEN spec[where x="e * abs c"]] by auto
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4170
	hence "\<exists>N. \<forall>n\<ge>N. dist ((1 / c) *s x n) ((1 / c) *s l) < e" unfolding dist_def unfolding vector_ssub_ldistrib[THEN sym] norm_mul
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4171
	  using mult_imp_div_pos_less[of "abs c" _ e] `c\<noteq>0` by auto  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4172
      hence "((\<lambda>n. (1 / c) *s x n) ---> (1 / c) *s l) sequentially" unfolding Lim_sequentially by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4173
      ultimately have "l \<in> op *s c ` s"  using assms[unfolded closed_sequential_limits, THEN spec[where x="\<lambda>n. (1/c) *s x n"], THEN spec[where x="(1/c) *s l"]]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4174
	unfolding image_iff using `c\<noteq>0` apply(rule_tac x="(1 / c) *s l" in bexI) apply auto unfolding vector_smult_assoc  by auto  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4175
    thus ?thesis unfolding closed_sequential_limits by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4176
  qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4177
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4178
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  4179
lemma closed_negations:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4180
  assumes "closed s"  shows "closed ((\<lambda>x. -x) ` s)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4181
  using closed_scaling[OF assms, of "-1"] unfolding  pth_3 by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4182
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  4183
lemma compact_closed_sums:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4184
  assumes "compact s"  "closed t"  shows "closed {x + y | x y. x \<in> s \<and> y \<in> t}"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4185
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4186
  let ?S = "{x + y |x y. x \<in> s \<and> y \<in> t}"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4187
  { fix x l assume as:"\<forall>n. x n \<in> ?S"  "(x ---> l) sequentially"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4188
    from as(1) obtain f where f:"\<forall>n. x n = fst (f n) + snd (f n)"  "\<forall>n. fst (f n) \<in> s"  "\<forall>n. snd (f n) \<in> t"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4189
      using choice[of "\<lambda>n y. x n = (fst y) + (snd y) \<and> fst y \<in> s \<and> snd y \<in> t"] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4190
    obtain l' r where "l'\<in>s" and r:"\<forall>m n. m < n \<longrightarrow> r m < r n" and lr:"(((\<lambda>n. fst (f n)) \<circ> r) ---> l') sequentially"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4191
      using assms(1)[unfolded compact_def, THEN spec[where x="\<lambda> n. fst (f n)"]] using f(2) by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4192
    have "((\<lambda>n. snd (f (r n))) ---> l - l') sequentially"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4193
      using Lim_sub[OF lim_subsequence[OF r as(2)] lr] and f(1) unfolding o_def by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4194
    hence "l - l' \<in> t"
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  4195
      using assms(2)[unfolded closed_sequential_limits, THEN spec[where x="\<lambda> n. snd (f (r n))"], THEN spec[where x="l - l'"]]
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4196
      using f(3) by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4197
    hence "l \<in> ?S" using `l' \<in> s` apply auto apply(rule_tac x=l' in exI) apply(rule_tac x="l - l'" in exI) by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4198
  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4199
  thus ?thesis unfolding closed_sequential_limits by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4200
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4201
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  4202
lemma closed_compact_sums:
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  4203
  assumes "closed s"  "compact t"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4204
  shows "closed {x + y | x y. x \<in> s \<and> y \<in> t}"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4205
proof-
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  4206
  have "{x + y |x y. x \<in> t \<and> y \<in> s} = {x + y |x y. x \<in> s \<and> y \<in> t}" apply auto
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4207
    apply(rule_tac x=y in exI) apply auto apply(rule_tac x=y in exI) by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4208
  thus ?thesis using compact_closed_sums[OF assms(2,1)] by simp
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4209
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4210
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  4211
lemma compact_closed_differences:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4212
  assumes "compact s"  "closed t"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4213
  shows "closed {x - y | x y. x \<in> s \<and> y \<in> t}"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4214
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4215
  have "{x + y |x y. x \<in> s \<and> y \<in> uminus ` t} =  {x - y |x y. x \<in> s \<and> y \<in> t}"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4216
    apply auto apply(rule_tac x=xa in exI) apply auto apply(rule_tac x=xa in exI) by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4217
  thus ?thesis using compact_closed_sums[OF assms(1) closed_negations[OF assms(2)]] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4218
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4219
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  4220
lemma closed_compact_differences:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4221
  assumes "closed s" "compact t"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4222
  shows "closed {x - y | x y. x \<in> s \<and> y \<in> t}"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4223
proof-
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  4224
  have "{x + y |x y. x \<in> s \<and> y \<in> uminus ` t} = {x - y |x y. x \<in> s \<and> y \<in> t}"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4225
    apply auto apply(rule_tac x=xa in exI) apply auto apply(rule_tac x=xa in exI) by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4226
 thus ?thesis using closed_compact_sums[OF assms(1) compact_negations[OF assms(2)]] by simp
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4227
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4228
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  4229
lemma closed_translation:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4230
  assumes "closed s"  shows "closed ((\<lambda>x. a + x) ` s)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4231
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4232
  have "{a + y |y. y \<in> s} = (op + a ` s)" by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4233
  thus ?thesis using compact_closed_sums[OF compact_sing[of a] assms] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4234
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4235
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  4236
lemma translation_UNIV:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4237
 "range (\<lambda>x::real^'a. a + x) = UNIV"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4238
  apply (auto simp add: image_iff) apply(rule_tac x="x - a" in exI) by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4239
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4240
lemma translation_diff: "(\<lambda>x::real^'a. a + x) ` (s - t) = ((\<lambda>x. a + x) ` s) - ((\<lambda>x. a + x) ` t)" by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4241
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  4242
lemma closure_translation:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4243
 "closure ((\<lambda>x. a + x) ` s) = (\<lambda>x. a + x) ` (closure s)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4244
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4245
  have *:"op + a ` (UNIV - s) = UNIV - op + a ` s"  apply auto unfolding image_iff apply(rule_tac x="x - a" in bexI) by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4246
  show ?thesis unfolding closure_interior translation_diff translation_UNIV using interior_translation[of a "UNIV - s"] unfolding * by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4247
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4248
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  4249
lemma frontier_translation:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4250
 "frontier((\<lambda>x. a + x) ` s) = (\<lambda>x. a + x) ` (frontier s)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4251
  unfolding frontier_def translation_diff interior_translation closure_translation by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4252
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4253
subsection{* Separation between points and sets.                                       *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4254
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  4255
lemma separate_point_closed:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4256
 "closed s \<Longrightarrow> a \<notin> s  ==> (\<exists>d>0. \<forall>x\<in>s. d \<le> dist a x)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4257
proof(cases "s = {}")
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4258
  case True
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4259
  thus ?thesis by(auto intro!: exI[where x=1])
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4260
next
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4261
  case False
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4262
  assume "closed s" "a \<notin> s"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4263
  then obtain x where "x\<in>s" "\<forall>y\<in>s. dist a x \<le> dist a y" using `s \<noteq> {}` distance_attains_inf [of s a] by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4264
  with `x\<in>s` show ?thesis using dist_pos_lt[of a x] and`a \<notin> s` by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4265
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4266
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  4267
lemma separate_compact_closed:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4268
  assumes "compact s" and "closed t" and "s \<inter> t = {}"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4269
  shows "\<exists>d>0. \<forall>x\<in>s. \<forall>y\<in>t. d \<le> dist x y"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4270
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4271
  have "0 \<notin> {x - y |x y. x \<in> s \<and> y \<in> t}" using assms(3) by auto
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  4272
  then obtain d where "d>0" and d:"\<forall>x\<in>{x - y |x y. x \<in> s \<and> y \<in> t}. d \<le> dist 0 x"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4273
    using separate_point_closed[OF compact_closed_differences[OF assms(1,2)], of 0] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4274
  { fix x y assume "x\<in>s" "y\<in>t"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4275
    hence "x - y \<in> {x - y |x y. x \<in> s \<and> y \<in> t}" by auto
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  4276
    hence "d \<le> dist (x - y) 0" using d[THEN bspec[where x="x - y"]] using dist_sym
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4277
      by (auto  simp add: dist_sym)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4278
    hence "d \<le> dist x y" unfolding dist_def by auto  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4279
  thus ?thesis using `d>0` by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4280
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4281
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  4282
lemma separate_closed_compact:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4283
  assumes "closed s" and "compact t" and "s \<inter> t = {}"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4284
  shows "\<exists>d>0. \<forall>x\<in>s. \<forall>y\<in>t. d \<le> dist x y"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4285
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4286
  have *:"t \<inter> s = {}" using assms(3) by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4287
  show ?thesis using separate_compact_closed[OF assms(2,1) *]
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  4288
    apply auto apply(rule_tac x=d in exI) apply auto apply (erule_tac x=y in ballE)
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4289
    by (auto simp add: dist_sym)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4290
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4291
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4292
(* A cute way of denoting open and closed intervals using overloading.       *)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4293
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4294
lemma interval: fixes a :: "'a::ord^'n::finite" shows
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4295
  "{a <..< b} = {x::'a^'n. \<forall>i. a$i < x$i \<and> x$i < b$i}" and
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4296
  "{a .. b} = {x::'a^'n. \<forall>i. a$i \<le> x$i \<and> x$i \<le> b$i}"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4297
  by (auto simp add: expand_set_eq vector_less_def vector_less_eq_def)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4298
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4299
lemma mem_interval: fixes a :: "'a::ord^'n::finite" shows
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4300
  "x \<in> {a<..<b} \<longleftrightarrow> (\<forall>i. a$i < x$i \<and> x$i < b$i)"
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4301
  "x \<in> {a .. b} \<longleftrightarrow> (\<forall>i. a$i \<le> x$i \<and> x$i \<le> b$i)"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4302
  using interval[of a b]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4303
  by(auto simp add: expand_set_eq vector_less_def vector_less_eq_def)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4304
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4305
lemma interval_eq_empty: fixes a :: "real^'n::finite" shows
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4306
 "({a <..< b} = {} \<longleftrightarrow> (\<exists>i. b$i \<le> a$i))" (is ?th1) and
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4307
 "({a  ..  b} = {} \<longleftrightarrow> (\<exists>i. b$i < a$i))" (is ?th2)
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4308
proof-
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4309
  { fix i x assume as:"b$i \<le> a$i" and x:"x\<in>{a <..< b}"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4310
    hence "a $ i < x $ i \<and> x $ i < b $ i" unfolding mem_interval by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4311
    hence "a$i < b$i" by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4312
    hence False using as by auto  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4313
  moreover
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4314
  { assume as:"\<forall>i. \<not> (b$i \<le> a$i)"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4315
    let ?x = "(1/2) *s (a + b)"
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4316
    { fix i
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4317
      have "a$i < b$i" using as[THEN spec[where x=i]] by auto
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  4318
      hence "a$i < ((1/2) *s (a+b)) $ i" "((1/2) *s (a+b)) $ i < b$i"
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4319
	unfolding vector_smult_component and vector_add_component
30654
254478a8dd05 dropped theory Arith_Tools
haftmann
parents: 30582
diff changeset
  4320
	by (auto simp add: less_divide_eq_number_of1)  }
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4321
    hence "{a <..< b} \<noteq> {}" using mem_interval(1)[of "?x" a b] by auto  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4322
  ultimately show ?th1 by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4323
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4324
  { fix i x assume as:"b$i < a$i" and x:"x\<in>{a .. b}"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4325
    hence "a $ i \<le> x $ i \<and> x $ i \<le> b $ i" unfolding mem_interval by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4326
    hence "a$i \<le> b$i" by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4327
    hence False using as by auto  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4328
  moreover
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4329
  { assume as:"\<forall>i. \<not> (b$i < a$i)"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4330
    let ?x = "(1/2) *s (a + b)"
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4331
    { fix i
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4332
      have "a$i \<le> b$i" using as[THEN spec[where x=i]] by auto
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  4333
      hence "a$i \<le> ((1/2) *s (a+b)) $ i" "((1/2) *s (a+b)) $ i \<le> b$i"
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4334
	unfolding vector_smult_component and vector_add_component
30654
254478a8dd05 dropped theory Arith_Tools
haftmann
parents: 30582
diff changeset
  4335
	by (auto simp add: less_divide_eq_number_of1)  }
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4336
    hence "{a .. b} \<noteq> {}" using mem_interval(2)[of "?x" a b] by auto  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4337
  ultimately show ?th2 by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4338
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4339
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4340
lemma interval_ne_empty: fixes a :: "real^'n::finite" shows
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4341
  "{a  ..  b} \<noteq> {} \<longleftrightarrow> (\<forall>i. a$i \<le> b$i)" and
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4342
  "{a <..< b} \<noteq> {} \<longleftrightarrow> (\<forall>i. a$i < b$i)"
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4343
  unfolding interval_eq_empty[of a b] by (auto simp add: not_less not_le) (* BH: Why doesn't just "auto" work here? *)
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4344
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4345
lemma subset_interval_imp: fixes a :: "real^'n::finite" shows
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4346
 "(\<forall>i. a$i \<le> c$i \<and> d$i \<le> b$i) \<Longrightarrow> {c .. d} \<subseteq> {a .. b}" and
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4347
 "(\<forall>i. a$i < c$i \<and> d$i < b$i) \<Longrightarrow> {c .. d} \<subseteq> {a<..<b}" and
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4348
 "(\<forall>i. a$i \<le> c$i \<and> d$i \<le> b$i) \<Longrightarrow> {c<..<d} \<subseteq> {a .. b}" and
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4349
 "(\<forall>i. a$i \<le> c$i \<and> d$i \<le> b$i) \<Longrightarrow> {c<..<d} \<subseteq> {a<..<b}"
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4350
  unfolding subset_eq[unfolded Ball_def] unfolding mem_interval
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4351
  by (auto intro: order_trans less_le_trans le_less_trans less_imp_le) (* BH: Why doesn't just "auto" work here? *)
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4352
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4353
lemma interval_sing: fixes a :: "'a::linorder^'n::finite" shows
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4354
 "{a .. a} = {a} \<and> {a<..<a} = {}"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4355
apply(auto simp add: expand_set_eq vector_less_def vector_less_eq_def Cart_eq)
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4356
apply (simp add: order_eq_iff)
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4357
apply (auto simp add: not_less less_imp_le)
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4358
done
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4359
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4360
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4361
lemma interval_open_subset_closed:  fixes a :: "'a::preorder^'n::finite" shows
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4362
 "{a<..<b} \<subseteq> {a .. b}"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4363
proof(simp add: subset_eq, rule)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4364
  fix x
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4365
  assume x:"x \<in>{a<..<b}"
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4366
  { fix i
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4367
    have "a $ i \<le> x $ i"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4368
      using x order_less_imp_le[of "a$i" "x$i"]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4369
      by(simp add: expand_set_eq vector_less_def vector_less_eq_def Cart_eq)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4370
  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4371
  moreover
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4372
  { fix i
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4373
    have "x $ i \<le> b $ i"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4374
      using x order_less_imp_le[of "x$i" "b$i"]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4375
      by(simp add: expand_set_eq vector_less_def vector_less_eq_def Cart_eq)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4376
  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4377
  ultimately
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4378
  show "a \<le> x \<and> x \<le> b"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4379
    by(simp add: expand_set_eq vector_less_def vector_less_eq_def Cart_eq)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4380
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4381
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4382
lemma subset_interval: fixes a :: "real^'n::finite" shows
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4383
 "{c .. d} \<subseteq> {a .. b} \<longleftrightarrow> (\<forall>i. c$i \<le> d$i) --> (\<forall>i. a$i \<le> c$i \<and> d$i \<le> b$i)" (is ?th1) and
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4384
 "{c .. d} \<subseteq> {a<..<b} \<longleftrightarrow> (\<forall>i. c$i \<le> d$i) --> (\<forall>i. a$i < c$i \<and> d$i < b$i)" (is ?th2) and
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4385
 "{c<..<d} \<subseteq> {a .. b} \<longleftrightarrow> (\<forall>i. c$i < d$i) --> (\<forall>i. a$i \<le> c$i \<and> d$i \<le> b$i)" (is ?th3) and
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4386
 "{c<..<d} \<subseteq> {a<..<b} \<longleftrightarrow> (\<forall>i. c$i < d$i) --> (\<forall>i. a$i \<le> c$i \<and> d$i \<le> b$i)" (is ?th4)
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4387
proof-
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4388
  show ?th1 unfolding subset_eq and Ball_def and mem_interval by (auto intro: order_trans)
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4389
  show ?th2 unfolding subset_eq and Ball_def and mem_interval by (auto intro: le_less_trans less_le_trans order_trans less_imp_le)
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4390
  { assume as: "{c<..<d} \<subseteq> {a .. b}" "\<forall>i. c$i < d$i"
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4391
    hence "{c<..<d} \<noteq> {}" unfolding interval_eq_empty by (auto, drule_tac x=i in spec, simp) (* BH: Why doesn't just "auto" work? *)
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4392
    fix i
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4393
    (** TODO combine the following two parts as done in the HOL_light version. **)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4394
    { let ?x = "(\<chi> j. (if j=i then ((min (a$j) (d$j))+c$j)/2 else (c$j+d$j)/2))::real^'n"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4395
      assume as2: "a$i > c$i"
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4396
      { fix j
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4397
	have "c $ j < ?x $ j \<and> ?x $ j < d $ j" unfolding Cart_lambda_beta
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4398
	  apply(cases "j=i") using as(2)[THEN spec[where x=j]]
30654
254478a8dd05 dropped theory Arith_Tools
haftmann
parents: 30582
diff changeset
  4399
	  by (auto simp add: less_divide_eq_number_of1 as2)  }
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4400
      hence "?x\<in>{c<..<d}" unfolding mem_interval by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4401
      moreover
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4402
      have "?x\<notin>{a .. b}"
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4403
	unfolding mem_interval apply auto apply(rule_tac x=i in exI)
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4404
	using as(2)[THEN spec[where x=i]] and as2
30654
254478a8dd05 dropped theory Arith_Tools
haftmann
parents: 30582
diff changeset
  4405
	by (auto simp add: less_divide_eq_number_of1)
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4406
      ultimately have False using as by auto  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4407
    hence "a$i \<le> c$i" by(rule ccontr)auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4408
    moreover
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4409
    { let ?x = "(\<chi> j. (if j=i then ((max (b$j) (c$j))+d$j)/2 else (c$j+d$j)/2))::real^'n"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4410
      assume as2: "b$i < d$i"
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4411
      { fix j
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4412
	have "d $ j > ?x $ j \<and> ?x $ j > c $ j" unfolding Cart_lambda_beta
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4413
	  apply(cases "j=i") using as(2)[THEN spec[where x=j]]
30654
254478a8dd05 dropped theory Arith_Tools
haftmann
parents: 30582
diff changeset
  4414
	  by (auto simp add: less_divide_eq_number_of1 as2)  }
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4415
      hence "?x\<in>{c<..<d}" unfolding mem_interval by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4416
      moreover
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4417
      have "?x\<notin>{a .. b}"
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4418
	unfolding mem_interval apply auto apply(rule_tac x=i in exI)
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4419
	using as(2)[THEN spec[where x=i]] and as2
30654
254478a8dd05 dropped theory Arith_Tools
haftmann
parents: 30582
diff changeset
  4420
	by (auto simp add: less_divide_eq_number_of1)
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4421
      ultimately have False using as by auto  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4422
    hence "b$i \<ge> d$i" by(rule ccontr)auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4423
    ultimately
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4424
    have "a$i \<le> c$i \<and> d$i \<le> b$i" by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4425
  } note part1 = this
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4426
  thus ?th3 unfolding subset_eq and Ball_def and mem_interval apply auto apply (erule_tac x=ia in allE, simp)+ by (erule_tac x=i in allE, erule_tac x=i in allE, simp)+
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4427
  { assume as:"{c<..<d} \<subseteq> {a<..<b}" "\<forall>i. c$i < d$i"
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4428
    fix i
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4429
    from as(1) have "{c<..<d} \<subseteq> {a..b}" using interval_open_subset_closed[of a b] by auto
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4430
    hence "a$i \<le> c$i \<and> d$i \<le> b$i" using part1 and as(2) by auto  } note * = this
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4431
  thus ?th4 unfolding subset_eq and Ball_def and mem_interval apply auto apply (erule_tac x=ia in allE, simp)+ by (erule_tac x=i in allE, erule_tac x=i in allE, simp)+
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4432
qed
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4433
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4434
lemma disjoint_interval: fixes a::"real^'n::finite" shows
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4435
  "{a .. b} \<inter> {c .. d} = {} \<longleftrightarrow> (\<exists>i. (b$i < a$i \<or> d$i < c$i \<or> b$i < c$i \<or> d$i < a$i))" (is ?th1) and
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4436
  "{a .. b} \<inter> {c<..<d} = {} \<longleftrightarrow> (\<exists>i. (b$i < a$i \<or> d$i \<le> c$i \<or> b$i \<le> c$i \<or> d$i \<le> a$i))" (is ?th2) and
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4437
  "{a<..<b} \<inter> {c .. d} = {} \<longleftrightarrow> (\<exists>i. (b$i \<le> a$i \<or> d$i < c$i \<or> b$i \<le> c$i \<or> d$i \<le> a$i))" (is ?th3) and
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4438
  "{a<..<b} \<inter> {c<..<d} = {} \<longleftrightarrow> (\<exists>i. (b$i \<le> a$i \<or> d$i \<le> c$i \<or> b$i \<le> c$i \<or> d$i \<le> a$i))" (is ?th4)
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4439
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4440
  let ?z = "(\<chi> i. ((max (a$i) (c$i)) + (min (b$i) (d$i))) / 2)::real^'n"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4441
  show ?th1 ?th2 ?th3 ?th4
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4442
  unfolding expand_set_eq and Int_iff and empty_iff and mem_interval and all_conj_distrib[THEN sym] and eq_False
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4443
  apply (auto elim!: allE[where x="?z"])
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4444
  apply ((rule_tac x=x in exI, force) | (rule_tac x=i in exI, force))+
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4445
  done
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4446
qed
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4447
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4448
lemma inter_interval: fixes a :: "'a::linorder^'n::finite" shows
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4449
 "{a .. b} \<inter> {c .. d} =  {(\<chi> i. max (a$i) (c$i)) .. (\<chi> i. min (b$i) (d$i))}"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4450
  unfolding expand_set_eq and Int_iff and mem_interval
30654
254478a8dd05 dropped theory Arith_Tools
haftmann
parents: 30582
diff changeset
  4451
  by (auto simp add: less_divide_eq_number_of1 intro!: bexI)
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4452
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4453
(* Moved interval_open_subset_closed a bit upwards *)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4454
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4455
lemma open_interval_lemma: fixes x :: "real" shows
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4456
 "a < x \<Longrightarrow> x < b ==> (\<exists>d>0. \<forall>x'. abs(x' - x) < d --> a < x' \<and> x' < b)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4457
  by(rule_tac x="min (x - a) (b - x)" in exI, auto)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4458
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4459
lemma open_interval: fixes a :: "real^'n::finite" shows "open {a<..<b}"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4460
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4461
  { fix x assume x:"x\<in>{a<..<b}"
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4462
    { fix i
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4463
      have "\<exists>d>0. \<forall>x'. abs (x' - (x$i)) < d \<longrightarrow> a$i < x' \<and> x' < b$i"
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4464
	using x[unfolded mem_interval, THEN spec[where x=i]]
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4465
	using open_interval_lemma[of "a$i" "x$i" "b$i"] by auto  }
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  4466
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4467
    hence "\<forall>i. \<exists>d>0. \<forall>x'. abs (x' - (x$i)) < d \<longrightarrow> a$i < x' \<and> x' < b$i" by auto
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4468
    then obtain d where d:"\<forall>i. 0 < d i \<and> (\<forall>x'. \<bar>x' - x $ i\<bar> < d i \<longrightarrow> a $ i < x' \<and> x' < b $ i)"
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4469
      using bchoice[of "UNIV" "\<lambda>i d. d>0 \<and> (\<forall>x'. \<bar>x' - x $ i\<bar> < d \<longrightarrow> a $ i < x' \<and> x' < b $ i)"] by auto
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4470
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4471
    let ?d = "Min (range d)"
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4472
    have **:"finite (range d)" "range d \<noteq> {}" by auto
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4473
    have "?d>0" unfolding Min_gr_iff[OF **] using d by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4474
    moreover
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4475
    { fix x' assume as:"dist x' x < ?d"
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4476
      { fix i
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  4477
	have "\<bar>x'$i - x $ i\<bar> < d i"
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4478
	  using norm_bound_component_lt[OF as[unfolded dist_def], of i]
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4479
	  unfolding vector_minus_component and Min_gr_iff[OF **] by auto
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4480
	hence "a $ i < x' $ i" "x' $ i < b $ i" using d[THEN spec[where x=i]] by auto  }
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4481
      hence "a < x' \<and> x' < b" unfolding vector_less_def by auto  }
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4482
    ultimately have "\<exists>e>0. \<forall>x'. dist x' x < e \<longrightarrow> x' \<in> {a<..<b}" by (auto, rule_tac x="?d" in exI, simp)
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4483
  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4484
  thus ?thesis unfolding open_def using open_interval_lemma by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4485
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4486
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4487
lemma closed_interval: fixes a :: "real^'n::finite" shows "closed {a .. b}"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4488
proof-
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4489
  { fix x i assume as:"\<forall>e>0. \<exists>x'\<in>{a..b}. x' \<noteq> x \<and> dist x' x < e"(* and xab:"a$i > x$i \<or> b$i < x$i"*)
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4490
    { assume xa:"a$i > x$i"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4491
      with as obtain y where y:"y\<in>{a..b}" "y \<noteq> x" "dist y x < a$i - x$i" by(erule_tac x="a$i - x$i" in allE)auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4492
      hence False unfolding mem_interval and dist_def
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4493
	using component_le_norm[of "y-x" i, unfolded vector_minus_component] and xa by(auto elim!: allE[where x=i])
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4494
    } hence "a$i \<le> x$i" by(rule ccontr)auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4495
    moreover
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4496
    { assume xb:"b$i < x$i"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4497
      with as obtain y where y:"y\<in>{a..b}" "y \<noteq> x" "dist y x < x$i - b$i" by(erule_tac x="x$i - b$i" in allE)auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4498
      hence False unfolding mem_interval and dist_def
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4499
	using component_le_norm[of "y-x" i, unfolded vector_minus_component] and xb by(auto elim!: allE[where x=i])
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4500
    } hence "x$i \<le> b$i" by(rule ccontr)auto
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  4501
    ultimately
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4502
    have "a $ i \<le> x $ i \<and> x $ i \<le> b $ i" by auto }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4503
  thus ?thesis unfolding closed_limpt islimpt_approachable mem_interval by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4504
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4505
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4506
lemma interior_closed_interval: fixes a :: "real^'n::finite" shows
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4507
 "interior {a .. b} = {a<..<b}" (is "?L = ?R")
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4508
proof(rule subset_antisym)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4509
  show "?R \<subseteq> ?L" using interior_maximal[OF interval_open_subset_closed open_interval] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4510
next
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4511
  { fix x assume "\<exists>T. open T \<and> x \<in> T \<and> T \<subseteq> {a..b}"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4512
    then obtain s where s:"open s" "x \<in> s" "s \<subseteq> {a..b}" by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4513
    then obtain e where "e>0" and e:"\<forall>x'. dist x' x < e \<longrightarrow> x' \<in> {a..b}" unfolding open_def and subset_eq by auto
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4514
    { fix i
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4515
      have "dist (x - (e / 2) *s basis i) x < e"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4516
	   "dist (x + (e / 2) *s basis i) x < e"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4517
	unfolding dist_def apply auto
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4518
	unfolding norm_minus_cancel and norm_mul using norm_basis[of i] and `e>0` by auto
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4519
      hence "a $ i \<le> (x - (e / 2) *s basis i) $ i"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4520
                    "(x + (e / 2) *s basis i) $ i \<le> b $ i"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4521
	using e[THEN spec[where x="x - (e/2) *s basis i"]]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4522
	and   e[THEN spec[where x="x + (e/2) *s basis i"]]
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4523
	unfolding mem_interval by (auto elim!: allE[where x=i])
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  4524
      hence "a $ i < x $ i" and "x $ i < b $ i"
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4525
	unfolding vector_minus_component and vector_add_component
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4526
	unfolding vector_smult_component and basis_component using `e>0` by auto   }
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4527
    hence "x \<in> {a<..<b}" unfolding mem_interval by auto  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4528
  thus "?L \<subseteq> ?R" unfolding interior_def and subset_eq by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4529
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4530
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4531
lemma bounded_closed_interval: fixes a :: "real^'n::finite" shows
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4532
 "bounded {a .. b}"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4533
proof-
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4534
  let ?b = "\<Sum>i\<in>UNIV. \<bar>a$i\<bar> + \<bar>b$i\<bar>"
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4535
  { fix x::"real^'n" assume x:"\<forall>i. a $ i \<le> x $ i \<and> x $ i \<le> b $ i"
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4536
    { fix i
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4537
      have "\<bar>x$i\<bar> \<le> \<bar>a$i\<bar> + \<bar>b$i\<bar>" using x[THEN spec[where x=i]] by auto  }
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4538
    hence "(\<Sum>i\<in>UNIV. \<bar>x $ i\<bar>) \<le> ?b" by(rule setsum_mono)
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4539
    hence "norm x \<le> ?b" using norm_le_l1[of x] by auto  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4540
  thus ?thesis unfolding interval and bounded_def by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4541
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4542
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4543
lemma bounded_interval: fixes a :: "real^'n::finite" shows
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4544
 "bounded {a .. b} \<and> bounded {a<..<b}"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4545
  using bounded_closed_interval[of a b]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4546
  using interval_open_subset_closed[of a b]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4547
  using bounded_subset[of "{a..b}" "{a<..<b}"]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4548
  by simp
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4549
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4550
lemma not_interval_univ: fixes a :: "real^'n::finite" shows
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4551
 "({a .. b} \<noteq> UNIV) \<and> ({a<..<b} \<noteq> UNIV)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4552
  using bounded_interval[of a b]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4553
  by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4554
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4555
lemma compact_interval: fixes a :: "real^'n::finite" shows
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4556
 "compact {a .. b}"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4557
  using bounded_closed_imp_compact using bounded_interval[of a b] using closed_interval[of a b] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4558
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4559
lemma open_interval_midpoint: fixes a :: "real^'n::finite"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4560
  assumes "{a<..<b} \<noteq> {}" shows "((1/2) *s (a + b)) \<in> {a<..<b}"
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  4561
proof-
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4562
  { fix i
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4563
    have "a $ i < ((1 / 2) *s (a + b)) $ i \<and> ((1 / 2) *s (a + b)) $ i < b $ i"
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4564
      using assms[unfolded interval_ne_empty, THEN spec[where x=i]]
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4565
      unfolding vector_smult_component and vector_add_component
30654
254478a8dd05 dropped theory Arith_Tools
haftmann
parents: 30582
diff changeset
  4566
      by(auto simp add: less_divide_eq_number_of1)  }
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4567
  thus ?thesis unfolding mem_interval by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4568
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4569
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4570
lemma open_closed_interval_convex: fixes x :: "real^'n::finite"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4571
  assumes x:"x \<in> {a<..<b}" and y:"y \<in> {a .. b}" and e:"0 < e" "e \<le> 1"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4572
  shows "(e *s x + (1 - e) *s y) \<in> {a<..<b}"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4573
proof-
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4574
  { fix i
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4575
    have "a $ i = e * a$i + (1 - e) * a$i" unfolding left_diff_distrib by simp
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4576
    also have "\<dots> < e * x $ i + (1 - e) * y $ i" apply(rule add_less_le_mono)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4577
      using e unfolding mult_less_cancel_left and mult_le_cancel_left apply simp_all
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4578
      using x unfolding mem_interval  apply simp
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4579
      using y unfolding mem_interval  apply simp
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4580
      done
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4581
    finally have "a $ i < (e *s x + (1 - e) *s y) $ i" by auto
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4582
    moreover {
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4583
    have "b $ i = e * b$i + (1 - e) * b$i" unfolding left_diff_distrib by simp
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4584
    also have "\<dots> > e * x $ i + (1 - e) * y $ i" apply(rule add_less_le_mono)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4585
      using e unfolding mult_less_cancel_left and mult_le_cancel_left apply simp_all
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4586
      using x unfolding mem_interval  apply simp
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4587
      using y unfolding mem_interval  apply simp
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4588
      done
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4589
    finally have "(e *s x + (1 - e) *s y) $ i < b $ i" by auto
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4590
    } ultimately have "a $ i < (e *s x + (1 - e) *s y) $ i \<and> (e *s x + (1 - e) *s y) $ i < b $ i" by auto }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4591
  thus ?thesis unfolding mem_interval by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4592
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4593
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4594
lemma closure_open_interval: fixes a :: "real^'n::finite"
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  4595
  assumes "{a<..<b} \<noteq> {}"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4596
  shows "closure {a<..<b} = {a .. b}"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4597
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4598
  have ab:"a < b" using assms[unfolded interval_ne_empty] unfolding vector_less_def by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4599
  let ?c = "(1 / 2) *s (a + b)"
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  4600
  { fix x assume as:"x \<in> {a .. b}"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4601
    def f == "\<lambda>n::nat. x + (inverse (real n + 1)) *s (?c - x)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4602
    { fix n assume fn:"f n < b \<longrightarrow> a < f n \<longrightarrow> f n = x" and xc:"x \<noteq> ?c"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4603
      have *:"0 < inverse (real n + 1)" "inverse (real n + 1) \<le> 1" unfolding inverse_le_1_iff by auto
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  4604
      have "inverse (real n + 1) *s (1 / 2) *s (a + b) + (1 - inverse (real n + 1)) *s x =
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4605
	x + inverse (real n + 1) *s ((1 / 2) *s (a + b) - x)" by (auto simp add: vector_ssub_ldistrib vector_add_ldistrib field_simps vector_sadd_rdistrib[THEN sym])
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4606
      hence "f n < b" and "a < f n" using open_closed_interval_convex[OF open_interval_midpoint[OF assms] as *] unfolding f_def by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4607
      hence False using fn unfolding f_def using xc by(auto simp add: vector_mul_lcancel vector_ssub_ldistrib)  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4608
    moreover
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4609
    { assume "\<not> (f ---> x) sequentially"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4610
      { fix e::real assume "e>0"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4611
	hence "\<exists>N::nat. inverse (real (N + 1)) < e" using real_arch_inv[of e] apply (auto simp add: Suc_pred') apply(rule_tac x="n - 1" in exI) by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4612
	then obtain N::nat where "inverse (real (N + 1)) < e" by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4613
	hence "\<forall>n\<ge>N. inverse (real n + 1) < e" by (auto, metis Suc_le_mono le_SucE less_imp_inverse_less nat_le_real_less order_less_trans real_of_nat_Suc real_of_nat_Suc_gt_zero)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4614
	hence "\<exists>N::nat. \<forall>n\<ge>N. inverse (real n + 1) < e" by auto  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4615
      hence "((vec1 \<circ> (\<lambda>n. inverse (real n + 1))) ---> vec1 0) sequentially"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4616
	unfolding Lim_sequentially by(auto simp add: dist_vec1)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4617
      hence "(f ---> x) sequentially" unfolding f_def
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  4618
	using Lim_add[OF Lim_const, of "\<lambda>n::nat. (inverse (real n + 1)) *s ((1 / 2) *s (a + b) - x)" 0 sequentially x]
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4619
	using Lim_vmul[of "\<lambda>n::nat. inverse (real n + 1)" 0 sequentially "((1 / 2) *s (a + b) - x)"] by auto  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4620
    ultimately have "x \<in> closure {a<..<b}"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4621
      using as and open_interval_midpoint[OF assms] unfolding closure_def unfolding islimpt_sequential by(cases "x=?c")auto  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4622
  thus ?thesis using closure_minimal[OF interval_open_subset_closed closed_interval, of a b] by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4623
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4624
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4625
lemma bounded_subset_open_interval_symmetric: fixes s::"(real^'n::finite) set"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4626
  assumes "bounded s"  shows "\<exists>a. s \<subseteq> {-a<..<a}"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4627
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4628
  obtain b where "b>0" and b:"\<forall>x\<in>s. norm x \<le> b" using assms[unfolded bounded_pos] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4629
  def a \<equiv> "(\<chi> i. b+1)::real^'n"
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  4630
  { fix x assume "x\<in>s"
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4631
    fix i
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4632
    have "(-a)$i < x$i" and "x$i < a$i" using b[THEN bspec[where x=x], OF `x\<in>s`] and component_le_norm[of x i]
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4633
      unfolding vector_uminus_component and a_def and Cart_lambda_beta by auto
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4634
  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4635
  thus ?thesis by(auto intro: exI[where x=a] simp add: vector_less_def)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4636
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4637
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  4638
lemma bounded_subset_open_interval:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4639
  "bounded s ==> (\<exists>a b. s \<subseteq> {a<..<b})"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4640
  by(metis bounded_subset_open_interval_symmetric)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4641
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  4642
lemma bounded_subset_closed_interval_symmetric:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4643
  assumes "bounded s" shows "\<exists>a. s \<subseteq> {-a .. a}"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4644
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4645
  obtain a where "s \<subseteq> {- a<..<a}" using bounded_subset_open_interval_symmetric[OF assms] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4646
  thus ?thesis using interval_open_subset_closed[of "-a" a] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4647
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4648
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  4649
lemma bounded_subset_closed_interval:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4650
  "bounded s ==> (\<exists>a b. s \<subseteq> {a .. b})"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4651
  using bounded_subset_closed_interval_symmetric[of s] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4652
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  4653
lemma frontier_closed_interval:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4654
 "frontier {a .. b} = {a .. b} - {a<..<b}"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4655
  unfolding frontier_def unfolding interior_closed_interval and closure_closed[OF closed_interval] ..
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4656
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  4657
lemma frontier_open_interval:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4658
 "frontier {a<..<b} = (if {a<..<b} = {} then {} else {a .. b} - {a<..<b})"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4659
proof(cases "{a<..<b} = {}")
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4660
  case True thus ?thesis using frontier_empty by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4661
next
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4662
  case False thus ?thesis unfolding frontier_def and closure_open_interval[OF False] and interior_open[OF open_interval] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4663
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4664
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4665
lemma inter_interval_mixed_eq_empty: fixes a :: "real^'n::finite"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4666
  assumes "{c<..<d} \<noteq> {}"  shows "{a<..<b} \<inter> {c .. d} = {} \<longleftrightarrow> {a<..<b} \<inter> {c<..<d} = {}"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4667
  unfolding closure_open_interval[OF assms, THEN sym] unfolding open_inter_closure_eq_empty[OF open_interval] ..
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4668
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4669
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4670
(* Some special cases for intervals in R^1.                                  *)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4671
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4672
lemma all_1: "(\<forall>x::1. P x) \<longleftrightarrow> P 1"
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4673
  by (metis num1_eq_iff)
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4674
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4675
lemma ex_1: "(\<exists>x::1. P x) \<longleftrightarrow> P 1"
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4676
  by auto (metis num1_eq_iff)
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4677
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4678
lemma interval_cases_1: fixes x :: "real^1" shows
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4679
 "x \<in> {a .. b} ==> x \<in> {a<..<b} \<or> (x = a) \<or> (x = b)"
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4680
  by(simp add:  Cart_eq vector_less_def vector_less_eq_def all_1, auto)
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4681
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4682
lemma in_interval_1: fixes x :: "real^1" shows
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4683
 "(x \<in> {a .. b} \<longleftrightarrow> dest_vec1 a \<le> dest_vec1 x \<and> dest_vec1 x \<le> dest_vec1 b) \<and>
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4684
  (x \<in> {a<..<b} \<longleftrightarrow> dest_vec1 a < dest_vec1 x \<and> dest_vec1 x < dest_vec1 b)"
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4685
by(simp add: Cart_eq vector_less_def vector_less_eq_def all_1 dest_vec1_def)
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4686
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4687
lemma interval_eq_empty_1: fixes a :: "real^1" shows
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4688
  "{a .. b} = {} \<longleftrightarrow> dest_vec1 b < dest_vec1 a"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4689
  "{a<..<b} = {} \<longleftrightarrow> dest_vec1 b \<le> dest_vec1 a"
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4690
  unfolding interval_eq_empty and ex_1 and dest_vec1_def by auto
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4691
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4692
lemma subset_interval_1: fixes a :: "real^1" shows
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4693
 "({a .. b} \<subseteq> {c .. d} \<longleftrightarrow>  dest_vec1 b < dest_vec1 a \<or>
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4694
                dest_vec1 c \<le> dest_vec1 a \<and> dest_vec1 a \<le> dest_vec1 b \<and> dest_vec1 b \<le> dest_vec1 d)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4695
 "({a .. b} \<subseteq> {c<..<d} \<longleftrightarrow>  dest_vec1 b < dest_vec1 a \<or>
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4696
                dest_vec1 c < dest_vec1 a \<and> dest_vec1 a \<le> dest_vec1 b \<and> dest_vec1 b < dest_vec1 d)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4697
 "({a<..<b} \<subseteq> {c .. d} \<longleftrightarrow>  dest_vec1 b \<le> dest_vec1 a \<or>
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4698
                dest_vec1 c \<le> dest_vec1 a \<and> dest_vec1 a < dest_vec1 b \<and> dest_vec1 b \<le> dest_vec1 d)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4699
 "({a<..<b} \<subseteq> {c<..<d} \<longleftrightarrow> dest_vec1 b \<le> dest_vec1 a \<or>
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4700
                dest_vec1 c \<le> dest_vec1 a \<and> dest_vec1 a < dest_vec1 b \<and> dest_vec1 b \<le> dest_vec1 d)"
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4701
  unfolding subset_interval[of a b c d] unfolding all_1 and dest_vec1_def by auto
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4702
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4703
lemma eq_interval_1: fixes a :: "real^1" shows
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4704
 "{a .. b} = {c .. d} \<longleftrightarrow>
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4705
          dest_vec1 b < dest_vec1 a \<and> dest_vec1 d < dest_vec1 c \<or>
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4706
          dest_vec1 a = dest_vec1 c \<and> dest_vec1 b = dest_vec1 d"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4707
using set_eq_subset[of "{a .. b}" "{c .. d}"]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4708
using subset_interval_1(1)[of a b c d]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4709
using subset_interval_1(1)[of c d a b]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4710
by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4711
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4712
lemma disjoint_interval_1: fixes a :: "real^1" shows
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4713
  "{a .. b} \<inter> {c .. d} = {} \<longleftrightarrow> dest_vec1 b < dest_vec1 a \<or> dest_vec1 d < dest_vec1 c  \<or>  dest_vec1 b < dest_vec1 c \<or> dest_vec1 d < dest_vec1 a"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4714
  "{a .. b} \<inter> {c<..<d} = {} \<longleftrightarrow> dest_vec1 b < dest_vec1 a \<or> dest_vec1 d \<le> dest_vec1 c  \<or>  dest_vec1 b \<le> dest_vec1 c \<or> dest_vec1 d \<le> dest_vec1 a"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4715
  "{a<..<b} \<inter> {c .. d} = {} \<longleftrightarrow> dest_vec1 b \<le> dest_vec1 a \<or> dest_vec1 d < dest_vec1 c  \<or>  dest_vec1 b \<le> dest_vec1 c \<or> dest_vec1 d \<le> dest_vec1 a"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4716
  "{a<..<b} \<inter> {c<..<d} = {} \<longleftrightarrow> dest_vec1 b \<le> dest_vec1 a \<or> dest_vec1 d \<le> dest_vec1 c  \<or>  dest_vec1 b \<le> dest_vec1 c \<or> dest_vec1 d \<le> dest_vec1 a"
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4717
  unfolding disjoint_interval and dest_vec1_def ex_1 by auto
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4718
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4719
lemma open_closed_interval_1: fixes a :: "real^1" shows
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4720
 "{a<..<b} = {a .. b} - {a, b}"
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4721
  unfolding expand_set_eq apply simp unfolding vector_less_def and vector_less_eq_def and all_1 and dest_vec1_eq[THEN sym] and dest_vec1_def by auto
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4722
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4723
lemma closed_open_interval_1: "dest_vec1 (a::real^1) \<le> dest_vec1 b ==> {a .. b} = {a<..<b} \<union> {a,b}"
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4724
  unfolding expand_set_eq apply simp unfolding vector_less_def and vector_less_eq_def and all_1 and dest_vec1_eq[THEN sym] and dest_vec1_def by auto
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4725
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4726
(* Some stuff for half-infinite intervals too; FIXME: notation?  *)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4727
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4728
lemma closed_interval_left: fixes b::"real^'n::finite"
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4729
  shows "closed {x::real^'n. \<forall>i. x$i \<le> b$i}"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4730
proof-
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4731
  { fix i
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4732
    fix x::"real^'n" assume x:"\<forall>e>0. \<exists>x'\<in>{x. \<forall>i. x $ i \<le> b $ i}. x' \<noteq> x \<and> dist x' x < e"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4733
    { assume "x$i > b$i"
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4734
      then obtain y where "y $ i \<le> b $ i"  "y \<noteq> x"  "dist y x < x$i - b$i" using x[THEN spec[where x="x$i - b$i"]] by auto
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4735
      hence False using component_le_norm[of "y - x" i] unfolding dist_def and vector_minus_component by auto   }
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4736
    hence "x$i \<le> b$i" by(rule ccontr)auto  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4737
  thus ?thesis unfolding closed_limpt unfolding islimpt_approachable by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4738
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4739
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4740
lemma closed_interval_right: fixes a::"real^'n::finite"
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4741
  shows "closed {x::real^'n. \<forall>i. a$i \<le> x$i}"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4742
proof-
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4743
  { fix i
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4744
    fix x::"real^'n" assume x:"\<forall>e>0. \<exists>x'\<in>{x. \<forall>i. a $ i \<le> x $ i}. x' \<noteq> x \<and> dist x' x < e"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4745
    { assume "a$i > x$i"
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4746
      then obtain y where "a $ i \<le> y $ i"  "y \<noteq> x"  "dist y x < a$i - x$i" using x[THEN spec[where x="a$i - x$i"]] by auto
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4747
      hence False using component_le_norm[of "y - x" i] unfolding dist_def and vector_minus_component by auto   }
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4748
    hence "a$i \<le> x$i" by(rule ccontr)auto  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4749
  thus ?thesis unfolding closed_limpt unfolding islimpt_approachable by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4750
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4751
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4752
subsection{* Intervals in general, including infinite and mixtures of open and closed. *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4753
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4754
definition "is_interval s \<longleftrightarrow> (\<forall>a\<in>s. \<forall>b\<in>s. \<forall>x. a \<le> x \<and> x \<le> b \<longrightarrow> x \<in> s)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4755
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4756
lemma is_interval_interval: fixes a::"real^'n::finite" shows
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4757
  "is_interval {a<..<b}" "is_interval {a .. b}"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4758
  unfolding is_interval_def apply(auto simp add: vector_less_def vector_less_eq_def)
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4759
  apply(erule_tac x=i in allE)+ apply simp
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4760
  apply(erule_tac x=i in allE)+ apply simp
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4761
  apply(erule_tac x=i in allE)+ apply simp
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4762
  apply(erule_tac x=i in allE)+ apply simp
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4763
  done
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4764
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  4765
lemma is_interval_empty:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4766
 "is_interval {}"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4767
  unfolding is_interval_def
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4768
  by simp
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4769
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  4770
lemma is_interval_univ:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4771
 "is_interval UNIV"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4772
  unfolding is_interval_def
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4773
  by simp
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4774
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4775
subsection{* Closure of halfspaces and hyperplanes.                                    *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4776
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4777
lemma Lim_vec1_dot: fixes f :: "real^'m \<Rightarrow> real^'n::finite"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4778
  assumes "(f ---> l) net"  shows "((vec1 o (\<lambda>y. a \<bullet> (f y))) ---> vec1(a \<bullet> l)) net"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4779
proof(cases "a = vec 0")
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4780
  case True thus ?thesis using dot_lzero and Lim_const[of 0 net] unfolding vec1_vec and o_def by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4781
next
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4782
  case False
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4783
  { fix e::real
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4784
    assume "0 < e"  "\<forall>e>0. \<exists>y. (\<exists>x. netord net x y) \<and> (\<forall>x. netord net x y \<longrightarrow> dist l (f x) < e)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4785
    then obtain x y where x:"netord net x y" and y:"\<forall>x. netord net x y \<longrightarrow> dist l (f x) < e / norm a" apply(erule_tac x="e / norm a" in allE) apply auto using False using norm_ge_zero[of a] apply auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4786
      using divide_pos_pos[of e "norm a"] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4787
    { fix z assume "netord net z y" hence "dist l (f z) < e / norm a" using y by blast
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  4788
      hence "norm a * norm (l - f z) < e" unfolding dist_def and
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  4789
	pos_less_divide_eq[OF False[unfolded vec_0 zero_less_norm_iff[of a, THEN sym]]] and real_mult_commute by auto
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4790
      hence "\<bar>a \<bullet> l - a \<bullet> f z\<bar> < e" using order_le_less_trans[OF norm_cauchy_schwarz_abs[of a "l - f z"], of e] unfolding dot_rsub[symmetric] by auto  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4791
    hence "\<exists>y. (\<exists>x. netord net x y) \<and> (\<forall>x. netord net x y \<longrightarrow> \<bar>a \<bullet> l - a \<bullet> f x\<bar> < e)" using x by auto  }
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  4792
  thus ?thesis using assms unfolding Lim apply (auto simp add: dist_sym)
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  4793
    unfolding dist_vec1 by auto
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  4794
qed
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  4795
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  4796
lemma continuous_at_vec1_dot:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4797
 "continuous (at x) (vec1 o (\<lambda>y. a \<bullet> y))"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4798
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4799
  have "((\<lambda>x. x) ---> x) (at x)" unfolding Lim_at by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4800
  thus ?thesis unfolding continuous_at and o_def using Lim_vec1_dot[of "\<lambda>x. x" x "at x" a] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4801
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4802
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  4803
lemma continuous_on_vec1_dot:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4804
 "continuous_on s (vec1 o (\<lambda>y. a \<bullet> y)) "
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4805
  using continuous_at_imp_continuous_on[of s "vec1 o (\<lambda>y. a \<bullet> y)"]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4806
  using continuous_at_vec1_dot
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4807
  by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4808
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4809
lemma closed_halfspace_le: fixes a::"real^'n::finite"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4810
  shows "closed {x. a \<bullet> x \<le> b}"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4811
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4812
  have *:"{x \<in> UNIV. (vec1 \<circ> op \<bullet> a) x \<in> vec1 ` {r. \<exists>x. a \<bullet> x = r \<and> r \<le> b}} = {x. a \<bullet> x \<le> b}" by auto
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4813
  let ?T = "{x::real^1. (\<forall>i. x$i \<le> (vec1 b)$i)}"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4814
  have "closed ?T" using closed_interval_left[of "vec1 b"] by simp
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4815
  moreover have "vec1 ` {r. \<exists>x. a \<bullet> x = r \<and> r \<le> b} = range (vec1 \<circ> op \<bullet> a) \<inter> ?T" unfolding all_1
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4816
    unfolding image_def by auto
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  4817
  ultimately have "\<exists>T. closed T \<and> vec1 ` {r. \<exists>x. a \<bullet> x = r \<and> r \<le> b} = range (vec1 \<circ> op \<bullet> a) \<inter> T" by auto
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  4818
  hence "closedin euclidean {x \<in> UNIV. (vec1 \<circ> op \<bullet> a) x \<in> vec1 ` {r. \<exists>x. a \<bullet> x = r \<and> r \<le> b}}"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4819
    using continuous_on_vec1_dot[of UNIV a, unfolded continuous_on_closed subtopology_UNIV] unfolding closedin_closed
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  4820
    by (auto elim!: allE[where x="vec1 ` {r. (\<exists>x. a \<bullet> x = r \<and> r \<le> b)}"])
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4821
  thus ?thesis unfolding closed_closedin[THEN sym] and * by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4822
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4823
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4824
lemma closed_halfspace_ge: "closed {x. a \<bullet> x \<ge> b}"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4825
  using closed_halfspace_le[of "-a" "-b"] unfolding dot_lneg by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4826
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4827
lemma closed_hyperplane: "closed {x. a \<bullet> x = b}"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4828
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4829
  have "{x. a \<bullet> x = b} = {x. a \<bullet> x \<ge> b} \<inter> {x. a \<bullet> x \<le> b}" by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4830
  thus ?thesis using closed_halfspace_le[of a b] and closed_halfspace_ge[of b a] using closed_Int by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4831
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4832
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4833
lemma closed_halfspace_component_le:
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4834
  shows "closed {x::real^'n::finite. x$i \<le> a}"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4835
  using closed_halfspace_le[of "(basis i)::real^'n" a] unfolding dot_basis[OF assms] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4836
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  4837
lemma closed_halfspace_component_ge:
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4838
  shows "closed {x::real^'n::finite. x$i \<ge> a}"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4839
  using closed_halfspace_ge[of a "(basis i)::real^'n"] unfolding dot_basis[OF assms] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4840
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4841
text{* Openness of halfspaces.                                                   *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4842
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4843
lemma open_halfspace_lt: "open {x. a \<bullet> x < b}"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4844
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4845
  have "UNIV - {x. b \<le> a \<bullet> x} = {x. a \<bullet> x < b}" by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4846
  thus ?thesis using closed_halfspace_ge[unfolded closed_def, of b a] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4847
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4848
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4849
lemma open_halfspace_gt: "open {x. a \<bullet> x > b}"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4850
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4851
  have "UNIV - {x. b \<ge> a \<bullet> x} = {x. a \<bullet> x > b}" by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4852
  thus ?thesis using closed_halfspace_le[unfolded closed_def, of a b] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4853
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4854
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  4855
lemma open_halfspace_component_lt:
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4856
  shows "open {x::real^'n::finite. x$i < a}"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4857
  using open_halfspace_lt[of "(basis i)::real^'n" a] unfolding dot_basis[OF assms] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4858
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  4859
lemma open_halfspace_component_gt:
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4860
  shows "open {x::real^'n::finite. x$i  > a}"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4861
  using open_halfspace_gt[of a "(basis i)::real^'n"] unfolding dot_basis[OF assms] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4862
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4863
text{* This gives a simple derivation of limit component bounds.                 *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4864
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4865
lemma Lim_component_le: fixes f :: "'a \<Rightarrow> real^'n::finite"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4866
  assumes "(f ---> l) net" "\<not> (trivial_limit net)"  "eventually (\<lambda>x. f(x)$i \<le> b) net"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4867
  shows "l$i \<le> b"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4868
proof-
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4869
  { fix x have "x \<in> {x::real^'n. basis i \<bullet> x \<le> b} \<longleftrightarrow> x$i \<le> b" unfolding dot_basis by auto } note * = this
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4870
  show ?thesis using Lim_in_closed_set[of "{x. basis i \<bullet> x \<le> b}" f net l] unfolding *
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4871
    using closed_halfspace_le[of "(basis i)::real^'n" b] and assms(1,2,3) by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4872
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4873
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4874
lemma Lim_component_ge: fixes f :: "'a \<Rightarrow> real^'n::finite"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4875
  assumes "(f ---> l) net"  "\<not> (trivial_limit net)"  "eventually (\<lambda>x. b \<le> (f x)$i) net"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4876
  shows "b \<le> l$i"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4877
proof-
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4878
  { fix x have "x \<in> {x::real^'n. basis i \<bullet> x \<ge> b} \<longleftrightarrow> x$i \<ge> b" unfolding dot_basis by auto } note * = this
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4879
  show ?thesis using Lim_in_closed_set[of "{x. basis i \<bullet> x \<ge> b}" f net l] unfolding *
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4880
    using closed_halfspace_ge[of b "(basis i)::real^'n"] and assms(1,2,3) by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4881
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4882
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4883
lemma Lim_component_eq: fixes f :: "'a \<Rightarrow> real^'n::finite"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4884
  assumes net:"(f ---> l) net" "~(trivial_limit net)" and ev:"eventually (\<lambda>x. f(x)$i = b) net"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4885
  shows "l$i = b"
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4886
  using ev[unfolded order_eq_iff eventually_and] using Lim_component_ge[OF net, of b i] and Lim_component_le[OF net, of i b] by auto
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4887
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4888
lemma Lim_drop_le: fixes f :: "'a \<Rightarrow> real^1" shows
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4889
  "(f ---> l) net \<Longrightarrow> ~(trivial_limit net) \<Longrightarrow> eventually (\<lambda>x. dest_vec1 (f x) \<le> b) net ==> dest_vec1 l \<le> b"
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4890
  using Lim_component_le[of f l net 1 b] unfolding dest_vec1_def by auto
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4891
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4892
lemma Lim_drop_ge: fixes f :: "'a \<Rightarrow> real^1" shows
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4893
 "(f ---> l) net \<Longrightarrow> ~(trivial_limit net) \<Longrightarrow> eventually (\<lambda>x. b \<le> dest_vec1 (f x)) net ==> b \<le> dest_vec1 l"
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4894
  using Lim_component_ge[of f l net b 1] unfolding dest_vec1_def by auto
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4895
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4896
text{* Limits relative to a union.                                               *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4897
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  4898
lemma Lim_within_union:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4899
 "(f ---> l) (at x within (s \<union> t)) \<longleftrightarrow>
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4900
  (f ---> l) (at x within s) \<and> (f ---> l) (at x within t)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4901
  unfolding Lim_within apply auto apply blast apply blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4902
    apply(erule_tac x=e in allE)+ apply auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4903
    apply(rule_tac x="min d da" in exI) by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4904
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  4905
lemma continuous_on_union:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4906
  assumes "closed s" "closed t" "continuous_on s f" "continuous_on t f"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4907
  shows "continuous_on (s \<union> t) f"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4908
  using assms unfolding continuous_on unfolding Lim_within_union
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4909
  unfolding Lim unfolding trivial_limit_within unfolding closed_limpt by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4910
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4911
lemma continuous_on_cases: fixes g :: "real^'m::finite \<Rightarrow> real ^'n::finite"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4912
  assumes "closed s" "closed t" "continuous_on s f" "continuous_on t g"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4913
          "\<forall>x. (x\<in>s \<and> \<not> P x) \<or> (x \<in> t \<and> P x) \<longrightarrow> f x = g x"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4914
  shows "continuous_on (s \<union> t) (\<lambda>x. if P x then f x else g x)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4915
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4916
  let ?h = "(\<lambda>x. if P x then f x else g x)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4917
  have "\<forall>x\<in>s. f x = (if P x then f x else g x)" using assms(5) by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4918
  hence "continuous_on s ?h" using continuous_on_eq[of s f ?h] using assms(3) by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4919
  moreover
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4920
  have "\<forall>x\<in>t. g x = (if P x then f x else g x)" using assms(5) by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4921
  hence "continuous_on t ?h" using continuous_on_eq[of t g ?h] using assms(4) by auto
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  4922
  ultimately show ?thesis using continuous_on_union[OF assms(1,2), of ?h] by auto
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4923
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4924
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4925
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4926
text{* Some more convenient intermediate-value theorem formulations.             *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4927
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4928
lemma connected_ivt_hyperplane: fixes y :: "real^'n::finite"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4929
  assumes "connected s" "x \<in> s" "y \<in> s" "a \<bullet> x \<le> b" "b \<le> a \<bullet> y"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4930
  shows "\<exists>z \<in> s. a \<bullet> z = b"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4931
proof(rule ccontr)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4932
  assume as:"\<not> (\<exists>z\<in>s. a \<bullet> z = b)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4933
  let ?A = "{x::real^'n. a \<bullet> x < b}"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4934
  let ?B = "{x::real^'n. a \<bullet> x > b}"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4935
  have "open ?A" "open ?B" using open_halfspace_lt and open_halfspace_gt by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4936
  moreover have "?A \<inter> ?B = {}" by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4937
  moreover have "s \<subseteq> ?A \<union> ?B" using as by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4938
  ultimately show False using assms(1)[unfolded connected_def not_ex, THEN spec[where x="?A"], THEN spec[where x="?B"]] and assms(2-5) by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4939
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4940
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4941
lemma connected_ivt_component: fixes x::"real^'n::finite" shows
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4942
 "connected s \<Longrightarrow> x \<in> s \<Longrightarrow> y \<in> s \<Longrightarrow> x$k \<le> a \<Longrightarrow> a \<le> y$k \<Longrightarrow> (\<exists>z\<in>s.  z$k = a)"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4943
  using connected_ivt_hyperplane[of s x y "(basis k)::real^'n" a] by (auto simp add: dot_basis)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4944
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4945
text{* Also more convenient formulations of monotone convergence.                *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4946
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4947
lemma bounded_increasing_convergent: fixes s::"nat \<Rightarrow> real^1"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4948
  assumes "bounded {s n| n::nat. True}"  "\<forall>n. dest_vec1(s n) \<le> dest_vec1(s(Suc n))"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4949
  shows "\<exists>l. (s ---> l) sequentially"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4950
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4951
  obtain a where a:"\<forall>n. \<bar>dest_vec1 (s n)\<bar> \<le>  a" using assms(1)[unfolded bounded_def abs_dest_vec1] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4952
  { fix m::nat
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4953
    have "\<And> n. n\<ge>m \<longrightarrow> dest_vec1 (s m) \<le> dest_vec1 (s n)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4954
      apply(induct_tac n) apply simp using assms(2) apply(erule_tac x="na" in allE) by(auto simp add: not_less_eq_eq)  }
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  4955
  hence "\<forall>m n. m \<le> n \<longrightarrow> dest_vec1 (s m) \<le> dest_vec1 (s n)" by auto
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4956
  then obtain l where "\<forall>e>0. \<exists>N. \<forall>n\<ge>N. \<bar>dest_vec1 (s n) - l\<bar> < e" using convergent_bounded_monotone[OF a] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4957
  thus ?thesis unfolding Lim_sequentially apply(rule_tac x="vec1 l" in exI)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4958
    unfolding dist_def unfolding abs_dest_vec1 and dest_vec1_sub by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4959
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4960
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4961
subsection{* Basic homeomorphism definitions.                                          *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4962
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4963
definition "homeomorphism s t f g \<equiv>
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4964
     (\<forall>x\<in>s. (g(f x) = x)) \<and> (f ` s = t) \<and> continuous_on s f \<and>
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4965
     (\<forall>y\<in>t. (f(g y) = y)) \<and> (g ` t = s) \<and> continuous_on t g"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4966
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  4967
definition homeomorphic :: "((real^'a::finite) set) \<Rightarrow> ((real^'b::finite) set) \<Rightarrow> bool" (infixr "homeomorphic" 60) where
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4968
  homeomorphic_def: "s homeomorphic t \<equiv> (\<exists>f g. homeomorphism s t f g)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4969
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4970
lemma homeomorphic_refl: "s homeomorphic s"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4971
  unfolding homeomorphic_def
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4972
  unfolding homeomorphism_def
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4973
  using continuous_on_id
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4974
  apply(rule_tac x = "(\<lambda>x::real^'a.x)" in exI)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4975
  apply(rule_tac x = "(\<lambda>x::real^'b.x)" in exI)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4976
  by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4977
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  4978
lemma homeomorphic_sym:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4979
 "s homeomorphic t \<longleftrightarrow> t homeomorphic s"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4980
unfolding homeomorphic_def
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4981
unfolding homeomorphism_def
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4982
by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4983
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  4984
lemma homeomorphic_trans:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4985
  assumes "s homeomorphic t" "t homeomorphic u" shows "s homeomorphic u"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4986
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4987
  obtain f1 g1 where fg1:"\<forall>x\<in>s. g1 (f1 x) = x"  "f1 ` s = t" "continuous_on s f1" "\<forall>y\<in>t. f1 (g1 y) = y" "g1 ` t = s" "continuous_on t g1"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4988
    using assms(1) unfolding homeomorphic_def homeomorphism_def by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4989
  obtain f2 g2 where fg2:"\<forall>x\<in>t. g2 (f2 x) = x"  "f2 ` t = u" "continuous_on t f2" "\<forall>y\<in>u. f2 (g2 y) = y" "g2 ` u = t" "continuous_on u g2"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4990
    using assms(2) unfolding homeomorphic_def homeomorphism_def by auto
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  4991
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4992
  { fix x assume "x\<in>s" hence "(g1 \<circ> g2) ((f2 \<circ> f1) x) = x" using fg1(1)[THEN bspec[where x=x]] and fg2(1)[THEN bspec[where x="f1 x"]] and fg1(2) by auto }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4993
  moreover have "(f2 \<circ> f1) ` s = u" using fg1(2) fg2(2) by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4994
  moreover have "continuous_on s (f2 \<circ> f1)" using continuous_on_compose[OF fg1(3)] and fg2(3) unfolding fg1(2) by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4995
  moreover { fix y assume "y\<in>u" hence "(f2 \<circ> f1) ((g1 \<circ> g2) y) = y" using fg2(4)[THEN bspec[where x=y]] and fg1(4)[THEN bspec[where x="g2 y"]] and fg2(5) by auto }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4996
  moreover have "(g1 \<circ> g2) ` u = s" using fg1(5) fg2(5) by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4997
  moreover have "continuous_on u (g1 \<circ> g2)" using continuous_on_compose[OF fg2(6)] and fg1(6)  unfolding fg2(5) by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4998
  ultimately show ?thesis unfolding homeomorphic_def homeomorphism_def apply(rule_tac x="f2 \<circ> f1" in exI) apply(rule_tac x="g1 \<circ> g2" in exI) by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  4999
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5000
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  5001
lemma homeomorphic_minimal:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5002
 "s homeomorphic t \<longleftrightarrow>
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5003
    (\<exists>f g. (\<forall>x\<in>s. f(x) \<in> t \<and> (g(f(x)) = x)) \<and>
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5004
           (\<forall>y\<in>t. g(y) \<in> s \<and> (f(g(y)) = y)) \<and>
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5005
           continuous_on s f \<and> continuous_on t g)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5006
unfolding homeomorphic_def homeomorphism_def
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5007
apply auto apply (rule_tac x=f in exI) apply (rule_tac x=g in exI)
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  5008
apply auto apply (rule_tac x=f in exI) apply (rule_tac x=g in exI) apply auto
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5009
unfolding image_iff
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  5010
apply(erule_tac x="g x" in ballE) apply(erule_tac x="x" in ballE)
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5011
apply auto apply(rule_tac x="g x" in bexI) apply auto
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  5012
apply(erule_tac x="f x" in ballE) apply(erule_tac x="x" in ballE)
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5013
apply auto apply(rule_tac x="f x" in bexI) by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5014
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5015
subsection{* Relatively weak hypotheses if a set is compact.                           *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5016
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5017
definition "inv_on f s = (\<lambda>x. SOME y. y\<in>s \<and> f y = x)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5018
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  5019
lemma assumes "inj_on f s" "x\<in>s"
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  5020
  shows "inv_on f s (f x) = x"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5021
 using assms unfolding inj_on_def inv_on_def by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5022
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  5023
lemma homeomorphism_compact:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5024
  assumes "compact s" "continuous_on s f"  "f ` s = t"  "inj_on f s"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5025
  shows "\<exists>g. homeomorphism s t f g"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5026
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5027
  def g \<equiv> "\<lambda>x. SOME y. y\<in>s \<and> f y = x"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5028
  have g:"\<forall>x\<in>s. g (f x) = x" using assms(3) assms(4)[unfolded inj_on_def] unfolding g_def by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5029
  { fix y assume "y\<in>t"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5030
    then obtain x where x:"f x = y" "x\<in>s" using assms(3) by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5031
    hence "g (f x) = x" using g by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5032
    hence "f (g y) = y" unfolding x(1)[THEN sym] by auto  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5033
  hence g':"\<forall>x\<in>t. f (g x) = x" by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5034
  moreover
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5035
  { fix x
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5036
    have "x\<in>s \<Longrightarrow> x \<in> g ` t" using g[THEN bspec[where x=x]] unfolding image_iff using assms(3) by(auto intro!: bexI[where x="f x"])
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  5037
    moreover
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5038
    { assume "x\<in>g ` t"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5039
      then obtain y where y:"y\<in>t" "g y = x" by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5040
      then obtain x' where x':"x'\<in>s" "f x' = y" using assms(3) by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5041
      hence "x \<in> s" unfolding g_def using someI2[of "\<lambda>b. b\<in>s \<and> f b = y" x' "\<lambda>x. x\<in>s"] unfolding y(2)[THEN sym] and g_def by auto }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5042
    ultimately have "x\<in>s \<longleftrightarrow> x \<in> g ` t" by auto  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5043
  hence "g ` t = s" by auto
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  5044
  ultimately
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  5045
  show ?thesis unfolding homeomorphism_def homeomorphic_def
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  5046
    apply(rule_tac x=g in exI) using g and assms(3) and continuous_on_inverse[OF assms(2,1), of g, unfolded assms(3)] and assms(2) by auto
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  5047
qed
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  5048
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  5049
lemma homeomorphic_compact:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5050
 "compact s \<Longrightarrow> continuous_on s f \<Longrightarrow> (f ` s = t) \<Longrightarrow> inj_on f s
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5051
          \<Longrightarrow> s homeomorphic t"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5052
  unfolding homeomorphic_def by(metis homeomorphism_compact)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5053
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5054
text{* Preservation of topological properties.                                   *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5055
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  5056
lemma homeomorphic_compactness:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5057
 "s homeomorphic t ==> (compact s \<longleftrightarrow> compact t)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5058
unfolding homeomorphic_def homeomorphism_def
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5059
by (metis compact_continuous_image)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5060
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5061
text{* Results on translation, scaling etc.                                      *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5062
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  5063
lemma homeomorphic_scaling:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5064
  assumes "c \<noteq> 0"  shows "s homeomorphic ((\<lambda>x. c *s x) ` s)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5065
  unfolding homeomorphic_minimal
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5066
  apply(rule_tac x="\<lambda>x. c *s x" in exI)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5067
  apply(rule_tac x="\<lambda>x. (1 / c) *s x" in exI)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5068
  apply auto unfolding vector_smult_assoc using assms apply auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5069
  using continuous_on_cmul[OF continuous_on_id] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5070
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  5071
lemma homeomorphic_translation:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5072
 "s homeomorphic ((\<lambda>x. a + x) ` s)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5073
  unfolding homeomorphic_minimal
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5074
  apply(rule_tac x="\<lambda>x. a + x" in exI)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5075
  apply(rule_tac x="\<lambda>x. -a + x" in exI)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5076
  using continuous_on_add[OF continuous_on_const continuous_on_id] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5077
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  5078
lemma homeomorphic_affinity:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5079
  assumes "c \<noteq> 0"  shows "s homeomorphic ((\<lambda>x. a + c *s x) ` s)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5080
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5081
  have *:"op + a ` op *s c ` s = (\<lambda>x. a + c *s x) ` s" by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5082
  show ?thesis
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5083
    using homeomorphic_trans
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5084
    using homeomorphic_scaling[OF assms, of s]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5085
    using homeomorphic_translation[of "(\<lambda>x. c *s x) ` s" a] unfolding * by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5086
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5087
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  5088
lemma homeomorphic_balls: fixes a b ::"real^'a::finite"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5089
  assumes "0 < d"  "0 < e"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5090
  shows "(ball a d) homeomorphic  (ball b e)" (is ?th)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5091
        "(cball a d) homeomorphic (cball b e)" (is ?cth)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5092
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5093
  have *:"\<bar>e / d\<bar> > 0" "\<bar>d / e\<bar> >0" using assms using divide_pos_pos by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5094
  show ?th unfolding homeomorphic_minimal
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5095
    apply(rule_tac x="\<lambda>x. b + (e/d) *s (x - a)" in exI)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5096
    apply(rule_tac x="\<lambda>x. a + (d/e) *s (x - b)" in exI)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5097
    apply (auto simp add: dist_sym) unfolding dist_def and vector_smult_assoc using assms apply auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5098
    unfolding norm_minus_cancel and norm_mul
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  5099
    using continuous_on_add[OF continuous_on_const continuous_on_cmul[OF continuous_on_sub[OF continuous_on_id continuous_on_const]]]
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5100
    apply (auto simp add: dist_sym)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5101
    using pos_less_divide_eq[OF *(1), THEN sym] unfolding real_mult_commute[of _ "\<bar>e / d\<bar>"]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5102
    using pos_less_divide_eq[OF *(2), THEN sym] unfolding real_mult_commute[of _ "\<bar>d / e\<bar>"]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5103
    by (auto simp add: dist_sym)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5104
next
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5105
  have *:"\<bar>e / d\<bar> > 0" "\<bar>d / e\<bar> >0" using assms using divide_pos_pos by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5106
  show ?cth unfolding homeomorphic_minimal
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5107
    apply(rule_tac x="\<lambda>x. b + (e/d) *s (x - a)" in exI)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5108
    apply(rule_tac x="\<lambda>x. a + (d/e) *s (x - b)" in exI)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5109
    apply (auto simp add: dist_sym) unfolding dist_def and vector_smult_assoc using assms apply auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5110
    unfolding norm_minus_cancel and norm_mul
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  5111
    using continuous_on_add[OF continuous_on_const continuous_on_cmul[OF continuous_on_sub[OF continuous_on_id continuous_on_const]]]
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5112
    apply auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5113
    using pos_le_divide_eq[OF *(1), THEN sym] unfolding real_mult_commute[of _ "\<bar>e / d\<bar>"]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5114
    using pos_le_divide_eq[OF *(2), THEN sym] unfolding real_mult_commute[of _ "\<bar>d / e\<bar>"]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5115
    by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5116
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5117
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5118
text{* "Isometry" (up to constant bounds) of injective linear map etc.           *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5119
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  5120
lemma cauchy_isometric:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5121
  assumes e:"0 < e" and s:"subspace s" and f:"linear f" and normf:"\<forall>x\<in>s. norm(f x) \<ge> e * norm(x)" and xs:"\<forall>n::nat. x n \<in> s" and cf:"cauchy(f o x)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5122
  shows "cauchy x"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5123
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5124
  { fix d::real assume "d>0"
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  5125
    then obtain N where N:"\<forall>n\<ge>N. norm (f (x n) - f (x N)) < e * d"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5126
      using cf[unfolded cauchy o_def dist_def, THEN spec[where x="e*d"]] and e and mult_pos_pos[of e d] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5127
    { fix n assume "n\<ge>N"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5128
      hence "norm (f (x n - x N)) < e * d" using N[THEN spec[where x=n]] unfolding linear_sub[OF f, THEN sym] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5129
      moreover have "e * norm (x n - x N) \<le> norm (f (x n - x N))"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5130
	using subspace_sub[OF s, of "x n" "x N"] using xs[THEN spec[where x=N]] and xs[THEN spec[where x=n]]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5131
	using normf[THEN bspec[where x="x n - x N"]] by auto
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  5132
      ultimately have "norm (x n - x N) < d" using `e>0`
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5133
	using mult_left_less_imp_less[of e "norm (x n - x N)" d] by auto   }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5134
    hence "\<exists>N. \<forall>n\<ge>N. norm (x n - x N) < d" by auto }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5135
  thus ?thesis unfolding cauchy and dist_def by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5136
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5137
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  5138
lemma complete_isometric_image:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5139
  assumes "0 < e" and s:"subspace s" and f:"linear f" and normf:"\<forall>x\<in>s. norm(f x) \<ge> e * norm(x)" and cs:"complete s"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5140
  shows "complete(f ` s)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5141
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5142
  { fix g assume as:"\<forall>n::nat. g n \<in> f ` s" and cfg:"cauchy g"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5143
    then obtain x where "\<forall>n. x n \<in> s \<and> g n = f (x n)" unfolding image_iff and Bex_def
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5144
      using choice[of "\<lambda> n xa. xa \<in> s \<and> g n = f xa"] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5145
    hence x:"\<forall>n. x n \<in> s"  "\<forall>n. g n = f (x n)" by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5146
    hence "f \<circ> x = g" unfolding expand_fun_eq by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5147
    then obtain l where "l\<in>s" and l:"(x ---> l) sequentially"
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  5148
      using cs[unfolded complete_def, THEN spec[where x="x"]]
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5149
      using cauchy_isometric[OF `0<e` s f normf] and cfg and x(1) by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5150
    hence "\<exists>l\<in>f ` s. (g ---> l) sequentially"
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  5151
      using linear_continuous_at[OF f, unfolded continuous_at_sequentially, THEN spec[where x=x], of l]
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5152
      unfolding `f \<circ> x = g` by auto  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5153
  thus ?thesis unfolding complete_def by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5154
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5155
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5156
lemma dist_0_norm:"dist 0 x = norm x" unfolding dist_def by(auto simp add: norm_minus_cancel)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5157
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  5158
lemma injective_imp_isometric: fixes f::"real^'m::finite \<Rightarrow> real^'n::finite"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5159
  assumes s:"closed s"  "subspace s"  and f:"linear f" "\<forall>x\<in>s. (f x = 0) \<longrightarrow> (x = 0)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5160
  shows "\<exists>e>0. \<forall>x\<in>s. norm (f x) \<ge> e * norm(x)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5161
proof(cases "s \<subseteq> {0::real^'m}")
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5162
  case True
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5163
  { fix x assume "x \<in> s"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5164
    hence "x = 0" using True by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5165
    hence "norm x \<le> norm (f x)" by auto  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5166
  thus ?thesis by(auto intro!: exI[where x=1])
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5167
next
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5168
  case False
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5169
  then obtain a where a:"a\<noteq>0" "a\<in>s" by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5170
  from False have "s \<noteq> {}" by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5171
  let ?S = "{f x| x. (x \<in> s \<and> norm x = norm a)}"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5172
  let ?S' = "{x::real^'m. x\<in>s \<and> norm x = norm a}"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5173
  let ?S'' = "{x::real^'m. norm x = norm a}"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5174
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5175
  have "?S'' = frontier(cball 0 (norm a))" unfolding frontier_cball and dist_def by (auto simp add: norm_minus_cancel)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5176
  hence "compact ?S''" using compact_frontier[OF compact_cball, of 0 "norm a"] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5177
  moreover have "?S' = s \<inter> ?S''" by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5178
  ultimately have "compact ?S'" using closed_inter_compact[of s ?S''] using s(1) by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5179
  moreover have *:"f ` ?S' = ?S" by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5180
  ultimately have "compact ?S" using compact_continuous_image[OF linear_continuous_on[OF f(1)], of ?S'] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5181
  hence "closed ?S" using compact_imp_closed by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5182
  moreover have "?S \<noteq> {}" using a by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5183
  ultimately obtain b' where "b'\<in>?S" "\<forall>y\<in>?S. norm b' \<le> norm y" using distance_attains_inf[of ?S 0] unfolding dist_0_norm by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5184
  then obtain b where "b\<in>s" and ba:"norm b = norm a" and b:"\<forall>x\<in>{x \<in> s. norm x = norm a}. norm (f b) \<le> norm (f x)" unfolding *[THEN sym] unfolding image_iff by auto
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  5185
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5186
  let ?e = "norm (f b) / norm b"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5187
  have "norm b > 0" using ba and a and norm_ge_zero by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5188
  moreover have "norm (f b) > 0" using f(2)[THEN bspec[where x=b], OF `b\<in>s`] using `norm b >0` unfolding zero_less_norm_iff by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5189
  ultimately have "0 < norm (f b) / norm b" by(simp only: divide_pos_pos)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5190
  moreover
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5191
  { fix x assume "x\<in>s"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5192
    hence "norm (f b) / norm b * norm x \<le> norm (f x)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5193
    proof(cases "x=0")
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5194
      case True thus "norm (f b) / norm b * norm x \<le> norm (f x)" by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5195
    next
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5196
      case False
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  5197
      hence *:"0 < norm a / norm x" using `a\<noteq>0` unfolding zero_less_norm_iff[THEN sym] by(simp only: divide_pos_pos)
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5198
      have "\<forall>c. \<forall>x\<in>s. c *s x \<in> s" using s[unfolded subspace_def] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5199
      hence "(norm a / norm x) *s x \<in> {x \<in> s. norm x = norm a}" using `x\<in>s` and `x\<noteq>0` by auto
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  5200
      thus "norm (f b) / norm b * norm x \<le> norm (f x)" using b[THEN bspec[where x="(norm a / norm x) *s x"]]
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5201
	unfolding linear_cmul[OF f(1)] and norm_mul and ba using `x\<noteq>0` `a\<noteq>0`
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5202
	by (auto simp add: real_mult_commute pos_le_divide_eq pos_divide_le_eq)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5203
    qed }
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  5204
  ultimately
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5205
  show ?thesis by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5206
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5207
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  5208
lemma closed_injective_image_subspace:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5209
  assumes "subspace s" "linear f" "\<forall>x\<in>s. f x = 0 --> x = 0" "closed s"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5210
  shows "closed(f ` s)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5211
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5212
  obtain e where "e>0" and e:"\<forall>x\<in>s. e * norm x \<le> norm (f x)" using injective_imp_isometric[OF assms(4,1,2,3)] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5213
  show ?thesis using complete_isometric_image[OF `e>0` assms(1,2) e] and assms(4)
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  5214
    unfolding complete_eq_closed[THEN sym] by auto
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5215
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5216
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5217
subsection{* Some properties of a canonical subspace.                                  *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5218
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  5219
lemma subspace_substandard:
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  5220
 "subspace {x::real^'n. (\<forall>i. P i \<longrightarrow> x$i = 0)}"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5221
  unfolding subspace_def by(auto simp add: vector_add_component vector_smult_component elim!: ballE)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5222
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  5223
lemma closed_substandard:
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  5224
 "closed {x::real^'n::finite. \<forall>i. P i --> x$i = 0}" (is "closed ?A")
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5225
proof-
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  5226
  let ?D = "{i. P i}"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5227
  let ?Bs = "{{x::real^'n. basis i \<bullet> x = 0}| i. i \<in> ?D}"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5228
  { fix x
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5229
    { assume "x\<in>?A"
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  5230
      hence x:"\<forall>i\<in>?D. x $ i = 0" by auto
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5231
      hence "x\<in> \<Inter> ?Bs" by(auto simp add: dot_basis x) }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5232
    moreover
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5233
    { assume x:"x\<in>\<Inter>?Bs"
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  5234
      { fix i assume i:"i \<in> ?D"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5235
	then obtain B where BB:"B \<in> ?Bs" and B:"B = {x::real^'n. basis i \<bullet> x = 0}" by auto
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  5236
	hence "x $ i = 0" unfolding B using x unfolding dot_basis by auto  }
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5237
      hence "x\<in>?A" by auto }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5238
    ultimately have "x\<in>?A \<longleftrightarrow> x\<in> \<Inter>?Bs" by auto }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5239
  hence "?A = \<Inter> ?Bs" by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5240
  thus ?thesis by(auto simp add: closed_Inter closed_hyperplane)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5241
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5242
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5243
lemma dim_substandard:
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  5244
  shows "dim {x::real^'n::finite. \<forall>i. i \<notin> d \<longrightarrow> x$i = 0} = card d" (is "dim ?A = _")
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5245
proof-
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  5246
  let ?D = "UNIV::'n set"
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  5247
  let ?B = "(basis::'n\<Rightarrow>real^'n) ` d"
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  5248
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  5249
    let ?bas = "basis::'n \<Rightarrow> real^'n"
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  5250
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  5251
  have "?B \<subseteq> ?A" by auto
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5252
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5253
  moreover
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5254
  { fix x::"real^'n" assume "x\<in>?A"
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  5255
    with finite[of d]
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  5256
    have "x\<in> span ?B"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5257
    proof(induct d arbitrary: x)
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  5258
      case empty hence "x=0" unfolding Cart_eq by auto
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5259
      thus ?case using subspace_0[OF subspace_span[of "{}"]] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5260
    next
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  5261
      case (insert k F)
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  5262
      hence *:"\<forall>i. i \<notin> insert k F \<longrightarrow> x $ i = 0" by auto
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  5263
      have **:"F \<subseteq> insert k F" by auto
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  5264
      def y \<equiv> "x - x$k *s basis k"
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  5265
      have y:"x = y + (x$k) *s basis k" unfolding y_def by auto
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  5266
      { fix i assume i':"i \<notin> F"
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  5267
	hence "y $ i = 0" unfolding y_def unfolding vector_minus_component
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  5268
	  and vector_smult_component and basis_component
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  5269
	  using *[THEN spec[where x=i]] by auto }
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  5270
      hence "y \<in> span (basis ` (insert k F))" using insert(3)
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  5271
	using span_mono[of "?bas ` F" "?bas ` (insert k F)"]
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5272
	using image_mono[OF **, of basis] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5273
      moreover
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  5274
      have "basis k \<in> span (?bas ` (insert k F))" by(rule span_superset, auto)
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  5275
      hence "x$k *s basis k \<in> span (?bas ` (insert k F))" using span_mul by auto
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  5276
      ultimately
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  5277
      have "y + x$k *s basis k \<in> span (?bas ` (insert k F))"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5278
	using span_add by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5279
      thus ?case using y by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5280
    qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5281
  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5282
  hence "?A \<subseteq> span ?B" by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5283
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5284
  moreover
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5285
  { fix x assume "x \<in> ?B"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5286
    hence "x\<in>{(basis i)::real^'n |i. i \<in> ?D}" using assms by auto  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5287
  hence "independent ?B" using independent_mono[OF independent_stdbasis, of ?B] and assms by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5288
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5289
  moreover
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  5290
  have "d \<subseteq> ?D" unfolding subset_eq using assms by auto
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  5291
  hence *:"inj_on (basis::'n\<Rightarrow>real^'n) d" using subset_inj_on[OF basis_inj, of "d"] by auto
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  5292
  have "?B hassize (card d)" unfolding hassize_def and card_image[OF *] by auto
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  5293
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  5294
  ultimately show ?thesis using dim_unique[of "basis ` d" ?A] by auto
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5295
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5296
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5297
text{* Hence closure and completeness of all subspaces.                          *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5298
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  5299
lemma closed_subspace_lemma: "n \<le> card (UNIV::'n::finite set) \<Longrightarrow> \<exists>A::'n set. card A = n"
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  5300
apply (induct n)
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  5301
apply (rule_tac x="{}" in exI, simp)
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  5302
apply clarsimp
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  5303
apply (subgoal_tac "\<exists>x. x \<notin> A")
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  5304
apply (erule exE)
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  5305
apply (rule_tac x="insert x A" in exI, simp)
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  5306
apply (subgoal_tac "A \<noteq> UNIV", auto)
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  5307
done
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  5308
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  5309
lemma closed_subspace: fixes s::"(real^'n::finite) set"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5310
  assumes "subspace s" shows "closed s"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5311
proof-
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  5312
  have "dim s \<le> card (UNIV :: 'n set)" using dim_subset_univ by auto
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  5313
  then obtain d::"'n set" where t: "card d = dim s"
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  5314
    using closed_subspace_lemma by auto
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  5315
  let ?t = "{x::real^'n. \<forall>i. i \<notin> d \<longrightarrow> x$i = 0}"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5316
  obtain f where f:"linear f"  "f ` ?t = s" "inj_on f ?t"
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  5317
    using subspace_isomorphism[OF subspace_substandard[of "\<lambda>i. i \<notin> d"] assms]
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  5318
    using dim_substandard[of d] and t by auto
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5319
  have "\<forall>x\<in>?t. f x = 0 \<longrightarrow> x = 0" using linear_0[OF f(1)] using f(3)[unfolded inj_on_def]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5320
    by(erule_tac x=0 in ballE) auto
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  5321
  moreover have "closed ?t" using closed_substandard .
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  5322
  moreover have "subspace ?t" using subspace_substandard .
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  5323
  ultimately show ?thesis using closed_injective_image_subspace[of ?t f]
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5324
    unfolding f(2) using f(1) by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5325
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5326
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  5327
lemma complete_subspace:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5328
  "subspace s ==> complete s"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5329
  using complete_eq_closed closed_subspace
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5330
  by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5331
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  5332
lemma dim_closure:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5333
 "dim(closure s) = dim s" (is "?dc = ?d")
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5334
proof-
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5335
  have "?dc \<le> ?d" using closure_minimal[OF span_inc, of s]
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  5336
    using closed_subspace[OF subspace_span, of s]
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5337
    using dim_subset[of "closure s" "span s"] unfolding dim_span by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5338
  thus ?thesis using dim_subset[OF closure_subset, of s] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5339
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5340
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5341
text{* Affine transformations of intervals.                                      *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5342
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  5343
lemma affinity_inverses:
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  5344
  assumes m0: "m \<noteq> (0::'a::field)"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5345
  shows "(\<lambda>x. m *s x + c) o (\<lambda>x. inverse(m) *s x + (-(inverse(m) *s c))) = id"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5346
  "(\<lambda>x. inverse(m) *s x + (-(inverse(m) *s c))) o (\<lambda>x. m *s x + c) = id"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5347
  using m0
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5348
apply (auto simp add: expand_fun_eq vector_add_ldistrib vector_smult_assoc)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5349
by (simp add: vector_smult_lneg[symmetric] vector_smult_assoc vector_sneg_minus1[symmetric])
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5350
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  5351
lemma real_affinity_le:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5352
 "0 < (m::'a::ordered_field) ==> (m * x + c \<le> y \<longleftrightarrow> x \<le> inverse(m) * y + -(c / m))"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5353
  by (simp add: field_simps inverse_eq_divide)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5354
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  5355
lemma real_le_affinity:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5356
 "0 < (m::'a::ordered_field) ==> (y \<le> m * x + c \<longleftrightarrow> inverse(m) * y + -(c / m) \<le> x)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5357
  by (simp add: field_simps inverse_eq_divide)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5358
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  5359
lemma real_affinity_lt:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5360
 "0 < (m::'a::ordered_field) ==> (m * x + c < y \<longleftrightarrow> x < inverse(m) * y + -(c / m))"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5361
  by (simp add: field_simps inverse_eq_divide)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5362
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  5363
lemma real_lt_affinity:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5364
 "0 < (m::'a::ordered_field) ==> (y < m * x + c \<longleftrightarrow> inverse(m) * y + -(c / m) < x)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5365
  by (simp add: field_simps inverse_eq_divide)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5366
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  5367
lemma real_affinity_eq:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5368
 "(m::'a::ordered_field) \<noteq> 0 ==> (m * x + c = y \<longleftrightarrow> x = inverse(m) * y + -(c / m))"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5369
  by (simp add: field_simps inverse_eq_divide)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5370
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  5371
lemma real_eq_affinity:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5372
 "(m::'a::ordered_field) \<noteq> 0 ==> (y = m * x + c  \<longleftrightarrow> inverse(m) * y + -(c / m) = x)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5373
  by (simp add: field_simps inverse_eq_divide)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5374
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  5375
lemma vector_affinity_eq:
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  5376
  assumes m0: "(m::'a::field) \<noteq> 0"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5377
  shows "m *s x + c = y \<longleftrightarrow> x = inverse m *s y + -(inverse m *s c)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5378
proof
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5379
  assume h: "m *s x + c = y"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5380
  hence "m *s x = y - c" by (simp add: ring_simps)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5381
  hence "inverse m *s (m *s x) = inverse m *s (y - c)" by simp
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  5382
  then show "x = inverse m *s y + - (inverse m *s c)"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5383
    using m0 by (simp add: vector_smult_assoc vector_ssub_ldistrib)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5384
next
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5385
  assume h: "x = inverse m *s y + - (inverse m *s c)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5386
  show "m *s x + c = y" unfolding h diff_minus[symmetric]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5387
    using m0 by (simp add: vector_smult_assoc vector_ssub_ldistrib)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5388
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5389
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  5390
lemma vector_eq_affinity:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5391
 "(m::'a::field) \<noteq> 0 ==> (y = m *s x + c \<longleftrightarrow> inverse(m) *s y + -(inverse(m) *s c) = x)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5392
  using vector_affinity_eq[where m=m and x=x and y=y and c=c]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5393
  by metis
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5394
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5395
lemma image_affinity_interval: fixes m::real
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  5396
  fixes a b c :: "real^'n::finite"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5397
  shows "(\<lambda>x. m *s x + c) ` {a .. b} =
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5398
            (if {a .. b} = {} then {}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5399
            else (if 0 \<le> m then {m *s a + c .. m *s b + c}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5400
            else {m *s b + c .. m *s a + c}))"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5401
proof(cases "m=0")
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5402
  { fix x assume "x \<le> c" "c \<le> x"
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  5403
    hence "x=c" unfolding vector_less_eq_def and Cart_eq by (auto intro: order_antisym) }
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5404
  moreover case True
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5405
  moreover have "c \<in> {m *s a + c..m *s b + c}" unfolding True by(auto simp add: vector_less_eq_def)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5406
  ultimately show ?thesis by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5407
next
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5408
  case False
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5409
  { fix y assume "a \<le> y" "y \<le> b" "m > 0"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5410
    hence "m *s a + c \<le> m *s y + c"  "m *s y + c \<le> m *s b + c"
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  5411
      unfolding vector_less_eq_def by(auto simp add: vector_smult_component vector_add_component)
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5412
  } moreover
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5413
  { fix y assume "a \<le> y" "y \<le> b" "m < 0"
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  5414
    hence "m *s b + c \<le> m *s y + c"  "m *s y + c \<le> m *s a + c"
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  5415
      unfolding vector_less_eq_def by(auto simp add: vector_smult_component vector_add_component mult_left_mono_neg elim!:ballE)
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5416
  } moreover
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5417
  { fix y assume "m > 0"  "m *s a + c \<le> y"  "y \<le> m *s b + c"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5418
    hence "y \<in> (\<lambda>x. m *s x + c) ` {a..b}"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5419
      unfolding image_iff Bex_def mem_interval vector_less_eq_def
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5420
      apply(auto simp add: vector_smult_component vector_add_component vector_minus_component vector_smult_assoc pth_3[symmetric]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5421
	intro!: exI[where x="(1 / m) *s (y - c)"])
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  5422
      by(auto simp add: pos_le_divide_eq pos_divide_le_eq real_mult_commute diff_le_iff)
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5423
  } moreover
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5424
  { fix y assume "m *s b + c \<le> y" "y \<le> m *s a + c" "m < 0"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5425
    hence "y \<in> (\<lambda>x. m *s x + c) ` {a..b}"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5426
      unfolding image_iff Bex_def mem_interval vector_less_eq_def
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5427
      apply(auto simp add: vector_smult_component vector_add_component vector_minus_component vector_smult_assoc pth_3[symmetric]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5428
	intro!: exI[where x="(1 / m) *s (y - c)"])
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  5429
      by(auto simp add: neg_le_divide_eq neg_divide_le_eq real_mult_commute diff_le_iff)
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5430
  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5431
  ultimately show ?thesis using False by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5432
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5433
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5434
subsection{* Banach fixed point theorem (not really topological...)                    *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5435
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  5436
lemma banach_fix:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5437
  assumes s:"complete s" "s \<noteq> {}" and c:"0 \<le> c" "c < 1" and f:"(f ` s) \<subseteq> s" and
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5438
          lipschitz:"\<forall>x\<in>s. \<forall>y\<in>s. dist (f x) (f y) \<le> c * dist x y"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5439
  shows "\<exists>! x\<in>s. (f x = x)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5440
proof-
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  5441
  have "1 - c > 0" using c by auto
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5442
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5443
  from s(2) obtain z0 where "z0 \<in> s" by auto
30974
415f2fe37f62 removed confusion around funpow
haftmann
parents: 30952
diff changeset
  5444
  def z \<equiv> "\<lambda>n. (f ^^ n) z0"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5445
  { fix n::nat
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5446
    have "z n \<in> s" unfolding z_def
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5447
    proof(induct n) case 0 thus ?case using `z0 \<in>s` by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5448
    next case Suc thus ?case using f by auto qed }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5449
  note z_in_s = this
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5450
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5451
  def d \<equiv> "dist (z 0) (z 1)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5452
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5453
  have fzn:"\<And>n. f (z n) = z (Suc n)" unfolding z_def by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5454
  { fix n::nat
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5455
    have "dist (z n) (z (Suc n)) \<le> (c ^ n) * d"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5456
    proof(induct n)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5457
      case 0 thus ?case unfolding d_def by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5458
    next
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5459
      case (Suc m)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5460
      hence "c * dist (z m) (z (Suc m)) \<le> c ^ Suc m * d"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5461
	using `0 \<le> c` using mult_mono1_class.mult_mono1[of "dist (z m) (z (Suc m))" "c ^ m * d" c] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5462
      thus ?case using lipschitz[THEN bspec[where x="z m"], OF z_in_s, THEN bspec[where x="z (Suc m)"], OF z_in_s]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5463
	unfolding fzn and mult_le_cancel_left by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5464
    qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5465
  } note cf_z = this
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5466
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5467
  { fix n m::nat
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5468
    have "(1 - c) * dist (z m) (z (m+n)) \<le> (c ^ m) * d * (1 - c ^ n)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5469
    proof(induct n)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5470
      case 0 show ?case by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5471
    next
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5472
      case (Suc k)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5473
      have "(1 - c) * dist (z m) (z (m + Suc k)) \<le> (1 - c) * (dist (z m) (z (m + k)) + dist (z (m + k)) (z (Suc (m + k))))"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5474
	using dist_triangle and c by(auto simp add: dist_triangle)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5475
      also have "\<dots> \<le> (1 - c) * (dist (z m) (z (m + k)) + c ^ (m + k) * d)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5476
	using cf_z[of "m + k"] and c by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5477
      also have "\<dots> \<le> c ^ m * d * (1 - c ^ k) + (1 - c) * c ^ (m + k) * d"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5478
	using Suc by (auto simp add: ring_simps)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5479
      also have "\<dots> = (c ^ m) * (d * (1 - c ^ k) + (1 - c) * c ^ k * d)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5480
	unfolding power_add by (auto simp add: ring_simps)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5481
      also have "\<dots> \<le> (c ^ m) * d * (1 - c ^ Suc k)"
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  5482
	using c by (auto simp add: ring_simps dist_pos_le)
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5483
      finally show ?case by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5484
    qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5485
  } note cf_z2 = this
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5486
  { fix e::real assume "e>0"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5487
    hence "\<exists>N. \<forall>m n. N \<le> m \<and> N \<le> n \<longrightarrow> dist (z m) (z n) < e"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5488
    proof(cases "d = 0")
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5489
      case True
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5490
      hence "\<And>n. z n = z0" using cf_z2[of 0] and c unfolding z_def by (auto simp add: pos_prod_le[OF `1 - c > 0`] dist_le_0)
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  5491
      thus ?thesis using `e>0` by auto
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5492
    next
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5493
      case False hence "d>0" unfolding d_def using dist_pos_le[of "z 0" "z 1"]
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  5494
	by (metis False d_def real_less_def)
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  5495
      hence "0 < e * (1 - c) / d" using `e>0` and `1-c>0`
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5496
	using divide_pos_pos[of "e * (1 - c)" d] and mult_pos_pos[of e "1 - c"] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5497
      then obtain N where N:"c ^ N < e * (1 - c) / d" using real_arch_pow_inv[of "e * (1 - c) / d" c] and c by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5498
      { fix m n::nat assume "m>n" and as:"m\<ge>N" "n\<ge>N"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5499
	have *:"c ^ n \<le> c ^ N" using `n\<ge>N` and c using power_decreasing[OF `n\<ge>N`, of c] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5500
	have "1 - c ^ (m - n) > 0" using c and power_strict_mono[of c 1 "m - n"] using `m>n` by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5501
	hence **:"d * (1 - c ^ (m - n)) / (1 - c) > 0"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5502
	  using real_mult_order[OF `d>0`, of "1 - c ^ (m - n)"]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5503
	  using divide_pos_pos[of "d * (1 - c ^ (m - n))" "1 - c"]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5504
	  using `0 < 1 - c` by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5505
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  5506
	have "dist (z m) (z n) \<le> c ^ n * d * (1 - c ^ (m - n)) / (1 - c)"
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  5507
	  using cf_z2[of n "m - n"] and `m>n` unfolding pos_le_divide_eq[OF `1-c>0`]
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5508
	  by (auto simp add: real_mult_commute dist_sym)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5509
	also have "\<dots> \<le> c ^ N * d * (1 - c ^ (m - n)) / (1 - c)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5510
	  using mult_right_mono[OF * order_less_imp_le[OF **]]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5511
	  unfolding real_mult_assoc by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5512
	also have "\<dots> < (e * (1 - c) / d) * d * (1 - c ^ (m - n)) / (1 - c)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5513
	  using mult_strict_right_mono[OF N **] unfolding real_mult_assoc by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5514
	also have "\<dots> = e * (1 - c ^ (m - n))" using c and `d>0` and `1 - c > 0` by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5515
	also have "\<dots> \<le> e" using c and `1 - c ^ (m - n) > 0` and `e>0` using mult_right_le_one_le[of e "1 - c ^ (m - n)"] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5516
	finally have  "dist (z m) (z n) < e" by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5517
      } note * = this
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5518
      { fix m n::nat assume as:"N\<le>m" "N\<le>n"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5519
	hence "dist (z n) (z m) < e"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5520
	proof(cases "n = m")
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5521
	  case True thus ?thesis using `e>0` by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5522
	next
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5523
	  case False thus ?thesis using as and *[of n m] *[of m n] unfolding nat_neq_iff by (auto simp add: dist_sym)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5524
	qed }
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  5525
      thus ?thesis by auto
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5526
    qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5527
  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5528
  hence "cauchy z" unfolding cauchy_def by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5529
  then obtain x where "x\<in>s" and x:"(z ---> x) sequentially" using s(1)[unfolded compact_def complete_def, THEN spec[where x=z]] and z_in_s by auto
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  5530
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5531
  def e \<equiv> "dist (f x) x"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5532
  have "e = 0" proof(rule ccontr)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5533
    assume "e \<noteq> 0" hence "e>0" unfolding e_def using dist_pos_le[of "f x" x]
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  5534
      by (metis dist_eq_0 dist_nz dist_sym e_def)
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5535
    then obtain N where N:"\<forall>n\<ge>N. dist (z n) x < e / 2"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5536
      using x[unfolded Lim_sequentially, THEN spec[where x="e/2"]] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5537
    hence N':"dist (z N) x < e / 2" by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5538
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  5539
    have *:"c * dist (z N) x \<le> dist (z N) x" unfolding mult_le_cancel_right2
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5540
      using dist_pos_le[of "z N" x] and c
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  5541
      by (metis dist_eq_0 dist_nz dist_sym order_less_asym real_less_def)
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5542
    have "dist (f (z N)) (f x) \<le> c * dist (z N) x" using lipschitz[THEN bspec[where x="z N"], THEN bspec[where x=x]]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5543
      using z_in_s[of N] `x\<in>s` using c by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5544
    also have "\<dots> < e / 2" using N' and c using * by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5545
    finally show False unfolding fzn
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5546
      using N[THEN spec[where x="Suc N"]] and dist_triangle_half_r[of "z (Suc N)" "f x" e x]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5547
      unfolding e_def by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5548
  qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5549
  hence "f x = x" unfolding e_def and dist_eq_0 by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5550
  moreover
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5551
  { fix y assume "f y = y" "y\<in>s"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5552
    hence "dist x y \<le> c * dist x y" using lipschitz[THEN bspec[where x=x], THEN bspec[where x=y]]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5553
      using `x\<in>s` and `f x = x` by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5554
    hence "dist x y = 0" unfolding mult_le_cancel_right1
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  5555
      using c and dist_pos_le[of x y] by auto
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5556
    hence "y = x" unfolding dist_eq_0 by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5557
  }
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  5558
  ultimately show ?thesis unfolding Bex1_def using `x\<in>s` by blast+
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5559
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5560
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5561
subsection{* Edelstein fixed point theorem.                                            *}
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5562
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  5563
lemma edelstein_fix:
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5564
  assumes s:"compact s" "s \<noteq> {}" and gs:"(g ` s) \<subseteq> s"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5565
      and dist:"\<forall>x\<in>s. \<forall>y\<in>s. x \<noteq> y \<longrightarrow> dist (g x) (g y) < dist x y"
30582
638b088bb840 imported patch euclidean
huffman
parents: 30549
diff changeset
  5566
  shows "\<exists>! x::real^'a::finite\<in>s. g x = x"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5567
proof(cases "\<exists>x\<in>s. g x \<noteq> x")
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5568
  obtain x where "x\<in>s" using s(2) by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5569
  case False hence g:"\<forall>x\<in>s. g x = x" by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5570
  { fix y assume "y\<in>s"
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  5571
    hence "x = y" using `x\<in>s` and dist[THEN bspec[where x=x], THEN bspec[where x=y]]
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5572
      unfolding g[THEN bspec[where x=x], OF `x\<in>s`]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5573
      unfolding g[THEN bspec[where x=y], OF `y\<in>s`] by auto  }
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  5574
  thus ?thesis unfolding Bex1_def using `x\<in>s` and g by blast+
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5575
next
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5576
  case True
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5577
  then obtain x where [simp]:"x\<in>s" and "g x \<noteq> x" by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5578
  { fix x y assume "x \<in> s" "y \<in> s"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5579
    hence "dist (g x) (g y) \<le> dist x y"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5580
      using dist[THEN bspec[where x=x], THEN bspec[where x=y]] by auto } note dist' = this
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5581
  def y \<equiv> "g x"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5582
  have [simp]:"y\<in>s" unfolding y_def using gs[unfolded image_subset_iff] and `x\<in>s` by blast
30974
415f2fe37f62 removed confusion around funpow
haftmann
parents: 30952
diff changeset
  5583
  def f \<equiv> "\<lambda>n. g ^^ n"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5584
  have [simp]:"\<And>n z. g (f n z) = f (Suc n) z" unfolding f_def by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5585
  have [simp]:"\<And>z. f 0 z = z" unfolding f_def by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5586
  { fix n::nat and z assume "z\<in>s"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5587
    have "f n z \<in> s" unfolding f_def
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5588
    proof(induct n)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5589
      case 0 thus ?case using `z\<in>s` by simp
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5590
    next
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5591
      case (Suc n) thus ?case using gs[unfolded image_subset_iff] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5592
    qed } note fs = this
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5593
  { fix m n ::nat assume "m\<le>n"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5594
    fix w z assume "w\<in>s" "z\<in>s"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5595
    have "dist (f n w) (f n z) \<le> dist (f m w) (f m z)" using `m\<le>n`
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5596
    proof(induct n)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5597
      case 0 thus ?case by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5598
    next
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5599
      case (Suc n)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5600
      thus ?case proof(cases "m\<le>n")
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5601
	case True thus ?thesis using Suc(1)
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  5602
	  using dist'[OF fs fs, OF `w\<in>s` `z\<in>s`, of n n] by auto
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5603
      next
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5604
	case False hence mn:"m = Suc n" using Suc(2) by simp
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5605
	show ?thesis unfolding mn  by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5606
      qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5607
    qed } note distf = this
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5608
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5609
  def h \<equiv> "\<lambda>n. pastecart (f n x) (f n y)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5610
  let ?s2 = "{pastecart x y |x y. x \<in> s \<and> y \<in> s}"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5611
  obtain l r where "l\<in>?s2" and r:"\<forall>m n. m < n \<longrightarrow> r m < r n" and lr:"((h \<circ> r) ---> l) sequentially"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5612
    using compact_pastecart[OF s(1) s(1), unfolded compact_def, THEN spec[where x=h]] unfolding  h_def
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5613
    using fs[OF `x\<in>s`] and fs[OF `y\<in>s`] by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5614
  def a \<equiv> "fstcart l" def b \<equiv> "sndcart l"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5615
  have lab:"l = pastecart a b" unfolding a_def b_def and pastecart_fst_snd by simp
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5616
  have [simp]:"a\<in>s" "b\<in>s" unfolding a_def b_def using `l\<in>?s2` by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5617
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5618
  have "continuous_on UNIV fstcart" and "continuous_on UNIV sndcart"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5619
    using linear_continuous_on using linear_fstcart and linear_sndcart by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5620
  hence lima:"((fstcart \<circ> (h \<circ> r)) ---> a) sequentially" and limb:"((sndcart \<circ> (h \<circ> r)) ---> b) sequentially"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5621
    unfolding atomize_conj unfolding continuous_on_sequentially
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5622
    apply(erule_tac x="h \<circ> r" in allE) apply(erule_tac x="h \<circ> r" in allE) using lr
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5623
    unfolding o_def and h_def a_def b_def  by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5624
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5625
  { fix n::nat
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5626
    have *:"\<And>fx fy x y. dist fx fy \<le> dist x y \<Longrightarrow> \<not> (dist (fx - fy) (a - b) < dist a b - dist x y)" unfolding dist_def by norm
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5627
    { fix x y ::"real^'a"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5628
      have "dist (-x) (-y) = dist x y" unfolding dist_def
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5629
	using norm_minus_cancel[of "x - y"] by (auto simp add: uminus_add_conv_diff) } note ** = this
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  5630
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5631
    { assume as:"dist a b > dist (f n x) (f n y)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5632
      then obtain Na Nb where "\<forall>m\<ge>Na. dist (f (r m) x) a < (dist a b - dist (f n x) (f n y)) / 2"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5633
	and "\<forall>m\<ge>Nb. dist (f (r m) y) b < (dist a b - dist (f n x) (f n y)) / 2"
30654
254478a8dd05 dropped theory Arith_Tools
haftmann
parents: 30582
diff changeset
  5634
	using lima limb unfolding h_def Lim_sequentially by (fastsimp simp del: less_divide_eq_number_of1)
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5635
      hence "dist (f (r (Na + Nb + n)) x - f (r (Na + Nb + n)) y) (a - b) < dist a b - dist (f n x) (f n y)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5636
	apply(erule_tac x="Na+Nb+n" in allE)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5637
	apply(erule_tac x="Na+Nb+n" in allE) apply simp
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5638
	using dist_triangle_add_half[of a "f (r (Na + Nb + n)) x" "dist a b - dist (f n x) (f n y)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5639
          "-b"  "- f (r (Na + Nb + n)) y"]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5640
	unfolding ** unfolding group_simps(12) by (auto simp add: dist_sym)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5641
      moreover
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5642
      have "dist (f (r (Na + Nb + n)) x - f (r (Na + Nb + n)) y) (a - b) \<ge> dist a b - dist (f n x) (f n y)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5643
	using distf[of n "r (Na+Nb+n)", OF _ `x\<in>s` `y\<in>s`]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5644
	using monotone_bigger[OF r, of "Na+Nb+n"]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5645
	using *[of "f (r (Na + Nb + n)) x" "f (r (Na + Nb + n)) y" "f n x" "f n y"] by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5646
      ultimately have False by simp
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5647
    }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5648
    hence "dist a b \<le> dist (f n x) (f n y)" by(rule ccontr)auto }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5649
  note ab_fn = this
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5650
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5651
  have [simp]:"a = b" proof(rule ccontr)
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5652
    def e \<equiv> "dist a b - dist (g a) (g b)"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5653
    assume "a\<noteq>b" hence "e > 0" unfolding e_def using dist by fastsimp
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5654
    hence "\<exists>n. dist (f n x) a < e/2 \<and> dist (f n y) b < e/2"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5655
      using lima limb unfolding Lim_sequentially
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5656
      apply (auto elim!: allE[where x="e/2"]) apply(rule_tac x="r (max N Na)" in exI) unfolding h_def by fastsimp
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5657
    then obtain n where n:"dist (f n x) a < e/2 \<and> dist (f n y) b < e/2" by auto
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  5658
    have "dist (f (Suc n) x) (g a) \<le> dist (f n x) a"
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5659
      using dist[THEN bspec[where x="f n x"], THEN bspec[where x="a"]] and fs by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5660
    moreover have "dist (f (Suc n) y) (g b) \<le> dist (f n y) b"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5661
      using dist[THEN bspec[where x="f n y"], THEN bspec[where x="b"]] and fs by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5662
    ultimately have "dist (f (Suc n) x) (g a) + dist (f (Suc n) y) (g b) < e" using n by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5663
    thus False unfolding e_def using ab_fn[of "Suc n"] by norm
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5664
  qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5665
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5666
  have [simp]:"\<And>n. f (Suc n) x = f n y" unfolding f_def y_def by(induct_tac n)auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5667
  { fix x y assume "x\<in>s" "y\<in>s" moreover
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5668
    fix e::real assume "e>0" ultimately
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5669
    have "dist y x < e \<longrightarrow> dist (g y) (g x) < e" using dist by fastsimp }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5670
  hence "continuous_on s g" unfolding continuous_on_def by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5671
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5672
  hence "((sndcart \<circ> h \<circ> r) ---> g a) sequentially" unfolding continuous_on_sequentially
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5673
    apply (rule allE[where x="\<lambda>n. (fstcart \<circ> h \<circ> r) n"]) apply (erule ballE[where x=a])
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5674
    using lima unfolding h_def o_def using fs[OF `x\<in>s`] by (auto simp add: y_def)
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  5675
  hence "g a = a" using Lim_unique[OF trivial_limit_sequentially limb, of "g a"]
30262
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5676
    unfolding `a=b` and o_assoc by auto
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5677
  moreover
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5678
  { fix x assume "x\<in>s" "g x = x" "x\<noteq>a"
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5679
    hence "False" using dist[THEN bspec[where x=a], THEN bspec[where x=x]]
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5680
      using `g a = a` and `a\<in>s` by auto  }
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5681
  ultimately show "\<exists>!x\<in>s. g x = x" unfolding Bex1_def using `a\<in>s` by blast
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5682
qed
5794fee816c3 A formalization of Topology on Euclidean spaces, Includes limits (nets) , continuity, fixpoint theorems, homeomorphisms
chaieb
parents:
diff changeset
  5683
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30268
diff changeset
  5684
end