src/HOL/Limits.thy
author huffman
Sat, 01 May 2010 11:46:47 -0700
changeset 36630 aa1f8acdcc1c
parent 36629 de62713aec6e
child 36654 7c8eb32724ce
permissions -rw-r--r--
complete_lattice instance for net type
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
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
     8
imports RealVector RComplete
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
31392
69570155ddf8 replace filters with filter bases
huffman
parents: 31357
diff changeset
    11
subsection {* Nets *}
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 {*
36630
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
    14
  A net is now defined simply as a filter on a set.
36358
246493d61204 define nets directly as filters, instead of as filter bases
huffman
parents: 31902
diff changeset
    15
  The definition also allows non-proper filters.
31392
69570155ddf8 replace filters with filter bases
huffman
parents: 31357
diff changeset
    16
*}
69570155ddf8 replace filters with filter bases
huffman
parents: 31357
diff changeset
    17
36358
246493d61204 define nets directly as filters, instead of as filter bases
huffman
parents: 31902
diff changeset
    18
locale is_filter =
246493d61204 define nets directly as filters, instead of as filter bases
huffman
parents: 31902
diff changeset
    19
  fixes net :: "('a \<Rightarrow> bool) \<Rightarrow> bool"
246493d61204 define nets directly as filters, instead of as filter bases
huffman
parents: 31902
diff changeset
    20
  assumes True: "net (\<lambda>x. True)"
246493d61204 define nets directly as filters, instead of as filter bases
huffman
parents: 31902
diff changeset
    21
  assumes conj: "net (\<lambda>x. P x) \<Longrightarrow> net (\<lambda>x. Q x) \<Longrightarrow> net (\<lambda>x. P x \<and> Q x)"
246493d61204 define nets directly as filters, instead of as filter bases
huffman
parents: 31902
diff changeset
    22
  assumes mono: "\<forall>x. P x \<longrightarrow> Q x \<Longrightarrow> net (\<lambda>x. P x) \<Longrightarrow> net (\<lambda>x. Q x)"
246493d61204 define nets directly as filters, instead of as filter bases
huffman
parents: 31902
diff changeset
    23
31392
69570155ddf8 replace filters with filter bases
huffman
parents: 31357
diff changeset
    24
typedef (open) 'a net =
36358
246493d61204 define nets directly as filters, instead of as filter bases
huffman
parents: 31902
diff changeset
    25
  "{net :: ('a \<Rightarrow> bool) \<Rightarrow> bool. is_filter net}"
31392
69570155ddf8 replace filters with filter bases
huffman
parents: 31357
diff changeset
    26
proof
36358
246493d61204 define nets directly as filters, instead of as filter bases
huffman
parents: 31902
diff changeset
    27
  show "(\<lambda>x. True) \<in> ?net" by (auto intro: is_filter.intro)
31392
69570155ddf8 replace filters with filter bases
huffman
parents: 31357
diff changeset
    28
qed
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
    29
36358
246493d61204 define nets directly as filters, instead of as filter bases
huffman
parents: 31902
diff changeset
    30
lemma is_filter_Rep_net: "is_filter (Rep_net net)"
31392
69570155ddf8 replace filters with filter bases
huffman
parents: 31357
diff changeset
    31
using Rep_net [of net] by simp
69570155ddf8 replace filters with filter bases
huffman
parents: 31357
diff changeset
    32
69570155ddf8 replace filters with filter bases
huffman
parents: 31357
diff changeset
    33
lemma Abs_net_inverse':
36358
246493d61204 define nets directly as filters, instead of as filter bases
huffman
parents: 31902
diff changeset
    34
  assumes "is_filter net" shows "Rep_net (Abs_net net) = net"
31392
69570155ddf8 replace filters with filter bases
huffman
parents: 31357
diff changeset
    35
using assms by (simp add: Abs_net_inverse)
69570155ddf8 replace filters with filter bases
huffman
parents: 31357
diff changeset
    36
69570155ddf8 replace filters with filter bases
huffman
parents: 31357
diff changeset
    37
69570155ddf8 replace filters with filter bases
huffman
parents: 31357
diff changeset
    38
subsection {* Eventually *}
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
    39
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
    40
definition
31392
69570155ddf8 replace filters with filter bases
huffman
parents: 31357
diff changeset
    41
  eventually :: "('a \<Rightarrow> bool) \<Rightarrow> 'a net \<Rightarrow> bool" where
36358
246493d61204 define nets directly as filters, instead of as filter bases
huffman
parents: 31902
diff changeset
    42
  [code del]: "eventually P net \<longleftrightarrow> Rep_net net P"
246493d61204 define nets directly as filters, instead of as filter bases
huffman
parents: 31902
diff changeset
    43
246493d61204 define nets directly as filters, instead of as filter bases
huffman
parents: 31902
diff changeset
    44
lemma eventually_Abs_net:
246493d61204 define nets directly as filters, instead of as filter bases
huffman
parents: 31902
diff changeset
    45
  assumes "is_filter net" shows "eventually P (Abs_net net) = net P"
246493d61204 define nets directly as filters, instead of as filter bases
huffman
parents: 31902
diff changeset
    46
unfolding eventually_def using assms by (simp add: Abs_net_inverse)
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
    47
36360
9d8f7efd9289 define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents: 36358
diff changeset
    48
lemma expand_net_eq:
9d8f7efd9289 define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents: 36358
diff changeset
    49
  shows "net = net' \<longleftrightarrow> (\<forall>P. eventually P net = eventually P net')"
9d8f7efd9289 define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents: 36358
diff changeset
    50
unfolding Rep_net_inject [symmetric] expand_fun_eq eventually_def ..
9d8f7efd9289 define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents: 36358
diff changeset
    51
31392
69570155ddf8 replace filters with filter bases
huffman
parents: 31357
diff changeset
    52
lemma eventually_True [simp]: "eventually (\<lambda>x. True) net"
36358
246493d61204 define nets directly as filters, instead of as filter bases
huffman
parents: 31902
diff changeset
    53
unfolding eventually_def
246493d61204 define nets directly as filters, instead of as filter bases
huffman
parents: 31902
diff changeset
    54
by (rule is_filter.True [OF is_filter_Rep_net])
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
    55
36630
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
    56
lemma always_eventually: "\<forall>x. P x \<Longrightarrow> eventually P net"
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
    57
proof -
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
    58
  assume "\<forall>x. P x" hence "P = (\<lambda>x. True)" by (simp add: ext)
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
    59
  thus "eventually P net" by simp
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
    60
qed
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
    61
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
    62
lemma eventually_mono:
31392
69570155ddf8 replace filters with filter bases
huffman
parents: 31357
diff changeset
    63
  "(\<forall>x. P x \<longrightarrow> Q x) \<Longrightarrow> eventually P net \<Longrightarrow> eventually Q net"
36358
246493d61204 define nets directly as filters, instead of as filter bases
huffman
parents: 31902
diff changeset
    64
unfolding eventually_def
246493d61204 define nets directly as filters, instead of as filter bases
huffman
parents: 31902
diff changeset
    65
by (rule is_filter.mono [OF is_filter_Rep_net])
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
    66
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
    67
lemma eventually_conj:
31392
69570155ddf8 replace filters with filter bases
huffman
parents: 31357
diff changeset
    68
  assumes P: "eventually (\<lambda>x. P x) net"
69570155ddf8 replace filters with filter bases
huffman
parents: 31357
diff changeset
    69
  assumes Q: "eventually (\<lambda>x. Q x) net"
69570155ddf8 replace filters with filter bases
huffman
parents: 31357
diff changeset
    70
  shows "eventually (\<lambda>x. P x \<and> Q x) net"
36358
246493d61204 define nets directly as filters, instead of as filter bases
huffman
parents: 31902
diff changeset
    71
using assms unfolding eventually_def
246493d61204 define nets directly as filters, instead of as filter bases
huffman
parents: 31902
diff changeset
    72
by (rule is_filter.conj [OF is_filter_Rep_net])
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
    73
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
    74
lemma eventually_mp:
31392
69570155ddf8 replace filters with filter bases
huffman
parents: 31357
diff changeset
    75
  assumes "eventually (\<lambda>x. P x \<longrightarrow> Q x) net"
69570155ddf8 replace filters with filter bases
huffman
parents: 31357
diff changeset
    76
  assumes "eventually (\<lambda>x. P x) net"
69570155ddf8 replace filters with filter bases
huffman
parents: 31357
diff changeset
    77
  shows "eventually (\<lambda>x. Q x) net"
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
    78
proof (rule eventually_mono)
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
    79
  show "\<forall>x. (P x \<longrightarrow> Q x) \<and> P x \<longrightarrow> Q x" by simp
31392
69570155ddf8 replace filters with filter bases
huffman
parents: 31357
diff changeset
    80
  show "eventually (\<lambda>x. (P x \<longrightarrow> Q x) \<and> P x) net"
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
    81
    using assms by (rule eventually_conj)
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
    82
qed
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
    83
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
    84
lemma eventually_rev_mp:
31392
69570155ddf8 replace filters with filter bases
huffman
parents: 31357
diff changeset
    85
  assumes "eventually (\<lambda>x. P x) net"
69570155ddf8 replace filters with filter bases
huffman
parents: 31357
diff changeset
    86
  assumes "eventually (\<lambda>x. P x \<longrightarrow> Q x) net"
69570155ddf8 replace filters with filter bases
huffman
parents: 31357
diff changeset
    87
  shows "eventually (\<lambda>x. Q x) net"
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
    88
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
    89
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
    90
lemma eventually_conj_iff:
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
    91
  "eventually (\<lambda>x. P x \<and> Q x) net \<longleftrightarrow> eventually P net \<and> eventually Q net"
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
    92
by (auto intro: eventually_conj elim: eventually_rev_mp)
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
    93
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
    94
lemma eventually_elim1:
31392
69570155ddf8 replace filters with filter bases
huffman
parents: 31357
diff changeset
    95
  assumes "eventually (\<lambda>i. P i) net"
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
    96
  assumes "\<And>i. P i \<Longrightarrow> Q i"
31392
69570155ddf8 replace filters with filter bases
huffman
parents: 31357
diff changeset
    97
  shows "eventually (\<lambda>i. Q i) net"
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
    98
using assms by (auto elim!: eventually_rev_mp)
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
    99
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   100
lemma eventually_elim2:
31392
69570155ddf8 replace filters with filter bases
huffman
parents: 31357
diff changeset
   101
  assumes "eventually (\<lambda>i. P i) net"
69570155ddf8 replace filters with filter bases
huffman
parents: 31357
diff changeset
   102
  assumes "eventually (\<lambda>i. Q i) net"
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   103
  assumes "\<And>i. P i \<Longrightarrow> Q i \<Longrightarrow> R i"
31392
69570155ddf8 replace filters with filter bases
huffman
parents: 31357
diff changeset
   104
  shows "eventually (\<lambda>i. R i) net"
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   105
using assms by (auto elim!: eventually_rev_mp)
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   106
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   107
36360
9d8f7efd9289 define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents: 36358
diff changeset
   108
subsection {* Finer-than relation *}
9d8f7efd9289 define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents: 36358
diff changeset
   109
36629
de62713aec6e swap ordering on nets, so x <= y means 'x is finer than y'
huffman
parents: 36360
diff changeset
   110
text {* @{term "net \<le> net'"} means that @{term net} is finer than
de62713aec6e swap ordering on nets, so x <= y means 'x is finer than y'
huffman
parents: 36360
diff changeset
   111
@{term net'}. *}
36360
9d8f7efd9289 define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents: 36358
diff changeset
   112
36630
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   113
instantiation net :: (type) complete_lattice
36360
9d8f7efd9289 define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents: 36358
diff changeset
   114
begin
9d8f7efd9289 define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents: 36358
diff changeset
   115
9d8f7efd9289 define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents: 36358
diff changeset
   116
definition
9d8f7efd9289 define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents: 36358
diff changeset
   117
  le_net_def [code del]:
36629
de62713aec6e swap ordering on nets, so x <= y means 'x is finer than y'
huffman
parents: 36360
diff changeset
   118
    "net \<le> net' \<longleftrightarrow> (\<forall>P. eventually P net' \<longrightarrow> eventually P net)"
36360
9d8f7efd9289 define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents: 36358
diff changeset
   119
9d8f7efd9289 define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents: 36358
diff changeset
   120
definition
9d8f7efd9289 define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents: 36358
diff changeset
   121
  less_net_def [code del]:
9d8f7efd9289 define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents: 36358
diff changeset
   122
    "(net :: 'a net) < net' \<longleftrightarrow> net \<le> net' \<and> \<not> net' \<le> net"
9d8f7efd9289 define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents: 36358
diff changeset
   123
9d8f7efd9289 define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents: 36358
diff changeset
   124
definition
36630
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   125
  top_net_def [code del]:
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   126
    "top = Abs_net (\<lambda>P. \<forall>x. P x)"
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   127
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   128
definition
36629
de62713aec6e swap ordering on nets, so x <= y means 'x is finer than y'
huffman
parents: 36360
diff changeset
   129
  bot_net_def [code del]:
de62713aec6e swap ordering on nets, so x <= y means 'x is finer than y'
huffman
parents: 36360
diff changeset
   130
    "bot = Abs_net (\<lambda>P. True)"
36360
9d8f7efd9289 define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents: 36358
diff changeset
   131
36630
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   132
definition
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   133
  sup_net_def [code del]:
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   134
    "sup net net' = Abs_net (\<lambda>P. eventually P net \<and> eventually P net')"
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   135
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   136
definition
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   137
  inf_net_def [code del]:
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   138
    "inf a b = Abs_net
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   139
      (\<lambda>P. \<exists>Q R. eventually Q a \<and> eventually R b \<and> (\<forall>x. Q x \<and> R x \<longrightarrow> P x))"
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   140
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   141
definition
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   142
  Sup_net_def [code del]:
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   143
    "Sup A = Abs_net (\<lambda>P. \<forall>net\<in>A. eventually P net)"
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   144
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   145
definition
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   146
  Inf_net_def [code del]:
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   147
    "Inf A = Sup {x::'a net. \<forall>y\<in>A. x \<le> y}"
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   148
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   149
lemma eventually_top [simp]: "eventually P top \<longleftrightarrow> (\<forall>x. P x)"
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   150
unfolding top_net_def
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   151
by (rule eventually_Abs_net, rule is_filter.intro, auto)
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   152
36629
de62713aec6e swap ordering on nets, so x <= y means 'x is finer than y'
huffman
parents: 36360
diff changeset
   153
lemma eventually_bot [simp]: "eventually P bot"
de62713aec6e swap ordering on nets, so x <= y means 'x is finer than y'
huffman
parents: 36360
diff changeset
   154
unfolding bot_net_def
36360
9d8f7efd9289 define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents: 36358
diff changeset
   155
by (subst eventually_Abs_net, rule is_filter.intro, auto)
9d8f7efd9289 define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents: 36358
diff changeset
   156
36630
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   157
lemma eventually_sup:
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   158
  "eventually P (sup net net') \<longleftrightarrow> eventually P net \<and> eventually P net'"
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   159
unfolding sup_net_def
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   160
by (rule eventually_Abs_net, rule is_filter.intro)
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   161
   (auto elim!: eventually_rev_mp)
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   162
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   163
lemma eventually_inf:
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   164
  "eventually P (inf a b) \<longleftrightarrow>
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   165
   (\<exists>Q R. eventually Q a \<and> eventually R b \<and> (\<forall>x. Q x \<and> R x \<longrightarrow> P x))"
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   166
unfolding inf_net_def
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   167
apply (rule eventually_Abs_net, rule is_filter.intro)
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   168
apply (fast intro: eventually_True)
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   169
apply clarify
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   170
apply (intro exI conjI)
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   171
apply (erule (1) eventually_conj)
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   172
apply (erule (1) eventually_conj)
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   173
apply simp
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   174
apply auto
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   175
done
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   176
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   177
lemma eventually_Sup:
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   178
  "eventually P (Sup A) \<longleftrightarrow> (\<forall>net\<in>A. eventually P net)"
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   179
unfolding Sup_net_def
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   180
apply (rule eventually_Abs_net, rule is_filter.intro)
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   181
apply (auto intro: eventually_conj elim!: eventually_rev_mp)
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   182
done
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   183
36360
9d8f7efd9289 define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents: 36358
diff changeset
   184
instance proof
9d8f7efd9289 define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents: 36358
diff changeset
   185
  fix x y :: "'a net" show "x < y \<longleftrightarrow> x \<le> y \<and> \<not> y \<le> x"
9d8f7efd9289 define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents: 36358
diff changeset
   186
    by (rule less_net_def)
9d8f7efd9289 define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents: 36358
diff changeset
   187
next
9d8f7efd9289 define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents: 36358
diff changeset
   188
  fix x :: "'a net" show "x \<le> x"
9d8f7efd9289 define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents: 36358
diff changeset
   189
    unfolding le_net_def by simp
9d8f7efd9289 define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents: 36358
diff changeset
   190
next
9d8f7efd9289 define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents: 36358
diff changeset
   191
  fix x y z :: "'a net" assume "x \<le> y" and "y \<le> z" thus "x \<le> z"
9d8f7efd9289 define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents: 36358
diff changeset
   192
    unfolding le_net_def by simp
9d8f7efd9289 define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents: 36358
diff changeset
   193
next
9d8f7efd9289 define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents: 36358
diff changeset
   194
  fix x y :: "'a net" assume "x \<le> y" and "y \<le> x" thus "x = y"
9d8f7efd9289 define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents: 36358
diff changeset
   195
    unfolding le_net_def expand_net_eq by fast
9d8f7efd9289 define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents: 36358
diff changeset
   196
next
36630
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   197
  fix x :: "'a net" show "x \<le> top"
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   198
    unfolding le_net_def eventually_top by (simp add: always_eventually)
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   199
next
36629
de62713aec6e swap ordering on nets, so x <= y means 'x is finer than y'
huffman
parents: 36360
diff changeset
   200
  fix x :: "'a net" show "bot \<le> x"
36360
9d8f7efd9289 define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents: 36358
diff changeset
   201
    unfolding le_net_def by simp
36630
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   202
next
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   203
  fix x y :: "'a net" show "x \<le> sup x y" and "y \<le> sup x y"
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   204
    unfolding le_net_def eventually_sup by simp_all
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   205
next
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   206
  fix x y z :: "'a net" assume "x \<le> z" and "y \<le> z" thus "sup x y \<le> z"
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   207
    unfolding le_net_def eventually_sup by simp
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   208
next
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   209
  fix x y :: "'a net" show "inf x y \<le> x" and "inf x y \<le> y"
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   210
    unfolding le_net_def eventually_inf by (auto intro: eventually_True)
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   211
next
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   212
  fix x y z :: "'a net" assume "x \<le> y" and "x \<le> z" thus "x \<le> inf y z"
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   213
    unfolding le_net_def eventually_inf
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   214
    by (auto elim!: eventually_mono intro: eventually_conj)
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   215
next
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   216
  fix x :: "'a net" and A assume "x \<in> A" thus "x \<le> Sup A"
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   217
    unfolding le_net_def eventually_Sup by simp
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   218
next
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   219
  fix A and y :: "'a net" assume "\<And>x. x \<in> A \<Longrightarrow> x \<le> y" thus "Sup A \<le> y"
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   220
    unfolding le_net_def eventually_Sup by simp
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   221
next
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   222
  fix z :: "'a net" and A assume "z \<in> A" thus "Inf A \<le> z"
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   223
    unfolding le_net_def Inf_net_def eventually_Sup Ball_def by simp
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   224
next
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   225
  fix A and x :: "'a net" assume "\<And>y. y \<in> A \<Longrightarrow> x \<le> y" thus "x \<le> Inf A"
aa1f8acdcc1c complete_lattice instance for net type
huffman
parents: 36629
diff changeset
   226
    unfolding le_net_def Inf_net_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
   227
qed
9d8f7efd9289 define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents: 36358
diff changeset
   228
9d8f7efd9289 define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents: 36358
diff changeset
   229
end
9d8f7efd9289 define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents: 36358
diff changeset
   230
9d8f7efd9289 define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents: 36358
diff changeset
   231
lemma net_leD:
36629
de62713aec6e swap ordering on nets, so x <= y means 'x is finer than y'
huffman
parents: 36360
diff changeset
   232
  "net \<le> net' \<Longrightarrow> eventually P net' \<Longrightarrow> eventually P net"
36360
9d8f7efd9289 define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents: 36358
diff changeset
   233
unfolding le_net_def by simp
9d8f7efd9289 define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents: 36358
diff changeset
   234
9d8f7efd9289 define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents: 36358
diff changeset
   235
lemma net_leI:
36629
de62713aec6e swap ordering on nets, so x <= y means 'x is finer than y'
huffman
parents: 36360
diff changeset
   236
  "(\<And>P. eventually P net' \<Longrightarrow> eventually P net) \<Longrightarrow> net \<le> net'"
36360
9d8f7efd9289 define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents: 36358
diff changeset
   237
unfolding le_net_def by simp
9d8f7efd9289 define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents: 36358
diff changeset
   238
9d8f7efd9289 define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents: 36358
diff changeset
   239
lemma eventually_False:
36629
de62713aec6e swap ordering on nets, so x <= y means 'x is finer than y'
huffman
parents: 36360
diff changeset
   240
  "eventually (\<lambda>x. False) net \<longleftrightarrow> net = bot"
36360
9d8f7efd9289 define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents: 36358
diff changeset
   241
unfolding expand_net_eq by (auto elim: eventually_rev_mp)
9d8f7efd9289 define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents: 36358
diff changeset
   242
9d8f7efd9289 define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents: 36358
diff changeset
   243
31392
69570155ddf8 replace filters with filter bases
huffman
parents: 31357
diff changeset
   244
subsection {* Standard Nets *}
69570155ddf8 replace filters with filter bases
huffman
parents: 31357
diff changeset
   245
69570155ddf8 replace filters with filter bases
huffman
parents: 31357
diff changeset
   246
definition
36358
246493d61204 define nets directly as filters, instead of as filter bases
huffman
parents: 31902
diff changeset
   247
  sequentially :: "nat net"
246493d61204 define nets directly as filters, instead of as filter bases
huffman
parents: 31902
diff changeset
   248
where [code del]:
246493d61204 define nets directly as filters, instead of as filter bases
huffman
parents: 31902
diff changeset
   249
  "sequentially = Abs_net (\<lambda>P. \<exists>k. \<forall>n\<ge>k. P n)"
31392
69570155ddf8 replace filters with filter bases
huffman
parents: 31357
diff changeset
   250
69570155ddf8 replace filters with filter bases
huffman
parents: 31357
diff changeset
   251
definition
36358
246493d61204 define nets directly as filters, instead of as filter bases
huffman
parents: 31902
diff changeset
   252
  within :: "'a net \<Rightarrow> 'a set \<Rightarrow> 'a net" (infixr "within" 70)
246493d61204 define nets directly as filters, instead of as filter bases
huffman
parents: 31902
diff changeset
   253
where [code del]:
246493d61204 define nets directly as filters, instead of as filter bases
huffman
parents: 31902
diff changeset
   254
  "net within S = Abs_net (\<lambda>P. eventually (\<lambda>x. x \<in> S \<longrightarrow> P x) net)"
31392
69570155ddf8 replace filters with filter bases
huffman
parents: 31357
diff changeset
   255
36358
246493d61204 define nets directly as filters, instead of as filter bases
huffman
parents: 31902
diff changeset
   256
definition
246493d61204 define nets directly as filters, instead of as filter bases
huffman
parents: 31902
diff changeset
   257
  at :: "'a::topological_space \<Rightarrow> 'a net"
246493d61204 define nets directly as filters, instead of as filter bases
huffman
parents: 31902
diff changeset
   258
where [code del]:
246493d61204 define nets directly as filters, instead of as filter bases
huffman
parents: 31902
diff changeset
   259
  "at a = Abs_net (\<lambda>P. \<exists>S. open S \<and> a \<in> S \<and> (\<forall>x\<in>S. x \<noteq> a \<longrightarrow> P x))"
31447
97bab1ac463e generalize type of 'at' to topological_space; generalize some lemmas
huffman
parents: 31392
diff changeset
   260
31392
69570155ddf8 replace filters with filter bases
huffman
parents: 31357
diff changeset
   261
lemma eventually_sequentially:
69570155ddf8 replace filters with filter bases
huffman
parents: 31357
diff changeset
   262
  "eventually P sequentially \<longleftrightarrow> (\<exists>N. \<forall>n\<ge>N. P n)"
36358
246493d61204 define nets directly as filters, instead of as filter bases
huffman
parents: 31902
diff changeset
   263
unfolding sequentially_def
246493d61204 define nets directly as filters, instead of as filter bases
huffman
parents: 31902
diff changeset
   264
proof (rule eventually_Abs_net, rule is_filter.intro)
246493d61204 define nets directly as filters, instead of as filter bases
huffman
parents: 31902
diff changeset
   265
  fix P Q :: "nat \<Rightarrow> bool"
246493d61204 define nets directly as filters, instead of as filter bases
huffman
parents: 31902
diff changeset
   266
  assume "\<exists>i. \<forall>n\<ge>i. P n" and "\<exists>j. \<forall>n\<ge>j. Q n"
246493d61204 define nets directly as filters, instead of as filter bases
huffman
parents: 31902
diff changeset
   267
  then obtain i j where "\<forall>n\<ge>i. P n" and "\<forall>n\<ge>j. Q n" by auto
246493d61204 define nets directly as filters, instead of as filter bases
huffman
parents: 31902
diff changeset
   268
  then have "\<forall>n\<ge>max i j. P n \<and> Q n" by simp
246493d61204 define nets directly as filters, instead of as filter bases
huffman
parents: 31902
diff changeset
   269
  then show "\<exists>k. \<forall>n\<ge>k. P n \<and> Q n" ..
246493d61204 define nets directly as filters, instead of as filter bases
huffman
parents: 31902
diff changeset
   270
qed auto
31392
69570155ddf8 replace filters with filter bases
huffman
parents: 31357
diff changeset
   271
69570155ddf8 replace filters with filter bases
huffman
parents: 31357
diff changeset
   272
lemma eventually_within:
69570155ddf8 replace filters with filter bases
huffman
parents: 31357
diff changeset
   273
  "eventually P (net within S) = eventually (\<lambda>x. x \<in> S \<longrightarrow> P x) net"
36358
246493d61204 define nets directly as filters, instead of as filter bases
huffman
parents: 31902
diff changeset
   274
unfolding within_def
246493d61204 define nets directly as filters, instead of as filter bases
huffman
parents: 31902
diff changeset
   275
by (rule eventually_Abs_net, rule is_filter.intro)
246493d61204 define nets directly as filters, instead of as filter bases
huffman
parents: 31902
diff changeset
   276
   (auto elim!: eventually_rev_mp)
31392
69570155ddf8 replace filters with filter bases
huffman
parents: 31357
diff changeset
   277
36360
9d8f7efd9289 define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents: 36358
diff changeset
   278
lemma within_UNIV: "net within UNIV = net"
9d8f7efd9289 define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents: 36358
diff changeset
   279
  unfolding expand_net_eq eventually_within by simp
9d8f7efd9289 define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents: 36358
diff changeset
   280
31447
97bab1ac463e generalize type of 'at' to topological_space; generalize some lemmas
huffman
parents: 31392
diff changeset
   281
lemma eventually_at_topological:
31492
5400beeddb55 replace 'topo' with 'open'; add extra type constraint for 'open'
huffman
parents: 31488
diff changeset
   282
  "eventually P (at a) \<longleftrightarrow> (\<exists>S. open S \<and> a \<in> S \<and> (\<forall>x\<in>S. x \<noteq> a \<longrightarrow> P x))"
36358
246493d61204 define nets directly as filters, instead of as filter bases
huffman
parents: 31902
diff changeset
   283
unfolding at_def
246493d61204 define nets directly as filters, instead of as filter bases
huffman
parents: 31902
diff changeset
   284
proof (rule eventually_Abs_net, rule is_filter.intro)
246493d61204 define nets directly as filters, instead of as filter bases
huffman
parents: 31902
diff changeset
   285
  have "open UNIV \<and> a \<in> UNIV \<and> (\<forall>x\<in>UNIV. x \<noteq> a \<longrightarrow> True)" by simp
246493d61204 define nets directly as filters, instead of as filter bases
huffman
parents: 31902
diff changeset
   286
  thus "\<exists>S. open S \<and> a \<in> S \<and> (\<forall>x\<in>S. x \<noteq> a \<longrightarrow> True)" by - rule
246493d61204 define nets directly as filters, instead of as filter bases
huffman
parents: 31902
diff changeset
   287
next
246493d61204 define nets directly as filters, instead of as filter bases
huffman
parents: 31902
diff changeset
   288
  fix P Q
246493d61204 define nets directly as filters, instead of as filter bases
huffman
parents: 31902
diff changeset
   289
  assume "\<exists>S. open S \<and> a \<in> S \<and> (\<forall>x\<in>S. x \<noteq> a \<longrightarrow> P x)"
246493d61204 define nets directly as filters, instead of as filter bases
huffman
parents: 31902
diff changeset
   290
     and "\<exists>T. open T \<and> a \<in> T \<and> (\<forall>x\<in>T. x \<noteq> a \<longrightarrow> Q x)"
246493d61204 define nets directly as filters, instead of as filter bases
huffman
parents: 31902
diff changeset
   291
  then obtain S T where
246493d61204 define nets directly as filters, instead of as filter bases
huffman
parents: 31902
diff changeset
   292
    "open S \<and> a \<in> S \<and> (\<forall>x\<in>S. x \<noteq> a \<longrightarrow> P x)"
246493d61204 define nets directly as filters, instead of as filter bases
huffman
parents: 31902
diff changeset
   293
    "open T \<and> a \<in> T \<and> (\<forall>x\<in>T. x \<noteq> a \<longrightarrow> Q x)" by auto
246493d61204 define nets directly as filters, instead of as filter bases
huffman
parents: 31902
diff changeset
   294
  hence "open (S \<inter> T) \<and> a \<in> S \<inter> T \<and> (\<forall>x\<in>(S \<inter> T). x \<noteq> a \<longrightarrow> P x \<and> Q x)"
246493d61204 define nets directly as filters, instead of as filter bases
huffman
parents: 31902
diff changeset
   295
    by (simp add: open_Int)
246493d61204 define nets directly as filters, instead of as filter bases
huffman
parents: 31902
diff changeset
   296
  thus "\<exists>S. open S \<and> a \<in> S \<and> (\<forall>x\<in>S. x \<noteq> a \<longrightarrow> P x \<and> Q x)" by - rule
246493d61204 define nets directly as filters, instead of as filter bases
huffman
parents: 31902
diff changeset
   297
qed auto
31447
97bab1ac463e generalize type of 'at' to topological_space; generalize some lemmas
huffman
parents: 31392
diff changeset
   298
97bab1ac463e generalize type of 'at' to topological_space; generalize some lemmas
huffman
parents: 31392
diff changeset
   299
lemma eventually_at:
97bab1ac463e generalize type of 'at' to topological_space; generalize some lemmas
huffman
parents: 31392
diff changeset
   300
  fixes a :: "'a::metric_space"
97bab1ac463e generalize type of 'at' to topological_space; generalize some lemmas
huffman
parents: 31392
diff changeset
   301
  shows "eventually P (at a) \<longleftrightarrow> (\<exists>d>0. \<forall>x. x \<noteq> a \<and> dist x a < d \<longrightarrow> P x)"
31492
5400beeddb55 replace 'topo' with 'open'; add extra type constraint for 'open'
huffman
parents: 31488
diff changeset
   302
unfolding eventually_at_topological open_dist
31447
97bab1ac463e generalize type of 'at' to topological_space; generalize some lemmas
huffman
parents: 31392
diff changeset
   303
apply safe
97bab1ac463e generalize type of 'at' to topological_space; generalize some lemmas
huffman
parents: 31392
diff changeset
   304
apply fast
31492
5400beeddb55 replace 'topo' with 'open'; add extra type constraint for 'open'
huffman
parents: 31488
diff changeset
   305
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
   306
apply clarsimp
97bab1ac463e generalize type of 'at' to topological_space; generalize some lemmas
huffman
parents: 31392
diff changeset
   307
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
   308
apply (simp only: less_diff_eq)
97bab1ac463e generalize type of 'at' to topological_space; generalize some lemmas
huffman
parents: 31392
diff changeset
   309
apply (erule le_less_trans [OF dist_triangle])
97bab1ac463e generalize type of 'at' to topological_space; generalize some lemmas
huffman
parents: 31392
diff changeset
   310
done
97bab1ac463e generalize type of 'at' to topological_space; generalize some lemmas
huffman
parents: 31392
diff changeset
   311
31392
69570155ddf8 replace filters with filter bases
huffman
parents: 31357
diff changeset
   312
31355
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   313
subsection {* Boundedness *}
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   314
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   315
definition
31392
69570155ddf8 replace filters with filter bases
huffman
parents: 31357
diff changeset
   316
  Bfun :: "('a \<Rightarrow> 'b::real_normed_vector) \<Rightarrow> 'a net \<Rightarrow> bool" where
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   317
  [code del]: "Bfun f net = (\<exists>K>0. eventually (\<lambda>x. norm (f x) \<le> K) net)"
31355
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   318
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   319
lemma BfunI:
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   320
  assumes K: "eventually (\<lambda>x. norm (f x) \<le> K) net" shows "Bfun f net"
31355
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   321
unfolding Bfun_def
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   322
proof (intro exI conjI allI)
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   323
  show "0 < max K 1" by simp
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   324
next
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   325
  show "eventually (\<lambda>x. norm (f x) \<le> max K 1) net"
31355
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   326
    using K by (rule eventually_elim1, simp)
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   327
qed
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   328
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   329
lemma BfunE:
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   330
  assumes "Bfun f net"
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   331
  obtains B where "0 < B" and "eventually (\<lambda>x. norm (f x) \<le> B) net"
31355
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   332
using assms unfolding Bfun_def by fast
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   333
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   334
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   335
subsection {* Convergence to Zero *}
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   336
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   337
definition
31392
69570155ddf8 replace filters with filter bases
huffman
parents: 31357
diff changeset
   338
  Zfun :: "('a \<Rightarrow> 'b::real_normed_vector) \<Rightarrow> 'a net \<Rightarrow> bool" where
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   339
  [code del]: "Zfun f net = (\<forall>r>0. eventually (\<lambda>x. norm (f x) < r) net)"
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   340
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   341
lemma ZfunI:
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   342
  "(\<And>r. 0 < r \<Longrightarrow> eventually (\<lambda>x. norm (f x) < r) net) \<Longrightarrow> Zfun f net"
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   343
unfolding Zfun_def by simp
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   344
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   345
lemma ZfunD:
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   346
  "\<lbrakk>Zfun f net; 0 < r\<rbrakk> \<Longrightarrow> eventually (\<lambda>x. norm (f x) < r) net"
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   347
unfolding Zfun_def by simp
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   348
31355
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   349
lemma Zfun_ssubst:
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   350
  "eventually (\<lambda>x. f x = g x) net \<Longrightarrow> Zfun g net \<Longrightarrow> Zfun f net"
31355
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   351
unfolding Zfun_def by (auto elim!: eventually_rev_mp)
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   352
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   353
lemma Zfun_zero: "Zfun (\<lambda>x. 0) net"
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   354
unfolding Zfun_def by simp
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   355
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   356
lemma Zfun_norm_iff: "Zfun (\<lambda>x. norm (f x)) net = Zfun (\<lambda>x. f x) net"
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   357
unfolding Zfun_def by simp
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   358
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   359
lemma Zfun_imp_Zfun:
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   360
  assumes f: "Zfun f net"
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   361
  assumes g: "eventually (\<lambda>x. norm (g x) \<le> norm (f x) * K) net"
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   362
  shows "Zfun (\<lambda>x. g x) net"
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   363
proof (cases)
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   364
  assume K: "0 < K"
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   365
  show ?thesis
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   366
  proof (rule ZfunI)
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   367
    fix r::real assume "0 < r"
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   368
    hence "0 < r / K"
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   369
      using K by (rule divide_pos_pos)
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   370
    then have "eventually (\<lambda>x. norm (f x) < r / K) net"
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   371
      using ZfunD [OF f] by fast
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   372
    with g show "eventually (\<lambda>x. norm (g x) < r) net"
31355
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   373
    proof (rule eventually_elim2)
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   374
      fix x
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   375
      assume *: "norm (g x) \<le> norm (f x) * K"
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   376
      assume "norm (f x) < r / K"
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   377
      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
   378
        by (simp add: pos_less_divide_eq K)
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   379
      thus "norm (g x) < r"
31355
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   380
        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
   381
    qed
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   382
  qed
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   383
next
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   384
  assume "\<not> 0 < K"
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   385
  hence K: "K \<le> 0" by (simp only: not_less)
31355
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   386
  show ?thesis
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   387
  proof (rule ZfunI)
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   388
    fix r :: real
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   389
    assume "0 < r"
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   390
    from g show "eventually (\<lambda>x. norm (g x) < r) net"
31355
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   391
    proof (rule eventually_elim1)
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   392
      fix x
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   393
      assume "norm (g x) \<le> norm (f x) * K"
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   394
      also have "\<dots> \<le> norm (f x) * 0"
31355
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   395
        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
   396
      finally show "norm (g x) < r"
31355
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   397
        using `0 < r` by simp
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   398
    qed
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   399
  qed
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   400
qed
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   401
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   402
lemma Zfun_le: "\<lbrakk>Zfun g net; \<forall>x. norm (f x) \<le> norm (g x)\<rbrakk> \<Longrightarrow> Zfun f net"
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   403
by (erule_tac K="1" in Zfun_imp_Zfun, simp)
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   404
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   405
lemma Zfun_add:
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   406
  assumes f: "Zfun f net" and g: "Zfun g net"
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   407
  shows "Zfun (\<lambda>x. f x + g x) net"
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   408
proof (rule ZfunI)
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   409
  fix r::real assume "0 < r"
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   410
  hence r: "0 < r / 2" by simp
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   411
  have "eventually (\<lambda>x. norm (f x) < r/2) net"
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   412
    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
   413
  moreover
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   414
  have "eventually (\<lambda>x. norm (g x) < r/2) net"
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   415
    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
   416
  ultimately
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   417
  show "eventually (\<lambda>x. norm (f x + g x) < r) net"
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   418
  proof (rule eventually_elim2)
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   419
    fix x
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   420
    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
   421
    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
   422
      by (rule norm_triangle_ineq)
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   423
    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
   424
      using * by (rule add_strict_mono)
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   425
    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
   426
      by simp
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   427
  qed
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   428
qed
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   429
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   430
lemma Zfun_minus: "Zfun f net \<Longrightarrow> Zfun (\<lambda>x. - f x) net"
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   431
unfolding Zfun_def by simp
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   432
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   433
lemma Zfun_diff: "\<lbrakk>Zfun f net; Zfun g net\<rbrakk> \<Longrightarrow> Zfun (\<lambda>x. f x - g x) net"
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   434
by (simp only: diff_minus Zfun_add Zfun_minus)
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   435
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   436
lemma (in bounded_linear) Zfun:
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   437
  assumes g: "Zfun g net"
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   438
  shows "Zfun (\<lambda>x. f (g x)) net"
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   439
proof -
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   440
  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
   441
    using bounded by fast
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   442
  then have "eventually (\<lambda>x. norm (f (g x)) \<le> norm (g x) * K) net"
31355
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   443
    by simp
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   444
  with g show ?thesis
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   445
    by (rule Zfun_imp_Zfun)
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   446
qed
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   447
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   448
lemma (in bounded_bilinear) Zfun:
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   449
  assumes f: "Zfun f net"
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   450
  assumes g: "Zfun g net"
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   451
  shows "Zfun (\<lambda>x. f x ** g x) net"
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   452
proof (rule ZfunI)
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   453
  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
   454
  obtain K where K: "0 < K"
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   455
    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
   456
    using pos_bounded by fast
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   457
  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
   458
    by (rule positive_imp_inverse_positive)
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   459
  have "eventually (\<lambda>x. norm (f x) < r) net"
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   460
    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
   461
  moreover
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   462
  have "eventually (\<lambda>x. norm (g x) < inverse K) net"
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   463
    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
   464
  ultimately
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   465
  show "eventually (\<lambda>x. norm (f x ** g x) < r) net"
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   466
  proof (rule eventually_elim2)
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   467
    fix x
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   468
    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
   469
    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
   470
      by (rule norm_le)
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   471
    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
   472
      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
   473
    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
   474
      by simp
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   475
    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
   476
  qed
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   477
qed
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   478
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   479
lemma (in bounded_bilinear) Zfun_left:
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   480
  "Zfun f net \<Longrightarrow> Zfun (\<lambda>x. f x ** a) net"
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   481
by (rule bounded_linear_left [THEN bounded_linear.Zfun])
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   482
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   483
lemma (in bounded_bilinear) Zfun_right:
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   484
  "Zfun f net \<Longrightarrow> Zfun (\<lambda>x. a ** f x) net"
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   485
by (rule bounded_linear_right [THEN bounded_linear.Zfun])
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   486
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   487
lemmas Zfun_mult = mult.Zfun
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   488
lemmas Zfun_mult_right = mult.Zfun_right
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   489
lemmas Zfun_mult_left = mult.Zfun_left
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   490
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   491
31902
862ae16a799d renamed NamedThmsFun to Named_Thms;
wenzelm
parents: 31588
diff changeset
   492
subsection {* Limits *}
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   493
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   494
definition
31488
5691ccb8d6b5 generalize tendsto to class topological_space
huffman
parents: 31487
diff changeset
   495
  tendsto :: "('a \<Rightarrow> 'b::topological_space) \<Rightarrow> 'b \<Rightarrow> 'a net \<Rightarrow> bool"
5691ccb8d6b5 generalize tendsto to class topological_space
huffman
parents: 31487
diff changeset
   496
    (infixr "--->" 55)
5691ccb8d6b5 generalize tendsto to class topological_space
huffman
parents: 31487
diff changeset
   497
where [code del]:
31492
5400beeddb55 replace 'topo' with 'open'; add extra type constraint for 'open'
huffman
parents: 31488
diff changeset
   498
  "(f ---> l) net \<longleftrightarrow> (\<forall>S. open S \<longrightarrow> l \<in> S \<longrightarrow> eventually (\<lambda>x. f x \<in> S) net)"
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   499
31902
862ae16a799d renamed NamedThmsFun to Named_Thms;
wenzelm
parents: 31588
diff changeset
   500
ML {*
862ae16a799d renamed NamedThmsFun to Named_Thms;
wenzelm
parents: 31588
diff changeset
   501
structure Tendsto_Intros = Named_Thms
862ae16a799d renamed NamedThmsFun to Named_Thms;
wenzelm
parents: 31588
diff changeset
   502
(
862ae16a799d renamed NamedThmsFun to Named_Thms;
wenzelm
parents: 31588
diff changeset
   503
  val name = "tendsto_intros"
862ae16a799d renamed NamedThmsFun to Named_Thms;
wenzelm
parents: 31588
diff changeset
   504
  val description = "introduction rules for tendsto"
862ae16a799d renamed NamedThmsFun to Named_Thms;
wenzelm
parents: 31588
diff changeset
   505
)
31565
da5a5589418e theorem attribute [tendsto_intros]
huffman
parents: 31492
diff changeset
   506
*}
da5a5589418e theorem attribute [tendsto_intros]
huffman
parents: 31492
diff changeset
   507
31902
862ae16a799d renamed NamedThmsFun to Named_Thms;
wenzelm
parents: 31588
diff changeset
   508
setup Tendsto_Intros.setup
31565
da5a5589418e theorem attribute [tendsto_intros]
huffman
parents: 31492
diff changeset
   509
31488
5691ccb8d6b5 generalize tendsto to class topological_space
huffman
parents: 31487
diff changeset
   510
lemma topological_tendstoI:
31492
5400beeddb55 replace 'topo' with 'open'; add extra type constraint for 'open'
huffman
parents: 31488
diff changeset
   511
  "(\<And>S. open S \<Longrightarrow> l \<in> S \<Longrightarrow> eventually (\<lambda>x. f x \<in> S) net)
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   512
    \<Longrightarrow> (f ---> l) net"
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   513
  unfolding tendsto_def by auto
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   514
31488
5691ccb8d6b5 generalize tendsto to class topological_space
huffman
parents: 31487
diff changeset
   515
lemma topological_tendstoD:
31492
5400beeddb55 replace 'topo' with 'open'; add extra type constraint for 'open'
huffman
parents: 31488
diff changeset
   516
  "(f ---> l) net \<Longrightarrow> open S \<Longrightarrow> l \<in> S \<Longrightarrow> eventually (\<lambda>x. f x \<in> S) net"
31488
5691ccb8d6b5 generalize tendsto to class topological_space
huffman
parents: 31487
diff changeset
   517
  unfolding tendsto_def by auto
5691ccb8d6b5 generalize tendsto to class topological_space
huffman
parents: 31487
diff changeset
   518
5691ccb8d6b5 generalize tendsto to class topological_space
huffman
parents: 31487
diff changeset
   519
lemma tendstoI:
5691ccb8d6b5 generalize tendsto to class topological_space
huffman
parents: 31487
diff changeset
   520
  assumes "\<And>e. 0 < e \<Longrightarrow> eventually (\<lambda>x. dist (f x) l < e) net"
5691ccb8d6b5 generalize tendsto to class topological_space
huffman
parents: 31487
diff changeset
   521
  shows "(f ---> l) net"
5691ccb8d6b5 generalize tendsto to class topological_space
huffman
parents: 31487
diff changeset
   522
apply (rule topological_tendstoI)
31492
5400beeddb55 replace 'topo' with 'open'; add extra type constraint for 'open'
huffman
parents: 31488
diff changeset
   523
apply (simp add: open_dist)
31488
5691ccb8d6b5 generalize tendsto to class topological_space
huffman
parents: 31487
diff changeset
   524
apply (drule (1) bspec, clarify)
5691ccb8d6b5 generalize tendsto to class topological_space
huffman
parents: 31487
diff changeset
   525
apply (drule assms)
5691ccb8d6b5 generalize tendsto to class topological_space
huffman
parents: 31487
diff changeset
   526
apply (erule eventually_elim1, simp)
5691ccb8d6b5 generalize tendsto to class topological_space
huffman
parents: 31487
diff changeset
   527
done
5691ccb8d6b5 generalize tendsto to class topological_space
huffman
parents: 31487
diff changeset
   528
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   529
lemma tendstoD:
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   530
  "(f ---> l) net \<Longrightarrow> 0 < e \<Longrightarrow> eventually (\<lambda>x. dist (f x) l < e) net"
31488
5691ccb8d6b5 generalize tendsto to class topological_space
huffman
parents: 31487
diff changeset
   531
apply (drule_tac S="{x. dist x l < e}" in topological_tendstoD)
31492
5400beeddb55 replace 'topo' with 'open'; add extra type constraint for 'open'
huffman
parents: 31488
diff changeset
   532
apply (clarsimp simp add: open_dist)
31488
5691ccb8d6b5 generalize tendsto to class topological_space
huffman
parents: 31487
diff changeset
   533
apply (rule_tac x="e - dist x l" in exI, clarsimp)
5691ccb8d6b5 generalize tendsto to class topological_space
huffman
parents: 31487
diff changeset
   534
apply (simp only: less_diff_eq)
5691ccb8d6b5 generalize tendsto to class topological_space
huffman
parents: 31487
diff changeset
   535
apply (erule le_less_trans [OF dist_triangle])
5691ccb8d6b5 generalize tendsto to class topological_space
huffman
parents: 31487
diff changeset
   536
apply simp
5691ccb8d6b5 generalize tendsto to class topological_space
huffman
parents: 31487
diff changeset
   537
apply simp
5691ccb8d6b5 generalize tendsto to class topological_space
huffman
parents: 31487
diff changeset
   538
done
5691ccb8d6b5 generalize tendsto to class topological_space
huffman
parents: 31487
diff changeset
   539
5691ccb8d6b5 generalize tendsto to class topological_space
huffman
parents: 31487
diff changeset
   540
lemma tendsto_iff:
5691ccb8d6b5 generalize tendsto to class topological_space
huffman
parents: 31487
diff changeset
   541
  "(f ---> l) net \<longleftrightarrow> (\<forall>e>0. eventually (\<lambda>x. dist (f x) l < e) net)"
5691ccb8d6b5 generalize tendsto to class topological_space
huffman
parents: 31487
diff changeset
   542
using tendstoI tendstoD by fast
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   543
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   544
lemma tendsto_Zfun_iff: "(f ---> a) net = Zfun (\<lambda>x. f x - a) net"
31488
5691ccb8d6b5 generalize tendsto to class topological_space
huffman
parents: 31487
diff changeset
   545
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
   546
31565
da5a5589418e theorem attribute [tendsto_intros]
huffman
parents: 31492
diff changeset
   547
lemma tendsto_ident_at [tendsto_intros]: "((\<lambda>x. x) ---> a) (at a)"
da5a5589418e theorem attribute [tendsto_intros]
huffman
parents: 31492
diff changeset
   548
unfolding tendsto_def eventually_at_topological by auto
da5a5589418e theorem attribute [tendsto_intros]
huffman
parents: 31492
diff changeset
   549
da5a5589418e theorem attribute [tendsto_intros]
huffman
parents: 31492
diff changeset
   550
lemma tendsto_ident_at_within [tendsto_intros]:
da5a5589418e theorem attribute [tendsto_intros]
huffman
parents: 31492
diff changeset
   551
  "a \<in> S \<Longrightarrow> ((\<lambda>x. x) ---> a) (at a within S)"
da5a5589418e theorem attribute [tendsto_intros]
huffman
parents: 31492
diff changeset
   552
unfolding tendsto_def eventually_within eventually_at_topological by auto
da5a5589418e theorem attribute [tendsto_intros]
huffman
parents: 31492
diff changeset
   553
da5a5589418e theorem attribute [tendsto_intros]
huffman
parents: 31492
diff changeset
   554
lemma tendsto_const [tendsto_intros]: "((\<lambda>x. k) ---> k) net"
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   555
by (simp add: tendsto_def)
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   556
31565
da5a5589418e theorem attribute [tendsto_intros]
huffman
parents: 31492
diff changeset
   557
lemma tendsto_dist [tendsto_intros]:
da5a5589418e theorem attribute [tendsto_intros]
huffman
parents: 31492
diff changeset
   558
  assumes f: "(f ---> l) net" and g: "(g ---> m) net"
da5a5589418e theorem attribute [tendsto_intros]
huffman
parents: 31492
diff changeset
   559
  shows "((\<lambda>x. dist (f x) (g x)) ---> dist l m) net"
da5a5589418e theorem attribute [tendsto_intros]
huffman
parents: 31492
diff changeset
   560
proof (rule tendstoI)
da5a5589418e theorem attribute [tendsto_intros]
huffman
parents: 31492
diff changeset
   561
  fix e :: real assume "0 < e"
da5a5589418e theorem attribute [tendsto_intros]
huffman
parents: 31492
diff changeset
   562
  hence e2: "0 < e/2" by simp
da5a5589418e theorem attribute [tendsto_intros]
huffman
parents: 31492
diff changeset
   563
  from tendstoD [OF f e2] tendstoD [OF g e2]
da5a5589418e theorem attribute [tendsto_intros]
huffman
parents: 31492
diff changeset
   564
  show "eventually (\<lambda>x. dist (dist (f x) (g x)) (dist l m) < e) net"
da5a5589418e theorem attribute [tendsto_intros]
huffman
parents: 31492
diff changeset
   565
  proof (rule eventually_elim2)
da5a5589418e theorem attribute [tendsto_intros]
huffman
parents: 31492
diff changeset
   566
    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
   567
    then show "dist (dist (f x) (g x)) (dist l m) < e"
da5a5589418e theorem attribute [tendsto_intros]
huffman
parents: 31492
diff changeset
   568
      unfolding dist_real_def
da5a5589418e theorem attribute [tendsto_intros]
huffman
parents: 31492
diff changeset
   569
      using dist_triangle2 [of "f x" "g x" "l"]
da5a5589418e theorem attribute [tendsto_intros]
huffman
parents: 31492
diff changeset
   570
      using dist_triangle2 [of "g x" "l" "m"]
da5a5589418e theorem attribute [tendsto_intros]
huffman
parents: 31492
diff changeset
   571
      using dist_triangle3 [of "l" "m" "f x"]
da5a5589418e theorem attribute [tendsto_intros]
huffman
parents: 31492
diff changeset
   572
      using dist_triangle [of "f x" "m" "g x"]
da5a5589418e theorem attribute [tendsto_intros]
huffman
parents: 31492
diff changeset
   573
      by arith
da5a5589418e theorem attribute [tendsto_intros]
huffman
parents: 31492
diff changeset
   574
  qed
da5a5589418e theorem attribute [tendsto_intros]
huffman
parents: 31492
diff changeset
   575
qed
da5a5589418e theorem attribute [tendsto_intros]
huffman
parents: 31492
diff changeset
   576
da5a5589418e theorem attribute [tendsto_intros]
huffman
parents: 31492
diff changeset
   577
lemma tendsto_norm [tendsto_intros]:
da5a5589418e theorem attribute [tendsto_intros]
huffman
parents: 31492
diff changeset
   578
  "(f ---> a) net \<Longrightarrow> ((\<lambda>x. norm (f x)) ---> norm a) net"
31488
5691ccb8d6b5 generalize tendsto to class topological_space
huffman
parents: 31487
diff changeset
   579
apply (simp add: tendsto_iff dist_norm, safe)
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   580
apply (drule_tac x="e" in spec, safe)
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   581
apply (erule eventually_elim1)
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   582
apply (erule order_le_less_trans [OF norm_triangle_ineq3])
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   583
done
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   584
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   585
lemma add_diff_add:
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   586
  fixes a b c d :: "'a::ab_group_add"
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   587
  shows "(a + c) - (b + d) = (a - b) + (c - d)"
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   588
by simp
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   589
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   590
lemma minus_diff_minus:
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   591
  fixes a b :: "'a::ab_group_add"
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   592
  shows "(- a) - (- b) = - (a - b)"
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   593
by simp
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   594
31565
da5a5589418e theorem attribute [tendsto_intros]
huffman
parents: 31492
diff changeset
   595
lemma tendsto_add [tendsto_intros]:
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   596
  fixes a b :: "'a::real_normed_vector"
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   597
  shows "\<lbrakk>(f ---> a) net; (g ---> b) net\<rbrakk> \<Longrightarrow> ((\<lambda>x. f x + g x) ---> a + b) net"
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   598
by (simp only: tendsto_Zfun_iff add_diff_add Zfun_add)
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   599
31565
da5a5589418e theorem attribute [tendsto_intros]
huffman
parents: 31492
diff changeset
   600
lemma tendsto_minus [tendsto_intros]:
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   601
  fixes a :: "'a::real_normed_vector"
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   602
  shows "(f ---> a) net \<Longrightarrow> ((\<lambda>x. - f x) ---> - a) net"
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   603
by (simp only: tendsto_Zfun_iff minus_diff_minus Zfun_minus)
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   604
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   605
lemma tendsto_minus_cancel:
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   606
  fixes a :: "'a::real_normed_vector"
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   607
  shows "((\<lambda>x. - f x) ---> - a) net \<Longrightarrow> (f ---> a) net"
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   608
by (drule tendsto_minus, simp)
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   609
31565
da5a5589418e theorem attribute [tendsto_intros]
huffman
parents: 31492
diff changeset
   610
lemma tendsto_diff [tendsto_intros]:
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   611
  fixes a b :: "'a::real_normed_vector"
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   612
  shows "\<lbrakk>(f ---> a) net; (g ---> b) net\<rbrakk> \<Longrightarrow> ((\<lambda>x. f x - g x) ---> a - b) net"
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   613
by (simp add: diff_minus tendsto_add tendsto_minus)
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   614
31588
2651f172c38b add lemma tendsto_setsum
huffman
parents: 31565
diff changeset
   615
lemma tendsto_setsum [tendsto_intros]:
2651f172c38b add lemma tendsto_setsum
huffman
parents: 31565
diff changeset
   616
  fixes f :: "'a \<Rightarrow> 'b \<Rightarrow> 'c::real_normed_vector"
2651f172c38b add lemma tendsto_setsum
huffman
parents: 31565
diff changeset
   617
  assumes "\<And>i. i \<in> S \<Longrightarrow> (f i ---> a i) net"
2651f172c38b add lemma tendsto_setsum
huffman
parents: 31565
diff changeset
   618
  shows "((\<lambda>x. \<Sum>i\<in>S. f i x) ---> (\<Sum>i\<in>S. a i)) net"
2651f172c38b add lemma tendsto_setsum
huffman
parents: 31565
diff changeset
   619
proof (cases "finite S")
2651f172c38b add lemma tendsto_setsum
huffman
parents: 31565
diff changeset
   620
  assume "finite S" thus ?thesis using assms
2651f172c38b add lemma tendsto_setsum
huffman
parents: 31565
diff changeset
   621
  proof (induct set: finite)
2651f172c38b add lemma tendsto_setsum
huffman
parents: 31565
diff changeset
   622
    case empty show ?case
2651f172c38b add lemma tendsto_setsum
huffman
parents: 31565
diff changeset
   623
      by (simp add: tendsto_const)
2651f172c38b add lemma tendsto_setsum
huffman
parents: 31565
diff changeset
   624
  next
2651f172c38b add lemma tendsto_setsum
huffman
parents: 31565
diff changeset
   625
    case (insert i F) thus ?case
2651f172c38b add lemma tendsto_setsum
huffman
parents: 31565
diff changeset
   626
      by (simp add: tendsto_add)
2651f172c38b add lemma tendsto_setsum
huffman
parents: 31565
diff changeset
   627
  qed
2651f172c38b add lemma tendsto_setsum
huffman
parents: 31565
diff changeset
   628
next
2651f172c38b add lemma tendsto_setsum
huffman
parents: 31565
diff changeset
   629
  assume "\<not> finite S" thus ?thesis
2651f172c38b add lemma tendsto_setsum
huffman
parents: 31565
diff changeset
   630
    by (simp add: tendsto_const)
2651f172c38b add lemma tendsto_setsum
huffman
parents: 31565
diff changeset
   631
qed
2651f172c38b add lemma tendsto_setsum
huffman
parents: 31565
diff changeset
   632
31565
da5a5589418e theorem attribute [tendsto_intros]
huffman
parents: 31492
diff changeset
   633
lemma (in bounded_linear) tendsto [tendsto_intros]:
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   634
  "(g ---> a) net \<Longrightarrow> ((\<lambda>x. f (g x)) ---> f a) net"
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   635
by (simp only: tendsto_Zfun_iff diff [symmetric] Zfun)
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   636
31565
da5a5589418e theorem attribute [tendsto_intros]
huffman
parents: 31492
diff changeset
   637
lemma (in bounded_bilinear) tendsto [tendsto_intros]:
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   638
  "\<lbrakk>(f ---> a) net; (g ---> b) net\<rbrakk> \<Longrightarrow> ((\<lambda>x. f x ** g x) ---> a ** b) net"
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   639
by (simp only: tendsto_Zfun_iff prod_diff_prod
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   640
               Zfun_add Zfun Zfun_left Zfun_right)
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   641
31355
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   642
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   643
subsection {* Continuity of Inverse *}
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   644
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   645
lemma (in bounded_bilinear) Zfun_prod_Bfun:
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   646
  assumes f: "Zfun f net"
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   647
  assumes g: "Bfun g net"
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   648
  shows "Zfun (\<lambda>x. f x ** g x) net"
31355
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   649
proof -
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   650
  obtain K where K: "0 \<le> K"
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   651
    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
   652
    using nonneg_bounded by fast
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   653
  obtain B where B: "0 < B"
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   654
    and norm_g: "eventually (\<lambda>x. norm (g x) \<le> B) net"
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   655
    using g by (rule BfunE)
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   656
  have "eventually (\<lambda>x. norm (f x ** g x) \<le> norm (f x) * (B * K)) net"
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   657
  using norm_g proof (rule eventually_elim1)
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   658
    fix x
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   659
    assume *: "norm (g x) \<le> B"
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   660
    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
   661
      by (rule norm_le)
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   662
    also have "\<dots> \<le> norm (f x) * B * K"
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   663
      by (intro mult_mono' order_refl norm_g norm_ge_zero
31355
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   664
                mult_nonneg_nonneg K *)
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   665
    also have "\<dots> = norm (f x) * (B * K)"
31355
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   666
      by (rule mult_assoc)
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   667
    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
   668
  qed
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   669
  with f show ?thesis
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   670
    by (rule Zfun_imp_Zfun)
31355
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   671
qed
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   672
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   673
lemma (in bounded_bilinear) flip:
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   674
  "bounded_bilinear (\<lambda>x y. y ** x)"
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   675
apply default
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   676
apply (rule add_right)
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   677
apply (rule add_left)
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   678
apply (rule scaleR_right)
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   679
apply (rule scaleR_left)
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   680
apply (subst mult_commute)
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   681
using bounded by fast
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   682
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   683
lemma (in bounded_bilinear) Bfun_prod_Zfun:
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   684
  assumes f: "Bfun f net"
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   685
  assumes g: "Zfun g net"
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   686
  shows "Zfun (\<lambda>x. f x ** g x) net"
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   687
using flip g f by (rule bounded_bilinear.Zfun_prod_Bfun)
31355
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   688
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   689
lemma inverse_diff_inverse:
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   690
  "\<lbrakk>(a::'a::division_ring) \<noteq> 0; b \<noteq> 0\<rbrakk>
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   691
   \<Longrightarrow> inverse a - inverse b = - (inverse a * (a - b) * inverse b)"
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   692
by (simp add: algebra_simps)
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   693
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   694
lemma Bfun_inverse_lemma:
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   695
  fixes x :: "'a::real_normed_div_algebra"
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   696
  shows "\<lbrakk>r \<le> norm x; 0 < r\<rbrakk> \<Longrightarrow> norm (inverse x) \<le> inverse r"
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   697
apply (subst nonzero_norm_inverse, clarsimp)
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   698
apply (erule (1) le_imp_inverse_le)
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   699
done
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   700
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   701
lemma Bfun_inverse:
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   702
  fixes a :: "'a::real_normed_div_algebra"
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   703
  assumes f: "(f ---> a) net"
31355
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   704
  assumes a: "a \<noteq> 0"
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   705
  shows "Bfun (\<lambda>x. inverse (f x)) net"
31355
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   706
proof -
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   707
  from a have "0 < norm a" by simp
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   708
  hence "\<exists>r>0. r < norm a" by (rule dense)
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   709
  then obtain r where r1: "0 < r" and r2: "r < norm a" by fast
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   710
  have "eventually (\<lambda>x. dist (f x) a < r) net"
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   711
    using tendstoD [OF f r1] by fast
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   712
  hence "eventually (\<lambda>x. norm (inverse (f x)) \<le> inverse (norm a - r)) net"
31355
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   713
  proof (rule eventually_elim1)
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   714
    fix x
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   715
    assume "dist (f x) a < r"
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   716
    hence 1: "norm (f x - a) < r"
31355
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   717
      by (simp add: dist_norm)
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   718
    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
   719
    hence "norm (inverse (f x)) = inverse (norm (f x))"
31355
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   720
      by (rule nonzero_norm_inverse)
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   721
    also have "\<dots> \<le> inverse (norm a - r)"
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   722
    proof (rule le_imp_inverse_le)
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   723
      show "0 < norm a - r" using r2 by simp
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   724
    next
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   725
      have "norm a - norm (f x) \<le> norm (a - f x)"
31355
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   726
        by (rule norm_triangle_ineq2)
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   727
      also have "\<dots> = norm (f x - a)"
31355
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   728
        by (rule norm_minus_commute)
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   729
      also have "\<dots> < r" using 1 .
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   730
      finally show "norm a - r \<le> norm (f x)" by simp
31355
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   731
    qed
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   732
    finally show "norm (inverse (f x)) \<le> inverse (norm a - r)" .
31355
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   733
  qed
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   734
  thus ?thesis by (rule BfunI)
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   735
qed
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   736
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   737
lemma tendsto_inverse_lemma:
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   738
  fixes a :: "'a::real_normed_div_algebra"
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   739
  shows "\<lbrakk>(f ---> a) net; a \<noteq> 0; eventually (\<lambda>x. f x \<noteq> 0) net\<rbrakk>
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   740
         \<Longrightarrow> ((\<lambda>x. inverse (f x)) ---> inverse a) net"
31355
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   741
apply (subst tendsto_Zfun_iff)
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   742
apply (rule Zfun_ssubst)
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   743
apply (erule eventually_elim1)
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   744
apply (erule (1) inverse_diff_inverse)
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   745
apply (rule Zfun_minus)
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   746
apply (rule Zfun_mult_left)
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   747
apply (rule mult.Bfun_prod_Zfun)
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   748
apply (erule (1) Bfun_inverse)
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   749
apply (simp add: tendsto_Zfun_iff)
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   750
done
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   751
31565
da5a5589418e theorem attribute [tendsto_intros]
huffman
parents: 31492
diff changeset
   752
lemma tendsto_inverse [tendsto_intros]:
31355
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   753
  fixes a :: "'a::real_normed_div_algebra"
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   754
  assumes f: "(f ---> a) net"
31355
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   755
  assumes a: "a \<noteq> 0"
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   756
  shows "((\<lambda>x. inverse (f x)) ---> inverse a) net"
31355
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   757
proof -
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   758
  from a have "0 < norm a" by simp
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   759
  with f have "eventually (\<lambda>x. dist (f x) a < norm a) net"
31355
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   760
    by (rule tendstoD)
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   761
  then have "eventually (\<lambda>x. f x \<noteq> 0) net"
31355
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   762
    unfolding dist_norm by (auto elim!: eventually_elim1)
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   763
  with f a show ?thesis
31355
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   764
    by (rule tendsto_inverse_lemma)
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   765
qed
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   766
31565
da5a5589418e theorem attribute [tendsto_intros]
huffman
parents: 31492
diff changeset
   767
lemma tendsto_divide [tendsto_intros]:
31355
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   768
  fixes a b :: "'a::real_normed_field"
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   769
  shows "\<lbrakk>(f ---> a) net; (g ---> b) net; b \<noteq> 0\<rbrakk>
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31447
diff changeset
   770
    \<Longrightarrow> ((\<lambda>x. f x / g x) ---> a / b) net"
31355
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   771
by (simp add: mult.tendsto tendsto_inverse divide_inverse)
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   772
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff changeset
   773
end