src/HOL/Limits.thy
author huffman
Fri, 19 Aug 2011 15:07:10 -0700
changeset 44313 d81d57979771
parent 44282 f0de18b62d63
child 44342 8321948340ea
permissions -rw-r--r--
SEQ.thy: legacy theorem names
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
     1
(*  Title       : Limits.thy
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
     2
    Author      : Brian Huffman
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
     3
*)
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
     4
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
     5
header {* Filters and Limits *}
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
     6
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
     7
theory Limits
36822
38a480e0346f minimize imports
huffman
parents: 36662
diff changeset
     8
imports RealVector
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
     9
begin
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
    10
44081
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
    11
subsection {* Filters *}
31392
69570155ddf8 replace filters with filter bases
huffman
parents: 31357
diff changeset
    12
69570155ddf8 replace filters with filter bases
huffman
parents: 31357
diff changeset
    13
text {*
44081
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
    14
  This definition also allows non-proper filters.
31392
69570155ddf8 replace filters with filter bases
huffman
parents: 31357
diff changeset
    15
*}
69570155ddf8 replace filters with filter bases
huffman
parents: 31357
diff changeset
    16
36358
246493d61204 define nets directly as filters, instead of as filter bases
huffman
parents: 31902
diff changeset
    17
locale is_filter =
44081
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
    18
  fixes F :: "('a \<Rightarrow> bool) \<Rightarrow> bool"
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
    19
  assumes True: "F (\<lambda>x. True)"
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
    20
  assumes conj: "F (\<lambda>x. P x) \<Longrightarrow> F (\<lambda>x. Q x) \<Longrightarrow> F (\<lambda>x. P x \<and> Q x)"
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
    21
  assumes mono: "\<forall>x. P x \<longrightarrow> Q x \<Longrightarrow> F (\<lambda>x. P x) \<Longrightarrow> F (\<lambda>x. Q x)"
36358
246493d61204 define nets directly as filters, instead of as filter bases
huffman
parents: 31902
diff changeset
    22
44081
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
    23
typedef (open) 'a filter = "{F :: ('a \<Rightarrow> bool) \<Rightarrow> bool. is_filter F}"
31392
69570155ddf8 replace filters with filter bases
huffman
parents: 31357
diff changeset
    24
proof
44081
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
    25
  show "(\<lambda>x. True) \<in> ?filter" by (auto intro: is_filter.intro)
31392
69570155ddf8 replace filters with filter bases
huffman
parents: 31357
diff changeset
    26
qed
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
    27
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
    28
lemma is_filter_Rep_filter: "is_filter (Rep_filter F)"
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
    29
  using Rep_filter [of F] by simp
31392
69570155ddf8 replace filters with filter bases
huffman
parents: 31357
diff changeset
    30
44081
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
    31
lemma Abs_filter_inverse':
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
    32
  assumes "is_filter F" shows "Rep_filter (Abs_filter F) = F"
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
    33
  using assms by (simp add: Abs_filter_inverse)
31392
69570155ddf8 replace filters with filter bases
huffman
parents: 31357
diff changeset
    34
69570155ddf8 replace filters with filter bases
huffman
parents: 31357
diff changeset
    35
69570155ddf8 replace filters with filter bases
huffman
parents: 31357
diff changeset
    36
subsection {* Eventually *}
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
    37
44081
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
    38
definition eventually :: "('a \<Rightarrow> bool) \<Rightarrow> 'a filter \<Rightarrow> bool"
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
    39
  where "eventually P F \<longleftrightarrow> Rep_filter F P"
36358
246493d61204 define nets directly as filters, instead of as filter bases
huffman
parents: 31902
diff changeset
    40
44081
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
    41
lemma eventually_Abs_filter:
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
    42
  assumes "is_filter F" shows "eventually P (Abs_filter F) = F P"
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
    43
  unfolding eventually_def using assms by (simp add: Abs_filter_inverse)
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
    44
44081
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
    45
lemma filter_eq_iff:
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
    46
  shows "F = F' \<longleftrightarrow> (\<forall>P. eventually P F = eventually P F')"
44081
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
    47
  unfolding Rep_filter_inject [symmetric] fun_eq_iff eventually_def ..
36360
9d8f7efd9289 define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents: 36358
diff changeset
    48
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
    49
lemma eventually_True [simp]: "eventually (\<lambda>x. True) F"
44081
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
    50
  unfolding eventually_def
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
    51
  by (rule is_filter.True [OF is_filter_Rep_filter])
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
    52
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
    53
lemma always_eventually: "\<forall>x. P x \<Longrightarrow> eventually P F"
36630
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
    54
proof -
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
    55
  assume "\<forall>x. P x" hence "P = (\<lambda>x. True)" by (simp add: ext)
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
    56
  thus "eventually P F" by simp
36630
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
    57
qed
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
    58
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
    59
lemma eventually_mono:
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
    60
  "(\<forall>x. P x \<longrightarrow> Q x) \<Longrightarrow> eventually P F \<Longrightarrow> eventually Q F"
44081
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
    61
  unfolding eventually_def
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
    62
  by (rule is_filter.mono [OF is_filter_Rep_filter])
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
    63
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
    64
lemma eventually_conj:
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
    65
  assumes P: "eventually (\<lambda>x. P x) F"
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
    66
  assumes Q: "eventually (\<lambda>x. Q x) F"
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
    67
  shows "eventually (\<lambda>x. P x \<and> Q x) F"
44081
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
    68
  using assms unfolding eventually_def
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
    69
  by (rule is_filter.conj [OF is_filter_Rep_filter])
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
    70
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
    71
lemma eventually_mp:
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
    72
  assumes "eventually (\<lambda>x. P x \<longrightarrow> Q x) F"
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
    73
  assumes "eventually (\<lambda>x. P x) F"
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
    74
  shows "eventually (\<lambda>x. Q x) F"
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
    75
proof (rule eventually_mono)
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
    76
  show "\<forall>x. (P x \<longrightarrow> Q x) \<and> P x \<longrightarrow> Q x" by simp
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
    77
  show "eventually (\<lambda>x. (P x \<longrightarrow> Q x) \<and> P x) F"
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
    78
    using assms by (rule eventually_conj)
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
    79
qed
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
    80
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
    81
lemma eventually_rev_mp:
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
    82
  assumes "eventually (\<lambda>x. P x) F"
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
    83
  assumes "eventually (\<lambda>x. P x \<longrightarrow> Q x) F"
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
    84
  shows "eventually (\<lambda>x. Q x) F"
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
    85
using assms(2) assms(1) by (rule eventually_mp)
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
    86
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
    87
lemma eventually_conj_iff:
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
    88
  "eventually (\<lambda>x. P x \<and> Q x) F \<longleftrightarrow> eventually P F \<and> eventually Q F"
44081
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
    89
  by (auto intro: eventually_conj elim: eventually_rev_mp)
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
    90
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
    91
lemma eventually_elim1:
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
    92
  assumes "eventually (\<lambda>i. P i) F"
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
    93
  assumes "\<And>i. P i \<Longrightarrow> Q i"
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
    94
  shows "eventually (\<lambda>i. Q i) F"
44081
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
    95
  using assms by (auto elim!: eventually_rev_mp)
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
    96
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
    97
lemma eventually_elim2:
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
    98
  assumes "eventually (\<lambda>i. P i) F"
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
    99
  assumes "eventually (\<lambda>i. Q i) F"
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   100
  assumes "\<And>i. P i \<Longrightarrow> Q i \<Longrightarrow> R i"
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   101
  shows "eventually (\<lambda>i. R i) F"
44081
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   102
  using assms by (auto elim!: eventually_rev_mp)
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   103
36360
9d8f7efd9289 define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents: 36358
diff changeset
   104
subsection {* Finer-than relation *}
9d8f7efd9289 define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents: 36358
diff changeset
   105
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   106
text {* @{term "F \<le> F'"} means that filter @{term F} is finer than
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   107
filter @{term F'}. *}
36360
9d8f7efd9289 define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents: 36358
diff changeset
   108
44081
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   109
instantiation filter :: (type) complete_lattice
36360
9d8f7efd9289 define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents: 36358
diff changeset
   110
begin
9d8f7efd9289 define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents: 36358
diff changeset
   111
44081
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   112
definition le_filter_def:
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   113
  "F \<le> F' \<longleftrightarrow> (\<forall>P. eventually P F' \<longrightarrow> eventually P F)"
36360
9d8f7efd9289 define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents: 36358
diff changeset
   114
9d8f7efd9289 define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents: 36358
diff changeset
   115
definition
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   116
  "(F :: 'a filter) < F' \<longleftrightarrow> F \<le> F' \<and> \<not> F' \<le> F"
36360
9d8f7efd9289 define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents: 36358
diff changeset
   117
9d8f7efd9289 define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents: 36358
diff changeset
   118
definition
44081
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   119
  "top = Abs_filter (\<lambda>P. \<forall>x. P x)"
36630
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   120
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   121
definition
44081
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   122
  "bot = Abs_filter (\<lambda>P. True)"
36360
9d8f7efd9289 define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents: 36358
diff changeset
   123
36630
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   124
definition
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   125
  "sup F F' = Abs_filter (\<lambda>P. eventually P F \<and> eventually P F')"
36630
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   126
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   127
definition
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   128
  "inf F F' = Abs_filter
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   129
      (\<lambda>P. \<exists>Q R. eventually Q F \<and> eventually R F' \<and> (\<forall>x. Q x \<and> R x \<longrightarrow> P x))"
36630
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   130
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   131
definition
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   132
  "Sup S = Abs_filter (\<lambda>P. \<forall>F\<in>S. eventually P F)"
36630
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   133
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   134
definition
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   135
  "Inf S = Sup {F::'a filter. \<forall>F'\<in>S. F \<le> F'}"
36630
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   136
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   137
lemma eventually_top [simp]: "eventually P top \<longleftrightarrow> (\<forall>x. P x)"
44081
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   138
  unfolding top_filter_def
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   139
  by (rule eventually_Abs_filter, rule is_filter.intro, auto)
36630
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   140
36629
de62713aec6e swap ordering on nets, so x <= y means 'x is finer than y'
huffman
parents: 36360
diff changeset
   141
lemma eventually_bot [simp]: "eventually P bot"
44081
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   142
  unfolding bot_filter_def
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   143
  by (subst eventually_Abs_filter, rule is_filter.intro, auto)
36360
9d8f7efd9289 define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents: 36358
diff changeset
   144
36630
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   145
lemma eventually_sup:
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   146
  "eventually P (sup F F') \<longleftrightarrow> eventually P F \<and> eventually P F'"
44081
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   147
  unfolding sup_filter_def
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   148
  by (rule eventually_Abs_filter, rule is_filter.intro)
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   149
     (auto elim!: eventually_rev_mp)
36630
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   150
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   151
lemma eventually_inf:
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   152
  "eventually P (inf F F') \<longleftrightarrow>
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   153
   (\<exists>Q R. eventually Q F \<and> eventually R F' \<and> (\<forall>x. Q x \<and> R x \<longrightarrow> P x))"
44081
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   154
  unfolding inf_filter_def
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   155
  apply (rule eventually_Abs_filter, rule is_filter.intro)
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   156
  apply (fast intro: eventually_True)
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   157
  apply clarify
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   158
  apply (intro exI conjI)
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   159
  apply (erule (1) eventually_conj)
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   160
  apply (erule (1) eventually_conj)
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   161
  apply simp
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   162
  apply auto
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   163
  done
36630
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   164
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   165
lemma eventually_Sup:
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   166
  "eventually P (Sup S) \<longleftrightarrow> (\<forall>F\<in>S. eventually P F)"
44081
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   167
  unfolding Sup_filter_def
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   168
  apply (rule eventually_Abs_filter, rule is_filter.intro)
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   169
  apply (auto intro: eventually_conj elim!: eventually_rev_mp)
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   170
  done
36630
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   171
36360
9d8f7efd9289 define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents: 36358
diff changeset
   172
instance proof
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   173
  fix F F' F'' :: "'a filter" and S :: "'a filter set"
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   174
  { show "F < F' \<longleftrightarrow> F \<le> F' \<and> \<not> F' \<le> F"
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   175
    by (rule less_filter_def) }
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   176
  { show "F \<le> F"
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   177
    unfolding le_filter_def by simp }
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   178
  { assume "F \<le> F'" and "F' \<le> F''" thus "F \<le> F''"
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   179
    unfolding le_filter_def by simp }
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   180
  { assume "F \<le> F'" and "F' \<le> F" thus "F = F'"
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   181
    unfolding le_filter_def filter_eq_iff by fast }
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   182
  { show "F \<le> top"
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   183
    unfolding le_filter_def eventually_top by (simp add: always_eventually) }
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   184
  { show "bot \<le> F"
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   185
    unfolding le_filter_def by simp }
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   186
  { show "F \<le> sup F F'" and "F' \<le> sup F F'"
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   187
    unfolding le_filter_def eventually_sup by simp_all }
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   188
  { assume "F \<le> F''" and "F' \<le> F''" thus "sup F F' \<le> F''"
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   189
    unfolding le_filter_def eventually_sup by simp }
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   190
  { show "inf F F' \<le> F" and "inf F F' \<le> F'"
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   191
    unfolding le_filter_def eventually_inf by (auto intro: eventually_True) }
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   192
  { assume "F \<le> F'" and "F \<le> F''" thus "F \<le> inf F' F''"
44081
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   193
    unfolding le_filter_def eventually_inf
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   194
    by (auto elim!: eventually_mono intro: eventually_conj) }
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   195
  { assume "F \<in> S" thus "F \<le> Sup S"
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   196
    unfolding le_filter_def eventually_Sup by simp }
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   197
  { assume "\<And>F. F \<in> S \<Longrightarrow> F \<le> F'" thus "Sup S \<le> F'"
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   198
    unfolding le_filter_def eventually_Sup by simp }
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   199
  { assume "F'' \<in> S" thus "Inf S \<le> F''"
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   200
    unfolding le_filter_def Inf_filter_def eventually_Sup Ball_def by simp }
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   201
  { assume "\<And>F'. F' \<in> S \<Longrightarrow> F \<le> F'" thus "F \<le> Inf S"
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   202
    unfolding le_filter_def Inf_filter_def eventually_Sup Ball_def by simp }
36360
9d8f7efd9289 define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents: 36358
diff changeset
   203
qed
9d8f7efd9289 define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents: 36358
diff changeset
   204
9d8f7efd9289 define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents: 36358
diff changeset
   205
end
9d8f7efd9289 define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents: 36358
diff changeset
   206
44081
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   207
lemma filter_leD:
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   208
  "F \<le> F' \<Longrightarrow> eventually P F' \<Longrightarrow> eventually P F"
44081
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   209
  unfolding le_filter_def by simp
36360
9d8f7efd9289 define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents: 36358
diff changeset
   210
44081
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   211
lemma filter_leI:
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   212
  "(\<And>P. eventually P F' \<Longrightarrow> eventually P F) \<Longrightarrow> F \<le> F'"
44081
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   213
  unfolding le_filter_def by simp
36360
9d8f7efd9289 define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents: 36358
diff changeset
   214
9d8f7efd9289 define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents: 36358
diff changeset
   215
lemma eventually_False:
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   216
  "eventually (\<lambda>x. False) F \<longleftrightarrow> F = bot"
44081
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   217
  unfolding filter_eq_iff by (auto elim: eventually_rev_mp)
36360
9d8f7efd9289 define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents: 36358
diff changeset
   218
44081
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   219
subsection {* Map function for filters *}
36654
7c8eb32724ce add constants netmap and nhds
huffman
parents: 36630
diff changeset
   220
44081
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   221
definition filtermap :: "('a \<Rightarrow> 'b) \<Rightarrow> 'a filter \<Rightarrow> 'b filter"
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   222
  where "filtermap f F = Abs_filter (\<lambda>P. eventually (\<lambda>x. P (f x)) F)"
36654
7c8eb32724ce add constants netmap and nhds
huffman
parents: 36630
diff changeset
   223
44081
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   224
lemma eventually_filtermap:
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   225
  "eventually P (filtermap f F) = eventually (\<lambda>x. P (f x)) F"
44081
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   226
  unfolding filtermap_def
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   227
  apply (rule eventually_Abs_filter)
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   228
  apply (rule is_filter.intro)
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   229
  apply (auto elim!: eventually_rev_mp)
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   230
  done
36654
7c8eb32724ce add constants netmap and nhds
huffman
parents: 36630
diff changeset
   231
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   232
lemma filtermap_ident: "filtermap (\<lambda>x. x) F = F"
44081
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   233
  by (simp add: filter_eq_iff eventually_filtermap)
36654
7c8eb32724ce add constants netmap and nhds
huffman
parents: 36630
diff changeset
   234
44081
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   235
lemma filtermap_filtermap:
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   236
  "filtermap f (filtermap g F) = filtermap (\<lambda>x. f (g x)) F"
44081
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   237
  by (simp add: filter_eq_iff eventually_filtermap)
36654
7c8eb32724ce add constants netmap and nhds
huffman
parents: 36630
diff changeset
   238
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   239
lemma filtermap_mono: "F \<le> F' \<Longrightarrow> filtermap f F \<le> filtermap f F'"
44081
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   240
  unfolding le_filter_def eventually_filtermap by simp
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   241
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   242
lemma filtermap_bot [simp]: "filtermap f bot = bot"
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   243
  by (simp add: filter_eq_iff eventually_filtermap)
36654
7c8eb32724ce add constants netmap and nhds
huffman
parents: 36630
diff changeset
   244
7c8eb32724ce add constants netmap and nhds
huffman
parents: 36630
diff changeset
   245
36662
621122eeb138 generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents: 36656
diff changeset
   246
subsection {* Sequentially *}
31392
69570155ddf8 replace filters with filter bases
huffman
parents: 31357
diff changeset
   247
44081
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   248
definition sequentially :: "nat filter"
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   249
  where "sequentially = Abs_filter (\<lambda>P. \<exists>k. \<forall>n\<ge>k. P n)"
31392
69570155ddf8 replace filters with filter bases
huffman
parents: 31357
diff changeset
   250
36662
621122eeb138 generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents: 36656
diff changeset
   251
lemma eventually_sequentially:
621122eeb138 generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents: 36656
diff changeset
   252
  "eventually P sequentially \<longleftrightarrow> (\<exists>N. \<forall>n\<ge>N. P n)"
621122eeb138 generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents: 36656
diff changeset
   253
unfolding sequentially_def
44081
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   254
proof (rule eventually_Abs_filter, rule is_filter.intro)
36662
621122eeb138 generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents: 36656
diff changeset
   255
  fix P Q :: "nat \<Rightarrow> bool"
621122eeb138 generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents: 36656
diff changeset
   256
  assume "\<exists>i. \<forall>n\<ge>i. P n" and "\<exists>j. \<forall>n\<ge>j. Q n"
621122eeb138 generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents: 36656
diff changeset
   257
  then obtain i j where "\<forall>n\<ge>i. P n" and "\<forall>n\<ge>j. Q n" by auto
621122eeb138 generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents: 36656
diff changeset
   258
  then have "\<forall>n\<ge>max i j. P n \<and> Q n" by simp
621122eeb138 generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents: 36656
diff changeset
   259
  then show "\<exists>k. \<forall>n\<ge>k. P n \<and> Q n" ..
621122eeb138 generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents: 36656
diff changeset
   260
qed auto
621122eeb138 generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents: 36656
diff changeset
   261
621122eeb138 generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents: 36656
diff changeset
   262
lemma sequentially_bot [simp]: "sequentially \<noteq> bot"
44081
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   263
  unfolding filter_eq_iff eventually_sequentially by auto
36662
621122eeb138 generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents: 36656
diff changeset
   264
621122eeb138 generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents: 36656
diff changeset
   265
lemma eventually_False_sequentially [simp]:
621122eeb138 generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents: 36656
diff changeset
   266
  "\<not> eventually (\<lambda>n. False) sequentially"
44081
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   267
  by (simp add: eventually_False)
36662
621122eeb138 generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents: 36656
diff changeset
   268
621122eeb138 generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents: 36656
diff changeset
   269
lemma le_sequentially:
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   270
  "F \<le> sequentially \<longleftrightarrow> (\<forall>N. eventually (\<lambda>n. N \<le> n) F)"
44081
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   271
  unfolding le_filter_def eventually_sequentially
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   272
  by (safe, fast, drule_tac x=N in spec, auto elim: eventually_rev_mp)
36662
621122eeb138 generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents: 36656
diff changeset
   273
621122eeb138 generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents: 36656
diff changeset
   274
44081
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   275
definition trivial_limit :: "'a filter \<Rightarrow> bool"
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   276
  where "trivial_limit F \<longleftrightarrow> eventually (\<lambda>x. False) F"
41970
47d6e13d1710 generalize infinite sums
hoelzl
parents: 39302
diff changeset
   277
44081
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   278
lemma trivial_limit_sequentially [intro]: "\<not> trivial_limit sequentially"
41970
47d6e13d1710 generalize infinite sums
hoelzl
parents: 39302
diff changeset
   279
  by (auto simp add: trivial_limit_def eventually_sequentially)
47d6e13d1710 generalize infinite sums
hoelzl
parents: 39302
diff changeset
   280
44081
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   281
subsection {* Standard filters *}
36662
621122eeb138 generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents: 36656
diff changeset
   282
44081
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   283
definition within :: "'a filter \<Rightarrow> 'a set \<Rightarrow> 'a filter" (infixr "within" 70)
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   284
  where "F within S = Abs_filter (\<lambda>P. eventually (\<lambda>x. x \<in> S \<longrightarrow> P x) F)"
31392
69570155ddf8 replace filters with filter bases
huffman
parents: 31357
diff changeset
   285
44206
5e4a1664106e locale-ize some constant definitions, so complete_space can inherit from metric_space
huffman
parents: 44205
diff changeset
   286
definition (in topological_space) nhds :: "'a \<Rightarrow> 'a filter"
44081
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   287
  where "nhds a = Abs_filter (\<lambda>P. \<exists>S. open S \<and> a \<in> S \<and> (\<forall>x\<in>S. P x))"
36654
7c8eb32724ce add constants netmap and nhds
huffman
parents: 36630
diff changeset
   288
44206
5e4a1664106e locale-ize some constant definitions, so complete_space can inherit from metric_space
huffman
parents: 44205
diff changeset
   289
definition (in topological_space) at :: "'a \<Rightarrow> 'a filter"
44081
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   290
  where "at a = nhds a within - {a}"
31447
97bab1ac463e generalize type of 'at' to topological_space; generalize some lemmas
huffman
parents: 31392
diff changeset
   291
31392
69570155ddf8 replace filters with filter bases
huffman
parents: 31357
diff changeset
   292
lemma eventually_within:
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   293
  "eventually P (F within S) = eventually (\<lambda>x. x \<in> S \<longrightarrow> P x) F"
44081
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   294
  unfolding within_def
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   295
  by (rule eventually_Abs_filter, rule is_filter.intro)
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   296
     (auto elim!: eventually_rev_mp)
31392
69570155ddf8 replace filters with filter bases
huffman
parents: 31357
diff changeset
   297
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   298
lemma within_UNIV: "F within UNIV = F"
44081
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   299
  unfolding filter_eq_iff eventually_within by simp
36360
9d8f7efd9289 define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents: 36358
diff changeset
   300
36654
7c8eb32724ce add constants netmap and nhds
huffman
parents: 36630
diff changeset
   301
lemma eventually_nhds:
7c8eb32724ce add constants netmap and nhds
huffman
parents: 36630
diff changeset
   302
  "eventually P (nhds a) \<longleftrightarrow> (\<exists>S. open S \<and> a \<in> S \<and> (\<forall>x\<in>S. P x))"
7c8eb32724ce add constants netmap and nhds
huffman
parents: 36630
diff changeset
   303
unfolding nhds_def
44081
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   304
proof (rule eventually_Abs_filter, rule is_filter.intro)
36654
7c8eb32724ce add constants netmap and nhds
huffman
parents: 36630
diff changeset
   305
  have "open UNIV \<and> a \<in> UNIV \<and> (\<forall>x\<in>UNIV. True)" by simp
7c8eb32724ce add constants netmap and nhds
huffman
parents: 36630
diff changeset
   306
  thus "\<exists>S. open S \<and> a \<in> S \<and> (\<forall>x\<in>S. True)" by - rule
36358
246493d61204 define nets directly as filters, instead of as filter bases
huffman
parents: 31902
diff changeset
   307
next
246493d61204 define nets directly as filters, instead of as filter bases
huffman
parents: 31902
diff changeset
   308
  fix P Q
36654
7c8eb32724ce add constants netmap and nhds
huffman
parents: 36630
diff changeset
   309
  assume "\<exists>S. open S \<and> a \<in> S \<and> (\<forall>x\<in>S. P x)"
7c8eb32724ce add constants netmap and nhds
huffman
parents: 36630
diff changeset
   310
     and "\<exists>T. open T \<and> a \<in> T \<and> (\<forall>x\<in>T. Q x)"
36358
246493d61204 define nets directly as filters, instead of as filter bases
huffman
parents: 31902
diff changeset
   311
  then obtain S T where
36654
7c8eb32724ce add constants netmap and nhds
huffman
parents: 36630
diff changeset
   312
    "open S \<and> a \<in> S \<and> (\<forall>x\<in>S. P x)"
7c8eb32724ce add constants netmap and nhds
huffman
parents: 36630
diff changeset
   313
    "open T \<and> a \<in> T \<and> (\<forall>x\<in>T. Q x)" by auto
7c8eb32724ce add constants netmap and nhds
huffman
parents: 36630
diff changeset
   314
  hence "open (S \<inter> T) \<and> a \<in> S \<inter> T \<and> (\<forall>x\<in>(S \<inter> T). P x \<and> Q x)"
36358
246493d61204 define nets directly as filters, instead of as filter bases
huffman
parents: 31902
diff changeset
   315
    by (simp add: open_Int)
36654
7c8eb32724ce add constants netmap and nhds
huffman
parents: 36630
diff changeset
   316
  thus "\<exists>S. open S \<and> a \<in> S \<and> (\<forall>x\<in>S. P x \<and> Q x)" by - rule
36358
246493d61204 define nets directly as filters, instead of as filter bases
huffman
parents: 31902
diff changeset
   317
qed auto
31447
97bab1ac463e generalize type of 'at' to topological_space; generalize some lemmas
huffman
parents: 31392
diff changeset
   318
36656
fec55067ae9b add lemmas eventually_nhds_metric and tendsto_mono
huffman
parents: 36655
diff changeset
   319
lemma eventually_nhds_metric:
fec55067ae9b add lemmas eventually_nhds_metric and tendsto_mono
huffman
parents: 36655
diff changeset
   320
  "eventually P (nhds a) \<longleftrightarrow> (\<exists>d>0. \<forall>x. dist x a < d \<longrightarrow> P x)"
fec55067ae9b add lemmas eventually_nhds_metric and tendsto_mono
huffman
parents: 36655
diff changeset
   321
unfolding eventually_nhds open_dist
31447
97bab1ac463e generalize type of 'at' to topological_space; generalize some lemmas
huffman
parents: 31392
diff changeset
   322
apply safe
97bab1ac463e generalize type of 'at' to topological_space; generalize some lemmas
huffman
parents: 31392
diff changeset
   323
apply fast
31492
5400beeddb55 replace 'topo' with 'open'; add extra type constraint for 'open'
huffman
parents: 31488
diff changeset
   324
apply (rule_tac x="{x. dist x a < d}" in exI, simp)
31447
97bab1ac463e generalize type of 'at' to topological_space; generalize some lemmas
huffman
parents: 31392
diff changeset
   325
apply clarsimp
97bab1ac463e generalize type of 'at' to topological_space; generalize some lemmas
huffman
parents: 31392
diff changeset
   326
apply (rule_tac x="d - dist x a" in exI, clarsimp)
97bab1ac463e generalize type of 'at' to topological_space; generalize some lemmas
huffman
parents: 31392
diff changeset
   327
apply (simp only: less_diff_eq)
97bab1ac463e generalize type of 'at' to topological_space; generalize some lemmas
huffman
parents: 31392
diff changeset
   328
apply (erule le_less_trans [OF dist_triangle])
97bab1ac463e generalize type of 'at' to topological_space; generalize some lemmas
huffman
parents: 31392
diff changeset
   329
done
97bab1ac463e generalize type of 'at' to topological_space; generalize some lemmas
huffman
parents: 31392
diff changeset
   330
36656
fec55067ae9b add lemmas eventually_nhds_metric and tendsto_mono
huffman
parents: 36655
diff changeset
   331
lemma eventually_at_topological:
fec55067ae9b add lemmas eventually_nhds_metric and tendsto_mono
huffman
parents: 36655
diff changeset
   332
  "eventually P (at a) \<longleftrightarrow> (\<exists>S. open S \<and> a \<in> S \<and> (\<forall>x\<in>S. x \<noteq> a \<longrightarrow> P x))"
fec55067ae9b add lemmas eventually_nhds_metric and tendsto_mono
huffman
parents: 36655
diff changeset
   333
unfolding at_def eventually_within eventually_nhds by simp
fec55067ae9b add lemmas eventually_nhds_metric and tendsto_mono
huffman
parents: 36655
diff changeset
   334
fec55067ae9b add lemmas eventually_nhds_metric and tendsto_mono
huffman
parents: 36655
diff changeset
   335
lemma eventually_at:
fec55067ae9b add lemmas eventually_nhds_metric and tendsto_mono
huffman
parents: 36655
diff changeset
   336
  fixes a :: "'a::metric_space"
fec55067ae9b add lemmas eventually_nhds_metric and tendsto_mono
huffman
parents: 36655
diff changeset
   337
  shows "eventually P (at a) \<longleftrightarrow> (\<exists>d>0. \<forall>x. x \<noteq> a \<and> dist x a < d \<longrightarrow> P x)"
fec55067ae9b add lemmas eventually_nhds_metric and tendsto_mono
huffman
parents: 36655
diff changeset
   338
unfolding at_def eventually_within eventually_nhds_metric by auto
fec55067ae9b add lemmas eventually_nhds_metric and tendsto_mono
huffman
parents: 36655
diff changeset
   339
31392
69570155ddf8 replace filters with filter bases
huffman
parents: 31357
diff changeset
   340
31355
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   341
subsection {* Boundedness *}
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   342
44081
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   343
definition Bfun :: "('a \<Rightarrow> 'b::real_normed_vector) \<Rightarrow> 'a filter \<Rightarrow> bool"
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   344
  where "Bfun f F = (\<exists>K>0. eventually (\<lambda>x. norm (f x) \<le> K) F)"
31355
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   345
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   346
lemma BfunI:
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   347
  assumes K: "eventually (\<lambda>x. norm (f x) \<le> K) F" shows "Bfun f F"
31355
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   348
unfolding Bfun_def
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   349
proof (intro exI conjI allI)
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   350
  show "0 < max K 1" by simp
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   351
next
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   352
  show "eventually (\<lambda>x. norm (f x) \<le> max K 1) F"
31355
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   353
    using K by (rule eventually_elim1, simp)
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   354
qed
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   355
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   356
lemma BfunE:
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   357
  assumes "Bfun f F"
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   358
  obtains B where "0 < B" and "eventually (\<lambda>x. norm (f x) \<le> B) F"
31355
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   359
using assms unfolding Bfun_def by fast
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   360
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   361
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   362
subsection {* Convergence to Zero *}
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   363
44081
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   364
definition Zfun :: "('a \<Rightarrow> 'b::real_normed_vector) \<Rightarrow> 'a filter \<Rightarrow> bool"
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   365
  where "Zfun f F = (\<forall>r>0. eventually (\<lambda>x. norm (f x) < r) F)"
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   366
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   367
lemma ZfunI:
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   368
  "(\<And>r. 0 < r \<Longrightarrow> eventually (\<lambda>x. norm (f x) < r) F) \<Longrightarrow> Zfun f F"
44081
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   369
  unfolding Zfun_def by simp
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   370
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   371
lemma ZfunD:
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   372
  "\<lbrakk>Zfun f F; 0 < r\<rbrakk> \<Longrightarrow> eventually (\<lambda>x. norm (f x) < r) F"
44081
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   373
  unfolding Zfun_def by simp
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   374
31355
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   375
lemma Zfun_ssubst:
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   376
  "eventually (\<lambda>x. f x = g x) F \<Longrightarrow> Zfun g F \<Longrightarrow> Zfun f F"
44081
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   377
  unfolding Zfun_def by (auto elim!: eventually_rev_mp)
31355
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   378
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   379
lemma Zfun_zero: "Zfun (\<lambda>x. 0) F"
44081
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   380
  unfolding Zfun_def by simp
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   381
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   382
lemma Zfun_norm_iff: "Zfun (\<lambda>x. norm (f x)) F = Zfun (\<lambda>x. f x) F"
44081
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   383
  unfolding Zfun_def by simp
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   384
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   385
lemma Zfun_imp_Zfun:
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   386
  assumes f: "Zfun f F"
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   387
  assumes g: "eventually (\<lambda>x. norm (g x) \<le> norm (f x) * K) F"
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   388
  shows "Zfun (\<lambda>x. g x) F"
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   389
proof (cases)
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   390
  assume K: "0 < K"
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   391
  show ?thesis
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   392
  proof (rule ZfunI)
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   393
    fix r::real assume "0 < r"
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   394
    hence "0 < r / K"
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   395
      using K by (rule divide_pos_pos)
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   396
    then have "eventually (\<lambda>x. norm (f x) < r / K) F"
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   397
      using ZfunD [OF f] by fast
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   398
    with g show "eventually (\<lambda>x. norm (g x) < r) F"
31355
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   399
    proof (rule eventually_elim2)
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   400
      fix x
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   401
      assume *: "norm (g x) \<le> norm (f x) * K"
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   402
      assume "norm (f x) < r / K"
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   403
      hence "norm (f x) * K < r"
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   404
        by (simp add: pos_less_divide_eq K)
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   405
      thus "norm (g x) < r"
31355
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   406
        by (simp add: order_le_less_trans [OF *])
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   407
    qed
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   408
  qed
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   409
next
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   410
  assume "\<not> 0 < K"
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   411
  hence K: "K \<le> 0" by (simp only: not_less)
31355
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   412
  show ?thesis
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   413
  proof (rule ZfunI)
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   414
    fix r :: real
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   415
    assume "0 < r"
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   416
    from g show "eventually (\<lambda>x. norm (g x) < r) F"
31355
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   417
    proof (rule eventually_elim1)
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   418
      fix x
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   419
      assume "norm (g x) \<le> norm (f x) * K"
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   420
      also have "\<dots> \<le> norm (f x) * 0"
31355
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   421
        using K norm_ge_zero by (rule mult_left_mono)
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   422
      finally show "norm (g x) < r"
31355
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   423
        using `0 < r` by simp
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   424
    qed
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   425
  qed
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   426
qed
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   427
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   428
lemma Zfun_le: "\<lbrakk>Zfun g F; \<forall>x. norm (f x) \<le> norm (g x)\<rbrakk> \<Longrightarrow> Zfun f F"
44081
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   429
  by (erule_tac K="1" in Zfun_imp_Zfun, simp)
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   430
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   431
lemma Zfun_add:
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   432
  assumes f: "Zfun f F" and g: "Zfun g F"
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   433
  shows "Zfun (\<lambda>x. f x + g x) F"
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   434
proof (rule ZfunI)
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   435
  fix r::real assume "0 < r"
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   436
  hence r: "0 < r / 2" by simp
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   437
  have "eventually (\<lambda>x. norm (f x) < r/2) F"
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   438
    using f r by (rule ZfunD)
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   439
  moreover
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   440
  have "eventually (\<lambda>x. norm (g x) < r/2) F"
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   441
    using g r by (rule ZfunD)
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   442
  ultimately
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   443
  show "eventually (\<lambda>x. norm (f x + g x) < r) F"
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   444
  proof (rule eventually_elim2)
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   445
    fix x
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   446
    assume *: "norm (f x) < r/2" "norm (g x) < r/2"
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   447
    have "norm (f x + g x) \<le> norm (f x) + norm (g x)"
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   448
      by (rule norm_triangle_ineq)
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   449
    also have "\<dots> < r/2 + r/2"
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   450
      using * by (rule add_strict_mono)
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   451
    finally show "norm (f x + g x) < r"
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   452
      by simp
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   453
  qed
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   454
qed
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   455
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   456
lemma Zfun_minus: "Zfun f F \<Longrightarrow> Zfun (\<lambda>x. - f x) F"
44081
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   457
  unfolding Zfun_def by simp
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   458
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   459
lemma Zfun_diff: "\<lbrakk>Zfun f F; Zfun g F\<rbrakk> \<Longrightarrow> Zfun (\<lambda>x. f x - g x) F"
44081
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   460
  by (simp only: diff_minus Zfun_add Zfun_minus)
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   461
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   462
lemma (in bounded_linear) Zfun:
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   463
  assumes g: "Zfun g F"
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   464
  shows "Zfun (\<lambda>x. f (g x)) F"
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   465
proof -
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   466
  obtain K where "\<And>x. norm (f x) \<le> norm x * K"
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   467
    using bounded by fast
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   468
  then have "eventually (\<lambda>x. norm (f (g x)) \<le> norm (g x) * K) F"
31355
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   469
    by simp
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   470
  with g show ?thesis
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   471
    by (rule Zfun_imp_Zfun)
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   472
qed
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   473
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   474
lemma (in bounded_bilinear) Zfun:
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   475
  assumes f: "Zfun f F"
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   476
  assumes g: "Zfun g F"
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   477
  shows "Zfun (\<lambda>x. f x ** g x) F"
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   478
proof (rule ZfunI)
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   479
  fix r::real assume r: "0 < r"
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   480
  obtain K where K: "0 < K"
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   481
    and norm_le: "\<And>x y. norm (x ** y) \<le> norm x * norm y * K"
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   482
    using pos_bounded by fast
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   483
  from K have K': "0 < inverse K"
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   484
    by (rule positive_imp_inverse_positive)
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   485
  have "eventually (\<lambda>x. norm (f x) < r) F"
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   486
    using f r by (rule ZfunD)
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   487
  moreover
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   488
  have "eventually (\<lambda>x. norm (g x) < inverse K) F"
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   489
    using g K' by (rule ZfunD)
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   490
  ultimately
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   491
  show "eventually (\<lambda>x. norm (f x ** g x) < r) F"
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   492
  proof (rule eventually_elim2)
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   493
    fix x
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   494
    assume *: "norm (f x) < r" "norm (g x) < inverse K"
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   495
    have "norm (f x ** g x) \<le> norm (f x) * norm (g x) * K"
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   496
      by (rule norm_le)
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   497
    also have "norm (f x) * norm (g x) * K < r * inverse K * K"
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   498
      by (intro mult_strict_right_mono mult_strict_mono' norm_ge_zero * K)
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   499
    also from K have "r * inverse K * K = r"
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   500
      by simp
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   501
    finally show "norm (f x ** g x) < r" .
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   502
  qed
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   503
qed
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   504
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   505
lemma (in bounded_bilinear) Zfun_left:
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   506
  "Zfun f F \<Longrightarrow> Zfun (\<lambda>x. f x ** a) F"
44081
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   507
  by (rule bounded_linear_left [THEN bounded_linear.Zfun])
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   508
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   509
lemma (in bounded_bilinear) Zfun_right:
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   510
  "Zfun f F \<Longrightarrow> Zfun (\<lambda>x. a ** f x) F"
44081
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   511
  by (rule bounded_linear_right [THEN bounded_linear.Zfun])
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   512
44282
f0de18b62d63 remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents: 44253
diff changeset
   513
lemmas Zfun_mult = bounded_bilinear.Zfun [OF bounded_bilinear_mult]
f0de18b62d63 remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents: 44253
diff changeset
   514
lemmas Zfun_mult_right = bounded_bilinear.Zfun_right [OF bounded_bilinear_mult]
f0de18b62d63 remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents: 44253
diff changeset
   515
lemmas Zfun_mult_left = bounded_bilinear.Zfun_left [OF bounded_bilinear_mult]
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   516
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   517
31902
862ae16a799d renamed NamedThmsFun to Named_Thms;
wenzelm
parents: 31588
diff changeset
   518
subsection {* Limits *}
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   519
44206
5e4a1664106e locale-ize some constant definitions, so complete_space can inherit from metric_space
huffman
parents: 44205
diff changeset
   520
definition (in topological_space)
5e4a1664106e locale-ize some constant definitions, so complete_space can inherit from metric_space
huffman
parents: 44205
diff changeset
   521
  tendsto :: "('b \<Rightarrow> 'a) \<Rightarrow> 'a \<Rightarrow> 'b filter \<Rightarrow> bool" (infixr "--->" 55) where
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   522
  "(f ---> l) F \<longleftrightarrow> (\<forall>S. open S \<longrightarrow> l \<in> S \<longrightarrow> eventually (\<lambda>x. f x \<in> S) F)"
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   523
31902
862ae16a799d renamed NamedThmsFun to Named_Thms;
wenzelm
parents: 31588
diff changeset
   524
ML {*
862ae16a799d renamed NamedThmsFun to Named_Thms;
wenzelm
parents: 31588
diff changeset
   525
structure Tendsto_Intros = Named_Thms
862ae16a799d renamed NamedThmsFun to Named_Thms;
wenzelm
parents: 31588
diff changeset
   526
(
862ae16a799d renamed NamedThmsFun to Named_Thms;
wenzelm
parents: 31588
diff changeset
   527
  val name = "tendsto_intros"
862ae16a799d renamed NamedThmsFun to Named_Thms;
wenzelm
parents: 31588
diff changeset
   528
  val description = "introduction rules for tendsto"
862ae16a799d renamed NamedThmsFun to Named_Thms;
wenzelm
parents: 31588
diff changeset
   529
)
31565
da5a5589418e theorem attribute [tendsto_intros]
huffman
parents: 31492
diff changeset
   530
*}
da5a5589418e theorem attribute [tendsto_intros]
huffman
parents: 31492
diff changeset
   531
31902
862ae16a799d renamed NamedThmsFun to Named_Thms;
wenzelm
parents: 31588
diff changeset
   532
setup Tendsto_Intros.setup
31565
da5a5589418e theorem attribute [tendsto_intros]
huffman
parents: 31492
diff changeset
   533
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   534
lemma tendsto_mono: "F \<le> F' \<Longrightarrow> (f ---> l) F' \<Longrightarrow> (f ---> l) F"
44081
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   535
  unfolding tendsto_def le_filter_def by fast
36656
fec55067ae9b add lemmas eventually_nhds_metric and tendsto_mono
huffman
parents: 36655
diff changeset
   536
31488
5691ccb8d6b5 generalize tendsto to class topological_space
huffman
parents: 31487
diff changeset
   537
lemma topological_tendstoI:
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   538
  "(\<And>S. open S \<Longrightarrow> l \<in> S \<Longrightarrow> eventually (\<lambda>x. f x \<in> S) F)
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   539
    \<Longrightarrow> (f ---> l) F"
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   540
  unfolding tendsto_def by auto
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   541
31488
5691ccb8d6b5 generalize tendsto to class topological_space
huffman
parents: 31487
diff changeset
   542
lemma topological_tendstoD:
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   543
  "(f ---> l) F \<Longrightarrow> open S \<Longrightarrow> l \<in> S \<Longrightarrow> eventually (\<lambda>x. f x \<in> S) F"
31488
5691ccb8d6b5 generalize tendsto to class topological_space
huffman
parents: 31487
diff changeset
   544
  unfolding tendsto_def by auto
5691ccb8d6b5 generalize tendsto to class topological_space
huffman
parents: 31487
diff changeset
   545
5691ccb8d6b5 generalize tendsto to class topological_space
huffman
parents: 31487
diff changeset
   546
lemma tendstoI:
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   547
  assumes "\<And>e. 0 < e \<Longrightarrow> eventually (\<lambda>x. dist (f x) l < e) F"
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   548
  shows "(f ---> l) F"
44081
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   549
  apply (rule topological_tendstoI)
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   550
  apply (simp add: open_dist)
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   551
  apply (drule (1) bspec, clarify)
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   552
  apply (drule assms)
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   553
  apply (erule eventually_elim1, simp)
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   554
  done
31488
5691ccb8d6b5 generalize tendsto to class topological_space
huffman
parents: 31487
diff changeset
   555
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   556
lemma tendstoD:
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   557
  "(f ---> l) F \<Longrightarrow> 0 < e \<Longrightarrow> eventually (\<lambda>x. dist (f x) l < e) F"
44081
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   558
  apply (drule_tac S="{x. dist x l < e}" in topological_tendstoD)
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   559
  apply (clarsimp simp add: open_dist)
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   560
  apply (rule_tac x="e - dist x l" in exI, clarsimp)
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   561
  apply (simp only: less_diff_eq)
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   562
  apply (erule le_less_trans [OF dist_triangle])
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   563
  apply simp
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   564
  apply simp
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   565
  done
31488
5691ccb8d6b5 generalize tendsto to class topological_space
huffman
parents: 31487
diff changeset
   566
5691ccb8d6b5 generalize tendsto to class topological_space
huffman
parents: 31487
diff changeset
   567
lemma tendsto_iff:
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   568
  "(f ---> l) F \<longleftrightarrow> (\<forall>e>0. eventually (\<lambda>x. dist (f x) l < e) F)"
44081
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   569
  using tendstoI tendstoD by fast
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   570
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   571
lemma tendsto_Zfun_iff: "(f ---> a) F = Zfun (\<lambda>x. f x - a) F"
44081
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   572
  by (simp only: tendsto_iff Zfun_def dist_norm)
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   573
31565
da5a5589418e theorem attribute [tendsto_intros]
huffman
parents: 31492
diff changeset
   574
lemma tendsto_ident_at [tendsto_intros]: "((\<lambda>x. x) ---> a) (at a)"
44081
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   575
  unfolding tendsto_def eventually_at_topological by auto
31565
da5a5589418e theorem attribute [tendsto_intros]
huffman
parents: 31492
diff changeset
   576
da5a5589418e theorem attribute [tendsto_intros]
huffman
parents: 31492
diff changeset
   577
lemma tendsto_ident_at_within [tendsto_intros]:
36655
88f0125c3bd2 remove unneeded premise
huffman
parents: 36654
diff changeset
   578
  "((\<lambda>x. x) ---> a) (at a within S)"
44081
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   579
  unfolding tendsto_def eventually_within eventually_at_topological by auto
31565
da5a5589418e theorem attribute [tendsto_intros]
huffman
parents: 31492
diff changeset
   580
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   581
lemma tendsto_const [tendsto_intros]: "((\<lambda>x. k) ---> k) F"
44081
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   582
  by (simp add: tendsto_def)
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   583
44205
18da2a87421c generalize constant 'lim' and limit uniqueness theorems to class t2_space
huffman
parents: 44195
diff changeset
   584
lemma tendsto_unique:
18da2a87421c generalize constant 'lim' and limit uniqueness theorems to class t2_space
huffman
parents: 44195
diff changeset
   585
  fixes f :: "'a \<Rightarrow> 'b::t2_space"
18da2a87421c generalize constant 'lim' and limit uniqueness theorems to class t2_space
huffman
parents: 44195
diff changeset
   586
  assumes "\<not> trivial_limit F" and "(f ---> a) F" and "(f ---> b) F"
18da2a87421c generalize constant 'lim' and limit uniqueness theorems to class t2_space
huffman
parents: 44195
diff changeset
   587
  shows "a = b"
18da2a87421c generalize constant 'lim' and limit uniqueness theorems to class t2_space
huffman
parents: 44195
diff changeset
   588
proof (rule ccontr)
18da2a87421c generalize constant 'lim' and limit uniqueness theorems to class t2_space
huffman
parents: 44195
diff changeset
   589
  assume "a \<noteq> b"
18da2a87421c generalize constant 'lim' and limit uniqueness theorems to class t2_space
huffman
parents: 44195
diff changeset
   590
  obtain U V where "open U" "open V" "a \<in> U" "b \<in> V" "U \<inter> V = {}"
18da2a87421c generalize constant 'lim' and limit uniqueness theorems to class t2_space
huffman
parents: 44195
diff changeset
   591
    using hausdorff [OF `a \<noteq> b`] by fast
18da2a87421c generalize constant 'lim' and limit uniqueness theorems to class t2_space
huffman
parents: 44195
diff changeset
   592
  have "eventually (\<lambda>x. f x \<in> U) F"
18da2a87421c generalize constant 'lim' and limit uniqueness theorems to class t2_space
huffman
parents: 44195
diff changeset
   593
    using `(f ---> a) F` `open U` `a \<in> U` by (rule topological_tendstoD)
18da2a87421c generalize constant 'lim' and limit uniqueness theorems to class t2_space
huffman
parents: 44195
diff changeset
   594
  moreover
18da2a87421c generalize constant 'lim' and limit uniqueness theorems to class t2_space
huffman
parents: 44195
diff changeset
   595
  have "eventually (\<lambda>x. f x \<in> V) F"
18da2a87421c generalize constant 'lim' and limit uniqueness theorems to class t2_space
huffman
parents: 44195
diff changeset
   596
    using `(f ---> b) F` `open V` `b \<in> V` by (rule topological_tendstoD)
18da2a87421c generalize constant 'lim' and limit uniqueness theorems to class t2_space
huffman
parents: 44195
diff changeset
   597
  ultimately
18da2a87421c generalize constant 'lim' and limit uniqueness theorems to class t2_space
huffman
parents: 44195
diff changeset
   598
  have "eventually (\<lambda>x. False) F"
18da2a87421c generalize constant 'lim' and limit uniqueness theorems to class t2_space
huffman
parents: 44195
diff changeset
   599
  proof (rule eventually_elim2)
18da2a87421c generalize constant 'lim' and limit uniqueness theorems to class t2_space
huffman
parents: 44195
diff changeset
   600
    fix x
18da2a87421c generalize constant 'lim' and limit uniqueness theorems to class t2_space
huffman
parents: 44195
diff changeset
   601
    assume "f x \<in> U" "f x \<in> V"
18da2a87421c generalize constant 'lim' and limit uniqueness theorems to class t2_space
huffman
parents: 44195
diff changeset
   602
    hence "f x \<in> U \<inter> V" by simp
18da2a87421c generalize constant 'lim' and limit uniqueness theorems to class t2_space
huffman
parents: 44195
diff changeset
   603
    with `U \<inter> V = {}` show "False" by simp
18da2a87421c generalize constant 'lim' and limit uniqueness theorems to class t2_space
huffman
parents: 44195
diff changeset
   604
  qed
18da2a87421c generalize constant 'lim' and limit uniqueness theorems to class t2_space
huffman
parents: 44195
diff changeset
   605
  with `\<not> trivial_limit F` show "False"
18da2a87421c generalize constant 'lim' and limit uniqueness theorems to class t2_space
huffman
parents: 44195
diff changeset
   606
    by (simp add: trivial_limit_def)
18da2a87421c generalize constant 'lim' and limit uniqueness theorems to class t2_space
huffman
parents: 44195
diff changeset
   607
qed
18da2a87421c generalize constant 'lim' and limit uniqueness theorems to class t2_space
huffman
parents: 44195
diff changeset
   608
36662
621122eeb138 generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents: 36656
diff changeset
   609
lemma tendsto_const_iff:
44205
18da2a87421c generalize constant 'lim' and limit uniqueness theorems to class t2_space
huffman
parents: 44195
diff changeset
   610
  fixes a b :: "'a::t2_space"
18da2a87421c generalize constant 'lim' and limit uniqueness theorems to class t2_space
huffman
parents: 44195
diff changeset
   611
  assumes "\<not> trivial_limit F" shows "((\<lambda>x. a) ---> b) F \<longleftrightarrow> a = b"
18da2a87421c generalize constant 'lim' and limit uniqueness theorems to class t2_space
huffman
parents: 44195
diff changeset
   612
  by (safe intro!: tendsto_const tendsto_unique [OF assms tendsto_const])
18da2a87421c generalize constant 'lim' and limit uniqueness theorems to class t2_space
huffman
parents: 44195
diff changeset
   613
44218
f0e442e24816 add lemma tendsto_compose
huffman
parents: 44206
diff changeset
   614
lemma tendsto_compose:
f0e442e24816 add lemma tendsto_compose
huffman
parents: 44206
diff changeset
   615
  assumes g: "(g ---> g l) (at l)"
f0e442e24816 add lemma tendsto_compose
huffman
parents: 44206
diff changeset
   616
  assumes f: "(f ---> l) F"
f0e442e24816 add lemma tendsto_compose
huffman
parents: 44206
diff changeset
   617
  shows "((\<lambda>x. g (f x)) ---> g l) F"
f0e442e24816 add lemma tendsto_compose
huffman
parents: 44206
diff changeset
   618
proof (rule topological_tendstoI)
f0e442e24816 add lemma tendsto_compose
huffman
parents: 44206
diff changeset
   619
  fix B assume B: "open B" "g l \<in> B"
f0e442e24816 add lemma tendsto_compose
huffman
parents: 44206
diff changeset
   620
  obtain A where A: "open A" "l \<in> A"
f0e442e24816 add lemma tendsto_compose
huffman
parents: 44206
diff changeset
   621
    and gB: "\<forall>y. y \<in> A \<longrightarrow> g y \<in> B"
f0e442e24816 add lemma tendsto_compose
huffman
parents: 44206
diff changeset
   622
    using topological_tendstoD [OF g B] B(2)
f0e442e24816 add lemma tendsto_compose
huffman
parents: 44206
diff changeset
   623
    unfolding eventually_at_topological by fast
f0e442e24816 add lemma tendsto_compose
huffman
parents: 44206
diff changeset
   624
  hence "\<forall>x. f x \<in> A \<longrightarrow> g (f x) \<in> B" by simp
f0e442e24816 add lemma tendsto_compose
huffman
parents: 44206
diff changeset
   625
  from this topological_tendstoD [OF f A]
f0e442e24816 add lemma tendsto_compose
huffman
parents: 44206
diff changeset
   626
  show "eventually (\<lambda>x. g (f x) \<in> B) F"
f0e442e24816 add lemma tendsto_compose
huffman
parents: 44206
diff changeset
   627
    by (rule eventually_mono)
f0e442e24816 add lemma tendsto_compose
huffman
parents: 44206
diff changeset
   628
qed
f0e442e24816 add lemma tendsto_compose
huffman
parents: 44206
diff changeset
   629
44253
c073a0bd8458 add lemma tendsto_compose_eventually; use it to shorten some proofs
huffman
parents: 44251
diff changeset
   630
lemma tendsto_compose_eventually:
c073a0bd8458 add lemma tendsto_compose_eventually; use it to shorten some proofs
huffman
parents: 44251
diff changeset
   631
  assumes g: "(g ---> m) (at l)"
c073a0bd8458 add lemma tendsto_compose_eventually; use it to shorten some proofs
huffman
parents: 44251
diff changeset
   632
  assumes f: "(f ---> l) F"
c073a0bd8458 add lemma tendsto_compose_eventually; use it to shorten some proofs
huffman
parents: 44251
diff changeset
   633
  assumes inj: "eventually (\<lambda>x. f x \<noteq> l) F"
c073a0bd8458 add lemma tendsto_compose_eventually; use it to shorten some proofs
huffman
parents: 44251
diff changeset
   634
  shows "((\<lambda>x. g (f x)) ---> m) F"
c073a0bd8458 add lemma tendsto_compose_eventually; use it to shorten some proofs
huffman
parents: 44251
diff changeset
   635
proof (rule topological_tendstoI)
c073a0bd8458 add lemma tendsto_compose_eventually; use it to shorten some proofs
huffman
parents: 44251
diff changeset
   636
  fix B assume B: "open B" "m \<in> B"
c073a0bd8458 add lemma tendsto_compose_eventually; use it to shorten some proofs
huffman
parents: 44251
diff changeset
   637
  obtain A where A: "open A" "l \<in> A"
c073a0bd8458 add lemma tendsto_compose_eventually; use it to shorten some proofs
huffman
parents: 44251
diff changeset
   638
    and gB: "\<And>y. y \<in> A \<Longrightarrow> y \<noteq> l \<Longrightarrow> g y \<in> B"
c073a0bd8458 add lemma tendsto_compose_eventually; use it to shorten some proofs
huffman
parents: 44251
diff changeset
   639
    using topological_tendstoD [OF g B]
c073a0bd8458 add lemma tendsto_compose_eventually; use it to shorten some proofs
huffman
parents: 44251
diff changeset
   640
    unfolding eventually_at_topological by fast
c073a0bd8458 add lemma tendsto_compose_eventually; use it to shorten some proofs
huffman
parents: 44251
diff changeset
   641
  show "eventually (\<lambda>x. g (f x) \<in> B) F"
c073a0bd8458 add lemma tendsto_compose_eventually; use it to shorten some proofs
huffman
parents: 44251
diff changeset
   642
    using topological_tendstoD [OF f A] inj
c073a0bd8458 add lemma tendsto_compose_eventually; use it to shorten some proofs
huffman
parents: 44251
diff changeset
   643
    by (rule eventually_elim2) (simp add: gB)
c073a0bd8458 add lemma tendsto_compose_eventually; use it to shorten some proofs
huffman
parents: 44251
diff changeset
   644
qed
c073a0bd8458 add lemma tendsto_compose_eventually; use it to shorten some proofs
huffman
parents: 44251
diff changeset
   645
44251
d101ed3177b6 add lemma metric_tendsto_imp_tendsto
huffman
parents: 44218
diff changeset
   646
lemma metric_tendsto_imp_tendsto:
d101ed3177b6 add lemma metric_tendsto_imp_tendsto
huffman
parents: 44218
diff changeset
   647
  assumes f: "(f ---> a) F"
d101ed3177b6 add lemma metric_tendsto_imp_tendsto
huffman
parents: 44218
diff changeset
   648
  assumes le: "eventually (\<lambda>x. dist (g x) b \<le> dist (f x) a) F"
d101ed3177b6 add lemma metric_tendsto_imp_tendsto
huffman
parents: 44218
diff changeset
   649
  shows "(g ---> b) F"
d101ed3177b6 add lemma metric_tendsto_imp_tendsto
huffman
parents: 44218
diff changeset
   650
proof (rule tendstoI)
d101ed3177b6 add lemma metric_tendsto_imp_tendsto
huffman
parents: 44218
diff changeset
   651
  fix e :: real assume "0 < e"
d101ed3177b6 add lemma metric_tendsto_imp_tendsto
huffman
parents: 44218
diff changeset
   652
  with f have "eventually (\<lambda>x. dist (f x) a < e) F" by (rule tendstoD)
d101ed3177b6 add lemma metric_tendsto_imp_tendsto
huffman
parents: 44218
diff changeset
   653
  with le show "eventually (\<lambda>x. dist (g x) b < e) F"
d101ed3177b6 add lemma metric_tendsto_imp_tendsto
huffman
parents: 44218
diff changeset
   654
    using le_less_trans by (rule eventually_elim2)
d101ed3177b6 add lemma metric_tendsto_imp_tendsto
huffman
parents: 44218
diff changeset
   655
qed
d101ed3177b6 add lemma metric_tendsto_imp_tendsto
huffman
parents: 44218
diff changeset
   656
44205
18da2a87421c generalize constant 'lim' and limit uniqueness theorems to class t2_space
huffman
parents: 44195
diff changeset
   657
subsubsection {* Distance and norms *}
36662
621122eeb138 generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents: 36656
diff changeset
   658
31565
da5a5589418e theorem attribute [tendsto_intros]
huffman
parents: 31492
diff changeset
   659
lemma tendsto_dist [tendsto_intros]:
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   660
  assumes f: "(f ---> l) F" and g: "(g ---> m) F"
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   661
  shows "((\<lambda>x. dist (f x) (g x)) ---> dist l m) F"
31565
da5a5589418e theorem attribute [tendsto_intros]
huffman
parents: 31492
diff changeset
   662
proof (rule tendstoI)
da5a5589418e theorem attribute [tendsto_intros]
huffman
parents: 31492
diff changeset
   663
  fix e :: real assume "0 < e"
da5a5589418e theorem attribute [tendsto_intros]
huffman
parents: 31492
diff changeset
   664
  hence e2: "0 < e/2" by simp
da5a5589418e theorem attribute [tendsto_intros]
huffman
parents: 31492
diff changeset
   665
  from tendstoD [OF f e2] tendstoD [OF g e2]
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   666
  show "eventually (\<lambda>x. dist (dist (f x) (g x)) (dist l m) < e) F"
31565
da5a5589418e theorem attribute [tendsto_intros]
huffman
parents: 31492
diff changeset
   667
  proof (rule eventually_elim2)
da5a5589418e theorem attribute [tendsto_intros]
huffman
parents: 31492
diff changeset
   668
    fix x assume "dist (f x) l < e/2" "dist (g x) m < e/2"
da5a5589418e theorem attribute [tendsto_intros]
huffman
parents: 31492
diff changeset
   669
    then show "dist (dist (f x) (g x)) (dist l m) < e"
da5a5589418e theorem attribute [tendsto_intros]
huffman
parents: 31492
diff changeset
   670
      unfolding dist_real_def
da5a5589418e theorem attribute [tendsto_intros]
huffman
parents: 31492
diff changeset
   671
      using dist_triangle2 [of "f x" "g x" "l"]
da5a5589418e theorem attribute [tendsto_intros]
huffman
parents: 31492
diff changeset
   672
      using dist_triangle2 [of "g x" "l" "m"]
da5a5589418e theorem attribute [tendsto_intros]
huffman
parents: 31492
diff changeset
   673
      using dist_triangle3 [of "l" "m" "f x"]
da5a5589418e theorem attribute [tendsto_intros]
huffman
parents: 31492
diff changeset
   674
      using dist_triangle [of "f x" "m" "g x"]
da5a5589418e theorem attribute [tendsto_intros]
huffman
parents: 31492
diff changeset
   675
      by arith
da5a5589418e theorem attribute [tendsto_intros]
huffman
parents: 31492
diff changeset
   676
  qed
da5a5589418e theorem attribute [tendsto_intros]
huffman
parents: 31492
diff changeset
   677
qed
da5a5589418e theorem attribute [tendsto_intros]
huffman
parents: 31492
diff changeset
   678
36662
621122eeb138 generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents: 36656
diff changeset
   679
lemma norm_conv_dist: "norm x = dist x 0"
44081
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   680
  unfolding dist_norm by simp
36662
621122eeb138 generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents: 36656
diff changeset
   681
31565
da5a5589418e theorem attribute [tendsto_intros]
huffman
parents: 31492
diff changeset
   682
lemma tendsto_norm [tendsto_intros]:
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   683
  "(f ---> a) F \<Longrightarrow> ((\<lambda>x. norm (f x)) ---> norm a) F"
44081
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   684
  unfolding norm_conv_dist by (intro tendsto_intros)
36662
621122eeb138 generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents: 36656
diff changeset
   685
621122eeb138 generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents: 36656
diff changeset
   686
lemma tendsto_norm_zero:
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   687
  "(f ---> 0) F \<Longrightarrow> ((\<lambda>x. norm (f x)) ---> 0) F"
44081
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   688
  by (drule tendsto_norm, simp)
36662
621122eeb138 generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents: 36656
diff changeset
   689
621122eeb138 generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents: 36656
diff changeset
   690
lemma tendsto_norm_zero_cancel:
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   691
  "((\<lambda>x. norm (f x)) ---> 0) F \<Longrightarrow> (f ---> 0) F"
44081
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   692
  unfolding tendsto_iff dist_norm by simp
36662
621122eeb138 generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents: 36656
diff changeset
   693
621122eeb138 generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents: 36656
diff changeset
   694
lemma tendsto_norm_zero_iff:
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   695
  "((\<lambda>x. norm (f x)) ---> 0) F \<longleftrightarrow> (f ---> 0) F"
44081
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   696
  unfolding tendsto_iff dist_norm by simp
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   697
44194
0639898074ae generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents: 44081
diff changeset
   698
lemma tendsto_rabs [tendsto_intros]:
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   699
  "(f ---> (l::real)) F \<Longrightarrow> ((\<lambda>x. \<bar>f x\<bar>) ---> \<bar>l\<bar>) F"
44194
0639898074ae generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents: 44081
diff changeset
   700
  by (fold real_norm_def, rule tendsto_norm)
0639898074ae generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents: 44081
diff changeset
   701
0639898074ae generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents: 44081
diff changeset
   702
lemma tendsto_rabs_zero:
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   703
  "(f ---> (0::real)) F \<Longrightarrow> ((\<lambda>x. \<bar>f x\<bar>) ---> 0) F"
44194
0639898074ae generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents: 44081
diff changeset
   704
  by (fold real_norm_def, rule tendsto_norm_zero)
0639898074ae generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents: 44081
diff changeset
   705
0639898074ae generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents: 44081
diff changeset
   706
lemma tendsto_rabs_zero_cancel:
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   707
  "((\<lambda>x. \<bar>f x\<bar>) ---> (0::real)) F \<Longrightarrow> (f ---> 0) F"
44194
0639898074ae generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents: 44081
diff changeset
   708
  by (fold real_norm_def, rule tendsto_norm_zero_cancel)
0639898074ae generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents: 44081
diff changeset
   709
0639898074ae generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents: 44081
diff changeset
   710
lemma tendsto_rabs_zero_iff:
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   711
  "((\<lambda>x. \<bar>f x\<bar>) ---> (0::real)) F \<longleftrightarrow> (f ---> 0) F"
44194
0639898074ae generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents: 44081
diff changeset
   712
  by (fold real_norm_def, rule tendsto_norm_zero_iff)
0639898074ae generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents: 44081
diff changeset
   713
0639898074ae generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents: 44081
diff changeset
   714
subsubsection {* Addition and subtraction *}
0639898074ae generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents: 44081
diff changeset
   715
31565
da5a5589418e theorem attribute [tendsto_intros]
huffman
parents: 31492
diff changeset
   716
lemma tendsto_add [tendsto_intros]:
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   717
  fixes a b :: "'a::real_normed_vector"
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   718
  shows "\<lbrakk>(f ---> a) F; (g ---> b) F\<rbrakk> \<Longrightarrow> ((\<lambda>x. f x + g x) ---> a + b) F"
44081
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   719
  by (simp only: tendsto_Zfun_iff add_diff_add Zfun_add)
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   720
44194
0639898074ae generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents: 44081
diff changeset
   721
lemma tendsto_add_zero:
0639898074ae generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents: 44081
diff changeset
   722
  fixes f g :: "'a::type \<Rightarrow> 'b::real_normed_vector"
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   723
  shows "\<lbrakk>(f ---> 0) F; (g ---> 0) F\<rbrakk> \<Longrightarrow> ((\<lambda>x. f x + g x) ---> 0) F"
44194
0639898074ae generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents: 44081
diff changeset
   724
  by (drule (1) tendsto_add, simp)
0639898074ae generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents: 44081
diff changeset
   725
31565
da5a5589418e theorem attribute [tendsto_intros]
huffman
parents: 31492
diff changeset
   726
lemma tendsto_minus [tendsto_intros]:
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   727
  fixes a :: "'a::real_normed_vector"
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   728
  shows "(f ---> a) F \<Longrightarrow> ((\<lambda>x. - f x) ---> - a) F"
44081
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   729
  by (simp only: tendsto_Zfun_iff minus_diff_minus Zfun_minus)
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   730
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   731
lemma tendsto_minus_cancel:
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   732
  fixes a :: "'a::real_normed_vector"
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   733
  shows "((\<lambda>x. - f x) ---> - a) F \<Longrightarrow> (f ---> a) F"
44081
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   734
  by (drule tendsto_minus, simp)
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   735
31565
da5a5589418e theorem attribute [tendsto_intros]
huffman
parents: 31492
diff changeset
   736
lemma tendsto_diff [tendsto_intros]:
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   737
  fixes a b :: "'a::real_normed_vector"
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   738
  shows "\<lbrakk>(f ---> a) F; (g ---> b) F\<rbrakk> \<Longrightarrow> ((\<lambda>x. f x - g x) ---> a - b) F"
44081
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   739
  by (simp add: diff_minus tendsto_add tendsto_minus)
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   740
31588
2651f172c38b add lemma tendsto_setsum
huffman
parents: 31565
diff changeset
   741
lemma tendsto_setsum [tendsto_intros]:
2651f172c38b add lemma tendsto_setsum
huffman
parents: 31565
diff changeset
   742
  fixes f :: "'a \<Rightarrow> 'b \<Rightarrow> 'c::real_normed_vector"
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   743
  assumes "\<And>i. i \<in> S \<Longrightarrow> (f i ---> a i) F"
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   744
  shows "((\<lambda>x. \<Sum>i\<in>S. f i x) ---> (\<Sum>i\<in>S. a i)) F"
31588
2651f172c38b add lemma tendsto_setsum
huffman
parents: 31565
diff changeset
   745
proof (cases "finite S")
2651f172c38b add lemma tendsto_setsum
huffman
parents: 31565
diff changeset
   746
  assume "finite S" thus ?thesis using assms
44194
0639898074ae generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents: 44081
diff changeset
   747
    by (induct, simp add: tendsto_const, simp add: tendsto_add)
31588
2651f172c38b add lemma tendsto_setsum
huffman
parents: 31565
diff changeset
   748
next
2651f172c38b add lemma tendsto_setsum
huffman
parents: 31565
diff changeset
   749
  assume "\<not> finite S" thus ?thesis
2651f172c38b add lemma tendsto_setsum
huffman
parents: 31565
diff changeset
   750
    by (simp add: tendsto_const)
2651f172c38b add lemma tendsto_setsum
huffman
parents: 31565
diff changeset
   751
qed
2651f172c38b add lemma tendsto_setsum
huffman
parents: 31565
diff changeset
   752
44194
0639898074ae generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents: 44081
diff changeset
   753
subsubsection {* Linear operators and multiplication *}
0639898074ae generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents: 44081
diff changeset
   754
44282
f0de18b62d63 remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents: 44253
diff changeset
   755
lemma (in bounded_linear) tendsto:
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   756
  "(g ---> a) F \<Longrightarrow> ((\<lambda>x. f (g x)) ---> f a) F"
44081
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   757
  by (simp only: tendsto_Zfun_iff diff [symmetric] Zfun)
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   758
44194
0639898074ae generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents: 44081
diff changeset
   759
lemma (in bounded_linear) tendsto_zero:
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   760
  "(g ---> 0) F \<Longrightarrow> ((\<lambda>x. f (g x)) ---> 0) F"
44194
0639898074ae generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents: 44081
diff changeset
   761
  by (drule tendsto, simp only: zero)
0639898074ae generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents: 44081
diff changeset
   762
44282
f0de18b62d63 remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents: 44253
diff changeset
   763
lemma (in bounded_bilinear) tendsto:
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   764
  "\<lbrakk>(f ---> a) F; (g ---> b) F\<rbrakk> \<Longrightarrow> ((\<lambda>x. f x ** g x) ---> a ** b) F"
44081
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   765
  by (simp only: tendsto_Zfun_iff prod_diff_prod
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   766
                 Zfun_add Zfun Zfun_left Zfun_right)
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   767
44194
0639898074ae generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents: 44081
diff changeset
   768
lemma (in bounded_bilinear) tendsto_zero:
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   769
  assumes f: "(f ---> 0) F"
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   770
  assumes g: "(g ---> 0) F"
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   771
  shows "((\<lambda>x. f x ** g x) ---> 0) F"
44194
0639898074ae generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents: 44081
diff changeset
   772
  using tendsto [OF f g] by (simp add: zero_left)
31355
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   773
44194
0639898074ae generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents: 44081
diff changeset
   774
lemma (in bounded_bilinear) tendsto_left_zero:
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   775
  "(f ---> 0) F \<Longrightarrow> ((\<lambda>x. f x ** c) ---> 0) F"
44194
0639898074ae generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents: 44081
diff changeset
   776
  by (rule bounded_linear.tendsto_zero [OF bounded_linear_left])
0639898074ae generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents: 44081
diff changeset
   777
0639898074ae generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents: 44081
diff changeset
   778
lemma (in bounded_bilinear) tendsto_right_zero:
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   779
  "(f ---> 0) F \<Longrightarrow> ((\<lambda>x. c ** f x) ---> 0) F"
44194
0639898074ae generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents: 44081
diff changeset
   780
  by (rule bounded_linear.tendsto_zero [OF bounded_linear_right])
0639898074ae generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents: 44081
diff changeset
   781
44282
f0de18b62d63 remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents: 44253
diff changeset
   782
lemmas tendsto_of_real [tendsto_intros] =
f0de18b62d63 remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents: 44253
diff changeset
   783
  bounded_linear.tendsto [OF bounded_linear_of_real]
f0de18b62d63 remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents: 44253
diff changeset
   784
f0de18b62d63 remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents: 44253
diff changeset
   785
lemmas tendsto_scaleR [tendsto_intros] =
f0de18b62d63 remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents: 44253
diff changeset
   786
  bounded_bilinear.tendsto [OF bounded_bilinear_scaleR]
f0de18b62d63 remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents: 44253
diff changeset
   787
f0de18b62d63 remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents: 44253
diff changeset
   788
lemmas tendsto_mult [tendsto_intros] =
f0de18b62d63 remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents: 44253
diff changeset
   789
  bounded_bilinear.tendsto [OF bounded_bilinear_mult]
44194
0639898074ae generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents: 44081
diff changeset
   790
0639898074ae generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents: 44081
diff changeset
   791
lemma tendsto_power [tendsto_intros]:
0639898074ae generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents: 44081
diff changeset
   792
  fixes f :: "'a \<Rightarrow> 'b::{power,real_normed_algebra}"
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   793
  shows "(f ---> a) F \<Longrightarrow> ((\<lambda>x. f x ^ n) ---> a ^ n) F"
44194
0639898074ae generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents: 44081
diff changeset
   794
  by (induct n) (simp_all add: tendsto_const tendsto_mult)
0639898074ae generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents: 44081
diff changeset
   795
0639898074ae generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents: 44081
diff changeset
   796
lemma tendsto_setprod [tendsto_intros]:
0639898074ae generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents: 44081
diff changeset
   797
  fixes f :: "'a \<Rightarrow> 'b \<Rightarrow> 'c::{real_normed_algebra,comm_ring_1}"
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   798
  assumes "\<And>i. i \<in> S \<Longrightarrow> (f i ---> L i) F"
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   799
  shows "((\<lambda>x. \<Prod>i\<in>S. f i x) ---> (\<Prod>i\<in>S. L i)) F"
44194
0639898074ae generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents: 44081
diff changeset
   800
proof (cases "finite S")
0639898074ae generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents: 44081
diff changeset
   801
  assume "finite S" thus ?thesis using assms
0639898074ae generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents: 44081
diff changeset
   802
    by (induct, simp add: tendsto_const, simp add: tendsto_mult)
0639898074ae generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents: 44081
diff changeset
   803
next
0639898074ae generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents: 44081
diff changeset
   804
  assume "\<not> finite S" thus ?thesis
0639898074ae generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents: 44081
diff changeset
   805
    by (simp add: tendsto_const)
0639898074ae generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents: 44081
diff changeset
   806
qed
0639898074ae generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents: 44081
diff changeset
   807
0639898074ae generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents: 44081
diff changeset
   808
subsubsection {* Inverse and division *}
31355
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   809
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   810
lemma (in bounded_bilinear) Zfun_prod_Bfun:
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   811
  assumes f: "Zfun f F"
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   812
  assumes g: "Bfun g F"
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   813
  shows "Zfun (\<lambda>x. f x ** g x) F"
31355
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   814
proof -
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   815
  obtain K where K: "0 \<le> K"
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   816
    and norm_le: "\<And>x y. norm (x ** y) \<le> norm x * norm y * K"
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   817
    using nonneg_bounded by fast
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   818
  obtain B where B: "0 < B"
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   819
    and norm_g: "eventually (\<lambda>x. norm (g x) \<le> B) F"
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   820
    using g by (rule BfunE)
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   821
  have "eventually (\<lambda>x. norm (f x ** g x) \<le> norm (f x) * (B * K)) F"
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   822
  using norm_g proof (rule eventually_elim1)
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   823
    fix x
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   824
    assume *: "norm (g x) \<le> B"
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   825
    have "norm (f x ** g x) \<le> norm (f x) * norm (g x) * K"
31355
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   826
      by (rule norm_le)
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   827
    also have "\<dots> \<le> norm (f x) * B * K"
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   828
      by (intro mult_mono' order_refl norm_g norm_ge_zero
31355
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   829
                mult_nonneg_nonneg K *)
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   830
    also have "\<dots> = norm (f x) * (B * K)"
31355
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   831
      by (rule mult_assoc)
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   832
    finally show "norm (f x ** g x) \<le> norm (f x) * (B * K)" .
31355
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   833
  qed
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   834
  with f show ?thesis
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   835
    by (rule Zfun_imp_Zfun)
31355
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   836
qed
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   837
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   838
lemma (in bounded_bilinear) flip:
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   839
  "bounded_bilinear (\<lambda>x y. y ** x)"
44081
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   840
  apply default
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   841
  apply (rule add_right)
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   842
  apply (rule add_left)
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   843
  apply (rule scaleR_right)
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   844
  apply (rule scaleR_left)
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   845
  apply (subst mult_commute)
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   846
  using bounded by fast
31355
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   847
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   848
lemma (in bounded_bilinear) Bfun_prod_Zfun:
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   849
  assumes f: "Bfun f F"
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   850
  assumes g: "Zfun g F"
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   851
  shows "Zfun (\<lambda>x. f x ** g x) F"
44081
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   852
  using flip g f by (rule bounded_bilinear.Zfun_prod_Bfun)
31355
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   853
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   854
lemma Bfun_inverse_lemma:
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   855
  fixes x :: "'a::real_normed_div_algebra"
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   856
  shows "\<lbrakk>r \<le> norm x; 0 < r\<rbrakk> \<Longrightarrow> norm (inverse x) \<le> inverse r"
44081
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   857
  apply (subst nonzero_norm_inverse, clarsimp)
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   858
  apply (erule (1) le_imp_inverse_le)
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   859
  done
31355
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   860
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   861
lemma Bfun_inverse:
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   862
  fixes a :: "'a::real_normed_div_algebra"
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   863
  assumes f: "(f ---> a) F"
31355
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   864
  assumes a: "a \<noteq> 0"
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   865
  shows "Bfun (\<lambda>x. inverse (f x)) F"
31355
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   866
proof -
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   867
  from a have "0 < norm a" by simp
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   868
  hence "\<exists>r>0. r < norm a" by (rule dense)
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   869
  then obtain r where r1: "0 < r" and r2: "r < norm a" by fast
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   870
  have "eventually (\<lambda>x. dist (f x) a < r) F"
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   871
    using tendstoD [OF f r1] by fast
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   872
  hence "eventually (\<lambda>x. norm (inverse (f x)) \<le> inverse (norm a - r)) F"
31355
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   873
  proof (rule eventually_elim1)
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   874
    fix x
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   875
    assume "dist (f x) a < r"
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   876
    hence 1: "norm (f x - a) < r"
31355
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   877
      by (simp add: dist_norm)
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   878
    hence 2: "f x \<noteq> 0" using r2 by auto
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   879
    hence "norm (inverse (f x)) = inverse (norm (f x))"
31355
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   880
      by (rule nonzero_norm_inverse)
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   881
    also have "\<dots> \<le> inverse (norm a - r)"
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   882
    proof (rule le_imp_inverse_le)
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   883
      show "0 < norm a - r" using r2 by simp
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   884
    next
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   885
      have "norm a - norm (f x) \<le> norm (a - f x)"
31355
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   886
        by (rule norm_triangle_ineq2)
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   887
      also have "\<dots> = norm (f x - a)"
31355
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   888
        by (rule norm_minus_commute)
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   889
      also have "\<dots> < r" using 1 .
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   890
      finally show "norm a - r \<le> norm (f x)" by simp
31355
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   891
    qed
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   892
    finally show "norm (inverse (f x)) \<le> inverse (norm a - r)" .
31355
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   893
  qed
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   894
  thus ?thesis by (rule BfunI)
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   895
qed
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   896
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   897
lemma tendsto_inverse_lemma:
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   898
  fixes a :: "'a::real_normed_div_algebra"
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   899
  shows "\<lbrakk>(f ---> a) F; a \<noteq> 0; eventually (\<lambda>x. f x \<noteq> 0) F\<rbrakk>
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   900
         \<Longrightarrow> ((\<lambda>x. inverse (f x)) ---> inverse a) F"
44081
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   901
  apply (subst tendsto_Zfun_iff)
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   902
  apply (rule Zfun_ssubst)
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   903
  apply (erule eventually_elim1)
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   904
  apply (erule (1) inverse_diff_inverse)
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   905
  apply (rule Zfun_minus)
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   906
  apply (rule Zfun_mult_left)
44282
f0de18b62d63 remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents: 44253
diff changeset
   907
  apply (rule bounded_bilinear.Bfun_prod_Zfun [OF bounded_bilinear_mult])
44081
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   908
  apply (erule (1) Bfun_inverse)
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   909
  apply (simp add: tendsto_Zfun_iff)
730f7cced3a6 rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents: 44079
diff changeset
   910
  done
31355
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   911
31565
da5a5589418e theorem attribute [tendsto_intros]
huffman
parents: 31492
diff changeset
   912
lemma tendsto_inverse [tendsto_intros]:
31355
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   913
  fixes a :: "'a::real_normed_div_algebra"
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   914
  assumes f: "(f ---> a) F"
31355
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   915
  assumes a: "a \<noteq> 0"
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   916
  shows "((\<lambda>x. inverse (f x)) ---> inverse a) F"
31355
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   917
proof -
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   918
  from a have "0 < norm a" by simp
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   919
  with f have "eventually (\<lambda>x. dist (f x) a < norm a) F"
31355
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   920
    by (rule tendstoD)
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   921
  then have "eventually (\<lambda>x. f x \<noteq> 0) F"
31355
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   922
    unfolding dist_norm by (auto elim!: eventually_elim1)
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   923
  with f a show ?thesis
31355
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   924
    by (rule tendsto_inverse_lemma)
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   925
qed
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   926
31565
da5a5589418e theorem attribute [tendsto_intros]
huffman
parents: 31492
diff changeset
   927
lemma tendsto_divide [tendsto_intros]:
31355
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   928
  fixes a b :: "'a::real_normed_field"
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   929
  shows "\<lbrakk>(f ---> a) F; (g ---> b) F; b \<noteq> 0\<rbrakk>
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   930
    \<Longrightarrow> ((\<lambda>x. f x / g x) ---> a / b) F"
44282
f0de18b62d63 remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents: 44253
diff changeset
   931
  by (simp add: tendsto_mult tendsto_inverse divide_inverse)
31355
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   932
44194
0639898074ae generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents: 44081
diff changeset
   933
lemma tendsto_sgn [tendsto_intros]:
0639898074ae generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents: 44081
diff changeset
   934
  fixes l :: "'a::real_normed_vector"
44195
f5363511b212 consistently use variable name 'F' for filters
huffman
parents: 44194
diff changeset
   935
  shows "\<lbrakk>(f ---> l) F; l \<noteq> 0\<rbrakk> \<Longrightarrow> ((\<lambda>x. sgn (f x)) ---> sgn l) F"
44194
0639898074ae generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents: 44081
diff changeset
   936
  unfolding sgn_div_norm by (simp add: tendsto_intros)
0639898074ae generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents: 44081
diff changeset
   937
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   938
end