src/HOL/SEQ.thy
author huffman
Fri, 12 Jun 2009 15:46:21 -0700
changeset 31588 2651f172c38b
parent 31488 5691ccb8d6b5
child 32064 53ca12ff305d
permissions -rw-r--r--
add lemma tendsto_setsum
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10751
a81ea5d3dd41 separation of HOL-Hyperreal from HOL-Real
paulson
parents:
diff changeset
     1
(*  Title       : SEQ.thy
a81ea5d3dd41 separation of HOL-Hyperreal from HOL-Real
paulson
parents:
diff changeset
     2
    Author      : Jacques D. Fleuriot
a81ea5d3dd41 separation of HOL-Hyperreal from HOL-Real
paulson
parents:
diff changeset
     3
    Copyright   : 1998  University of Cambridge
a81ea5d3dd41 separation of HOL-Hyperreal from HOL-Real
paulson
parents:
diff changeset
     4
    Description : Convergence of sequences and series
15082
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
     5
    Conversion to Isar and new proofs by Lawrence C Paulson, 2004
22608
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
     6
    Additional contributions by Jeremy Avigad and Brian Huffman
15082
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
     7
*)
10751
a81ea5d3dd41 separation of HOL-Hyperreal from HOL-Real
paulson
parents:
diff changeset
     8
22631
7ae5a6ab7bd6 moved nonstandard stuff from SEQ.thy into new file HSEQ.thy
huffman
parents: 22629
diff changeset
     9
header {* Sequences and Convergence *}
17439
a358da1a0218 add header
huffman
parents: 17429
diff changeset
    10
15131
c69542757a4d New theory header syntax.
nipkow
parents: 15102
diff changeset
    11
theory SEQ
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents: 31336
diff changeset
    12
imports Limits
15131
c69542757a4d New theory header syntax.
nipkow
parents: 15102
diff changeset
    13
begin
10751
a81ea5d3dd41 separation of HOL-Hyperreal from HOL-Real
paulson
parents:
diff changeset
    14
19765
dfe940911617 misc cleanup;
wenzelm
parents: 18585
diff changeset
    15
definition
22608
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
    16
  Zseq :: "[nat \<Rightarrow> 'a::real_normed_vector] \<Rightarrow> bool" where
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
    17
    --{*Standard definition of sequence converging to zero*}
28562
4e74209f113e `code func` now just `code`
haftmann
parents: 27681
diff changeset
    18
  [code del]: "Zseq X = (\<forall>r>0. \<exists>no. \<forall>n\<ge>no. norm (X n) < r)"
22608
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
    19
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
    20
definition
31336
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
    21
  LIMSEQ :: "[nat \<Rightarrow> 'a::metric_space, 'a] \<Rightarrow> bool"
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21139
diff changeset
    22
    ("((_)/ ----> (_))" [60, 60] 60) where
15082
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
    23
    --{*Standard definition of convergence of sequence*}
31336
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
    24
  [code del]: "X ----> L = (\<forall>r>0. \<exists>no. \<forall>n\<ge>no. dist (X n) L < r)"
10751
a81ea5d3dd41 separation of HOL-Hyperreal from HOL-Real
paulson
parents:
diff changeset
    25
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21139
diff changeset
    26
definition
31404
05d2eddc5d41 generalize type of constant lim
huffman
parents: 31403
diff changeset
    27
  lim :: "(nat \<Rightarrow> 'a::metric_space) \<Rightarrow> 'a" where
15082
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
    28
    --{*Standard definition of limit using choice operator*}
20682
cecff1f51431 define constants with THE instead of SOME
huffman
parents: 20653
diff changeset
    29
  "lim X = (THE L. X ----> L)"
10751
a81ea5d3dd41 separation of HOL-Hyperreal from HOL-Real
paulson
parents:
diff changeset
    30
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21139
diff changeset
    31
definition
31336
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
    32
  convergent :: "(nat \<Rightarrow> 'a::metric_space) \<Rightarrow> bool" where
15082
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
    33
    --{*Standard definition of convergence*}
20682
cecff1f51431 define constants with THE instead of SOME
huffman
parents: 20653
diff changeset
    34
  "convergent X = (\<exists>L. X ----> L)"
10751
a81ea5d3dd41 separation of HOL-Hyperreal from HOL-Real
paulson
parents:
diff changeset
    35
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21139
diff changeset
    36
definition
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21139
diff changeset
    37
  Bseq :: "(nat => 'a::real_normed_vector) => bool" where
15082
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
    38
    --{*Standard definition for bounded sequence*}
28562
4e74209f113e `code func` now just `code`
haftmann
parents: 27681
diff changeset
    39
  [code del]: "Bseq X = (\<exists>K>0.\<forall>n. norm (X n) \<le> K)"
10751
a81ea5d3dd41 separation of HOL-Hyperreal from HOL-Real
paulson
parents:
diff changeset
    40
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21139
diff changeset
    41
definition
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21139
diff changeset
    42
  monoseq :: "(nat=>real)=>bool" where
30730
4d3565f2cb0e New theorems mostly concerning infinite series.
paulson
parents: 30273
diff changeset
    43
    --{*Definition of monotonicity. 
4d3565f2cb0e New theorems mostly concerning infinite series.
paulson
parents: 30273
diff changeset
    44
        The use of disjunction here complicates proofs considerably. 
4d3565f2cb0e New theorems mostly concerning infinite series.
paulson
parents: 30273
diff changeset
    45
        One alternative is to add a Boolean argument to indicate the direction. 
4d3565f2cb0e New theorems mostly concerning infinite series.
paulson
parents: 30273
diff changeset
    46
        Another is to develop the notions of increasing and decreasing first.*}
28562
4e74209f113e `code func` now just `code`
haftmann
parents: 27681
diff changeset
    47
  [code del]: "monoseq X = ((\<forall>m. \<forall>n\<ge>m. X m \<le> X n) | (\<forall>m. \<forall>n\<ge>m. X n \<le> X m))"
10751
a81ea5d3dd41 separation of HOL-Hyperreal from HOL-Real
paulson
parents:
diff changeset
    48
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21139
diff changeset
    49
definition
30730
4d3565f2cb0e New theorems mostly concerning infinite series.
paulson
parents: 30273
diff changeset
    50
  incseq :: "(nat=>real)=>bool" where
4d3565f2cb0e New theorems mostly concerning infinite series.
paulson
parents: 30273
diff changeset
    51
    --{*Increasing sequence*}
4d3565f2cb0e New theorems mostly concerning infinite series.
paulson
parents: 30273
diff changeset
    52
  [code del]: "incseq X = (\<forall>m. \<forall>n\<ge>m. X m \<le> X n)"
4d3565f2cb0e New theorems mostly concerning infinite series.
paulson
parents: 30273
diff changeset
    53
4d3565f2cb0e New theorems mostly concerning infinite series.
paulson
parents: 30273
diff changeset
    54
definition
4d3565f2cb0e New theorems mostly concerning infinite series.
paulson
parents: 30273
diff changeset
    55
  decseq :: "(nat=>real)=>bool" where
4d3565f2cb0e New theorems mostly concerning infinite series.
paulson
parents: 30273
diff changeset
    56
    --{*Increasing sequence*}
4d3565f2cb0e New theorems mostly concerning infinite series.
paulson
parents: 30273
diff changeset
    57
  [code del]: "decseq X = (\<forall>m. \<forall>n\<ge>m. X n \<le> X m)"
4d3565f2cb0e New theorems mostly concerning infinite series.
paulson
parents: 30273
diff changeset
    58
4d3565f2cb0e New theorems mostly concerning infinite series.
paulson
parents: 30273
diff changeset
    59
definition
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21139
diff changeset
    60
  subseq :: "(nat => nat) => bool" where
15082
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
    61
    --{*Definition of subsequence*}
28562
4e74209f113e `code func` now just `code`
haftmann
parents: 27681
diff changeset
    62
  [code del]:   "subseq f = (\<forall>m. \<forall>n>m. (f m) < (f n))"
10751
a81ea5d3dd41 separation of HOL-Hyperreal from HOL-Real
paulson
parents:
diff changeset
    63
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21139
diff changeset
    64
definition
31336
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
    65
  Cauchy :: "(nat \<Rightarrow> 'a::metric_space) \<Rightarrow> bool" where
15082
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
    66
    --{*Standard definition of the Cauchy condition*}
31336
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
    67
  [code del]: "Cauchy X = (\<forall>e>0. \<exists>M. \<forall>m \<ge> M. \<forall>n \<ge> M. dist (X m) (X n) < e)"
10751
a81ea5d3dd41 separation of HOL-Hyperreal from HOL-Real
paulson
parents:
diff changeset
    68
15082
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
    69
22608
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
    70
subsection {* Bounded Sequences *}
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
    71
26312
e9a65675e5e8 avoid rebinding of existing facts;
wenzelm
parents: 23482
diff changeset
    72
lemma BseqI': assumes K: "\<And>n. norm (X n) \<le> K" shows "Bseq X"
22608
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
    73
unfolding Bseq_def
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
    74
proof (intro exI conjI allI)
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
    75
  show "0 < max K 1" by simp
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
    76
next
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
    77
  fix n::nat
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
    78
  have "norm (X n) \<le> K" by (rule K)
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
    79
  thus "norm (X n) \<le> max K 1" by simp
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
    80
qed
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
    81
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
    82
lemma BseqE: "\<lbrakk>Bseq X; \<And>K. \<lbrakk>0 < K; \<forall>n. norm (X n) \<le> K\<rbrakk> \<Longrightarrow> Q\<rbrakk> \<Longrightarrow> Q"
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
    83
unfolding Bseq_def by auto
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
    84
26312
e9a65675e5e8 avoid rebinding of existing facts;
wenzelm
parents: 23482
diff changeset
    85
lemma BseqI2': assumes K: "\<forall>n\<ge>N. norm (X n) \<le> K" shows "Bseq X"
e9a65675e5e8 avoid rebinding of existing facts;
wenzelm
parents: 23482
diff changeset
    86
proof (rule BseqI')
22608
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
    87
  let ?A = "norm ` X ` {..N}"
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
    88
  have 1: "finite ?A" by simp
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
    89
  fix n::nat
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
    90
  show "norm (X n) \<le> max K (Max ?A)"
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
    91
  proof (cases rule: linorder_le_cases)
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
    92
    assume "n \<ge> N"
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
    93
    hence "norm (X n) \<le> K" using K by simp
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
    94
    thus "norm (X n) \<le> max K (Max ?A)" by simp
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
    95
  next
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
    96
    assume "n \<le> N"
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
    97
    hence "norm (X n) \<in> ?A" by simp
26757
e775accff967 thms Max_ge, Min_le: dropped superfluous premise
haftmann
parents: 26312
diff changeset
    98
    with 1 have "norm (X n) \<le> Max ?A" by (rule Max_ge)
22608
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
    99
    thus "norm (X n) \<le> max K (Max ?A)" by simp
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   100
  qed
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   101
qed
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   102
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   103
lemma Bseq_ignore_initial_segment: "Bseq X \<Longrightarrow> Bseq (\<lambda>n. X (n + k))"
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   104
unfolding Bseq_def by auto
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   105
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   106
lemma Bseq_offset: "Bseq (\<lambda>n. X (n + k)) \<Longrightarrow> Bseq X"
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   107
apply (erule BseqE)
26312
e9a65675e5e8 avoid rebinding of existing facts;
wenzelm
parents: 23482
diff changeset
   108
apply (rule_tac N="k" and K="K" in BseqI2')
22608
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   109
apply clarify
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   110
apply (drule_tac x="n - k" in spec, simp)
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   111
done
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   112
31355
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   113
lemma Bseq_conv_Bfun: "Bseq X \<longleftrightarrow> Bfun X sequentially"
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   114
unfolding Bfun_def eventually_sequentially
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   115
apply (rule iffI)
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   116
apply (simp add: Bseq_def, fast)
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   117
apply (fast intro: BseqI2')
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   118
done
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   119
22608
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   120
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   121
subsection {* Sequences That Converge to Zero *}
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   122
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   123
lemma ZseqI:
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   124
  "(\<And>r. 0 < r \<Longrightarrow> \<exists>no. \<forall>n\<ge>no. norm (X n) < r) \<Longrightarrow> Zseq X"
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   125
unfolding Zseq_def by simp
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   126
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   127
lemma ZseqD:
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   128
  "\<lbrakk>Zseq X; 0 < r\<rbrakk> \<Longrightarrow> \<exists>no. \<forall>n\<ge>no. norm (X n) < r"
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   129
unfolding Zseq_def by simp
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   130
31392
69570155ddf8 replace filters with filter bases
huffman
parents: 31355
diff changeset
   131
lemma Zseq_conv_Zfun: "Zseq X \<longleftrightarrow> Zfun X sequentially"
69570155ddf8 replace filters with filter bases
huffman
parents: 31355
diff changeset
   132
unfolding Zseq_def Zfun_def eventually_sequentially ..
69570155ddf8 replace filters with filter bases
huffman
parents: 31355
diff changeset
   133
22608
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   134
lemma Zseq_zero: "Zseq (\<lambda>n. 0)"
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   135
unfolding Zseq_def by simp
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   136
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   137
lemma Zseq_const_iff: "Zseq (\<lambda>n. k) = (k = 0)"
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   138
unfolding Zseq_def by force
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   139
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   140
lemma Zseq_norm_iff: "Zseq (\<lambda>n. norm (X n)) = Zseq (\<lambda>n. X n)"
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   141
unfolding Zseq_def by simp
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   142
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   143
lemma Zseq_imp_Zseq:
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   144
  assumes X: "Zseq X"
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   145
  assumes Y: "\<And>n. norm (Y n) \<le> norm (X n) * K"
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   146
  shows "Zseq (\<lambda>n. Y n)"
31355
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   147
using X Y Zfun_imp_Zfun [of X sequentially Y K]
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   148
unfolding Zseq_conv_Zfun by simp
22608
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   149
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   150
lemma Zseq_le: "\<lbrakk>Zseq Y; \<forall>n. norm (X n) \<le> norm (Y n)\<rbrakk> \<Longrightarrow> Zseq X"
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   151
by (erule_tac K="1" in Zseq_imp_Zseq, simp)
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   152
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   153
lemma Zseq_add:
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents: 31336
diff changeset
   154
  "Zseq X \<Longrightarrow> Zseq Y \<Longrightarrow> Zseq (\<lambda>n. X n + Y n)"
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents: 31336
diff changeset
   155
unfolding Zseq_conv_Zfun by (rule Zfun_add)
22608
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   156
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   157
lemma Zseq_minus: "Zseq X \<Longrightarrow> Zseq (\<lambda>n. - X n)"
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   158
unfolding Zseq_def by simp
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   159
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   160
lemma Zseq_diff: "\<lbrakk>Zseq X; Zseq Y\<rbrakk> \<Longrightarrow> Zseq (\<lambda>n. X n - Y n)"
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   161
by (simp only: diff_minus Zseq_add Zseq_minus)
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   162
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   163
lemma (in bounded_linear) Zseq:
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents: 31336
diff changeset
   164
  "Zseq X \<Longrightarrow> Zseq (\<lambda>n. f (X n))"
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents: 31336
diff changeset
   165
unfolding Zseq_conv_Zfun by (rule Zfun)
22608
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   166
23127
56ee8105c002 simplify names of locale interpretations
huffman
parents: 22998
diff changeset
   167
lemma (in bounded_bilinear) Zseq:
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents: 31336
diff changeset
   168
  "Zseq X \<Longrightarrow> Zseq Y \<Longrightarrow> Zseq (\<lambda>n. X n ** Y n)"
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents: 31336
diff changeset
   169
unfolding Zseq_conv_Zfun by (rule Zfun)
22608
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   170
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   171
lemma (in bounded_bilinear) Zseq_prod_Bseq:
31355
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   172
  "Zseq X \<Longrightarrow> Bseq Y \<Longrightarrow> Zseq (\<lambda>n. X n ** Y n)"
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   173
unfolding Zseq_conv_Zfun Bseq_conv_Bfun
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   174
by (rule Zfun_prod_Bfun)
22608
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   175
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   176
lemma (in bounded_bilinear) Bseq_prod_Zseq:
31355
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   177
  "Bseq X \<Longrightarrow> Zseq Y \<Longrightarrow> Zseq (\<lambda>n. X n ** Y n)"
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   178
unfolding Zseq_conv_Zfun Bseq_conv_Bfun
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   179
by (rule Bfun_prod_Zfun)
22608
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   180
23127
56ee8105c002 simplify names of locale interpretations
huffman
parents: 22998
diff changeset
   181
lemma (in bounded_bilinear) Zseq_left:
22608
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   182
  "Zseq X \<Longrightarrow> Zseq (\<lambda>n. X n ** a)"
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   183
by (rule bounded_linear_left [THEN bounded_linear.Zseq])
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   184
23127
56ee8105c002 simplify names of locale interpretations
huffman
parents: 22998
diff changeset
   185
lemma (in bounded_bilinear) Zseq_right:
22608
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   186
  "Zseq X \<Longrightarrow> Zseq (\<lambda>n. a ** X n)"
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   187
by (rule bounded_linear_right [THEN bounded_linear.Zseq])
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   188
23127
56ee8105c002 simplify names of locale interpretations
huffman
parents: 22998
diff changeset
   189
lemmas Zseq_mult = mult.Zseq
56ee8105c002 simplify names of locale interpretations
huffman
parents: 22998
diff changeset
   190
lemmas Zseq_mult_right = mult.Zseq_right
56ee8105c002 simplify names of locale interpretations
huffman
parents: 22998
diff changeset
   191
lemmas Zseq_mult_left = mult.Zseq_left
22608
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   192
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   193
20696
3b887ad7d196 reorganized subsection headings
huffman
parents: 20695
diff changeset
   194
subsection {* Limits of Sequences *}
3b887ad7d196 reorganized subsection headings
huffman
parents: 20695
diff changeset
   195
31487
93938cafc0e6 put syntax for tendsto in Limits.thy; rename variables
huffman
parents: 31404
diff changeset
   196
lemma LIMSEQ_conv_tendsto: "(X ----> L) \<longleftrightarrow> (X ---> L) sequentially"
31488
5691ccb8d6b5 generalize tendsto to class topological_space
huffman
parents: 31487
diff changeset
   197
unfolding LIMSEQ_def tendsto_iff eventually_sequentially ..
31392
69570155ddf8 replace filters with filter bases
huffman
parents: 31355
diff changeset
   198
15082
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   199
lemma LIMSEQ_iff:
31336
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   200
  fixes L :: "'a::real_normed_vector"
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   201
  shows "(X ----> L) = (\<forall>r>0. \<exists>no. \<forall>n \<ge> no. norm (X n - L) < r)"
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   202
unfolding LIMSEQ_def dist_norm ..
22608
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   203
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   204
lemma LIMSEQ_Zseq_iff: "((\<lambda>n. X n) ----> L) = Zseq (\<lambda>n. X n - L)"
31336
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   205
by (simp only: LIMSEQ_iff Zseq_def)
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   206
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   207
lemma metric_LIMSEQ_I:
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   208
  "(\<And>r. 0 < r \<Longrightarrow> \<exists>no. \<forall>n\<ge>no. dist (X n) L < r) \<Longrightarrow> X ----> L"
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   209
by (simp add: LIMSEQ_def)
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   210
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   211
lemma metric_LIMSEQ_D:
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   212
  "\<lbrakk>X ----> L; 0 < r\<rbrakk> \<Longrightarrow> \<exists>no. \<forall>n\<ge>no. dist (X n) L < r"
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   213
by (simp add: LIMSEQ_def)
15082
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   214
20751
93271c59d211 add intro/dest rules for (NS)LIMSEQ and (NS)Cauchy; rewrite equivalence proofs using transfer
huffman
parents: 20740
diff changeset
   215
lemma LIMSEQ_I:
31336
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   216
  fixes L :: "'a::real_normed_vector"
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   217
  shows "(\<And>r. 0 < r \<Longrightarrow> \<exists>no. \<forall>n\<ge>no. norm (X n - L) < r) \<Longrightarrow> X ----> L"
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   218
by (simp add: LIMSEQ_iff)
20751
93271c59d211 add intro/dest rules for (NS)LIMSEQ and (NS)Cauchy; rewrite equivalence proofs using transfer
huffman
parents: 20740
diff changeset
   219
93271c59d211 add intro/dest rules for (NS)LIMSEQ and (NS)Cauchy; rewrite equivalence proofs using transfer
huffman
parents: 20740
diff changeset
   220
lemma LIMSEQ_D:
31336
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   221
  fixes L :: "'a::real_normed_vector"
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   222
  shows "\<lbrakk>X ----> L; 0 < r\<rbrakk> \<Longrightarrow> \<exists>no. \<forall>n\<ge>no. norm (X n - L) < r"
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   223
by (simp add: LIMSEQ_iff)
20751
93271c59d211 add intro/dest rules for (NS)LIMSEQ and (NS)Cauchy; rewrite equivalence proofs using transfer
huffman
parents: 20740
diff changeset
   224
22608
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   225
lemma LIMSEQ_const: "(\<lambda>n. k) ----> k"
20696
3b887ad7d196 reorganized subsection headings
huffman
parents: 20695
diff changeset
   226
by (simp add: LIMSEQ_def)
3b887ad7d196 reorganized subsection headings
huffman
parents: 20695
diff changeset
   227
31336
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   228
lemma LIMSEQ_const_iff: "(\<lambda>n. k) ----> l \<longleftrightarrow> k = l"
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   229
apply (safe intro!: LIMSEQ_const)
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   230
apply (rule ccontr)
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   231
apply (drule_tac r="dist k l" in metric_LIMSEQ_D)
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   232
apply (simp add: zero_less_dist_iff)
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   233
apply auto
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   234
done
22608
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   235
31336
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   236
lemma LIMSEQ_norm:
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   237
  fixes a :: "'a::real_normed_vector"
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   238
  shows "X ----> a \<Longrightarrow> (\<lambda>n. norm (X n)) ----> norm a"
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents: 31336
diff changeset
   239
unfolding LIMSEQ_conv_tendsto by (rule tendsto_norm)
20696
3b887ad7d196 reorganized subsection headings
huffman
parents: 20695
diff changeset
   240
22615
d650e51b5970 new standard proofs of some LIMSEQ lemmas
huffman
parents: 22614
diff changeset
   241
lemma LIMSEQ_ignore_initial_segment:
d650e51b5970 new standard proofs of some LIMSEQ lemmas
huffman
parents: 22614
diff changeset
   242
  "f ----> a \<Longrightarrow> (\<lambda>n. f (n + k)) ----> a"
31336
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   243
apply (rule metric_LIMSEQ_I)
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   244
apply (drule (1) metric_LIMSEQ_D)
22615
d650e51b5970 new standard proofs of some LIMSEQ lemmas
huffman
parents: 22614
diff changeset
   245
apply (erule exE, rename_tac N)
d650e51b5970 new standard proofs of some LIMSEQ lemmas
huffman
parents: 22614
diff changeset
   246
apply (rule_tac x=N in exI)
d650e51b5970 new standard proofs of some LIMSEQ lemmas
huffman
parents: 22614
diff changeset
   247
apply simp
d650e51b5970 new standard proofs of some LIMSEQ lemmas
huffman
parents: 22614
diff changeset
   248
done
20696
3b887ad7d196 reorganized subsection headings
huffman
parents: 20695
diff changeset
   249
22615
d650e51b5970 new standard proofs of some LIMSEQ lemmas
huffman
parents: 22614
diff changeset
   250
lemma LIMSEQ_offset:
d650e51b5970 new standard proofs of some LIMSEQ lemmas
huffman
parents: 22614
diff changeset
   251
  "(\<lambda>n. f (n + k)) ----> a \<Longrightarrow> f ----> a"
31336
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   252
apply (rule metric_LIMSEQ_I)
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   253
apply (drule (1) metric_LIMSEQ_D)
22615
d650e51b5970 new standard proofs of some LIMSEQ lemmas
huffman
parents: 22614
diff changeset
   254
apply (erule exE, rename_tac N)
d650e51b5970 new standard proofs of some LIMSEQ lemmas
huffman
parents: 22614
diff changeset
   255
apply (rule_tac x="N + k" in exI)
d650e51b5970 new standard proofs of some LIMSEQ lemmas
huffman
parents: 22614
diff changeset
   256
apply clarify
d650e51b5970 new standard proofs of some LIMSEQ lemmas
huffman
parents: 22614
diff changeset
   257
apply (drule_tac x="n - k" in spec)
d650e51b5970 new standard proofs of some LIMSEQ lemmas
huffman
parents: 22614
diff changeset
   258
apply (simp add: le_diff_conv2)
20696
3b887ad7d196 reorganized subsection headings
huffman
parents: 20695
diff changeset
   259
done
3b887ad7d196 reorganized subsection headings
huffman
parents: 20695
diff changeset
   260
22615
d650e51b5970 new standard proofs of some LIMSEQ lemmas
huffman
parents: 22614
diff changeset
   261
lemma LIMSEQ_Suc: "f ----> l \<Longrightarrow> (\<lambda>n. f (Suc n)) ----> l"
30082
43c5b7bfc791 make more proofs work whether or not One_nat_def is a simp rule
huffman
parents: 29803
diff changeset
   262
by (drule_tac k="Suc 0" in LIMSEQ_ignore_initial_segment, simp)
22615
d650e51b5970 new standard proofs of some LIMSEQ lemmas
huffman
parents: 22614
diff changeset
   263
d650e51b5970 new standard proofs of some LIMSEQ lemmas
huffman
parents: 22614
diff changeset
   264
lemma LIMSEQ_imp_Suc: "(\<lambda>n. f (Suc n)) ----> l \<Longrightarrow> f ----> l"
30082
43c5b7bfc791 make more proofs work whether or not One_nat_def is a simp rule
huffman
parents: 29803
diff changeset
   265
by (rule_tac k="Suc 0" in LIMSEQ_offset, simp)
22615
d650e51b5970 new standard proofs of some LIMSEQ lemmas
huffman
parents: 22614
diff changeset
   266
d650e51b5970 new standard proofs of some LIMSEQ lemmas
huffman
parents: 22614
diff changeset
   267
lemma LIMSEQ_Suc_iff: "(\<lambda>n. f (Suc n)) ----> l = f ----> l"
d650e51b5970 new standard proofs of some LIMSEQ lemmas
huffman
parents: 22614
diff changeset
   268
by (blast intro: LIMSEQ_imp_Suc LIMSEQ_Suc)
d650e51b5970 new standard proofs of some LIMSEQ lemmas
huffman
parents: 22614
diff changeset
   269
29803
c56a5571f60a Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents: 29667
diff changeset
   270
lemma LIMSEQ_linear: "\<lbrakk> X ----> x ; l > 0 \<rbrakk> \<Longrightarrow> (\<lambda> n. X (n * l)) ----> x"
c56a5571f60a Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents: 29667
diff changeset
   271
  unfolding LIMSEQ_def
c56a5571f60a Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents: 29667
diff changeset
   272
  by (metis div_le_dividend div_mult_self1_is_m le_trans nat_mult_commute)
c56a5571f60a Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents: 29667
diff changeset
   273
31336
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   274
lemma LIMSEQ_add:
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   275
  fixes a b :: "'a::real_normed_vector"
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   276
  shows "\<lbrakk>X ----> a; Y ----> b\<rbrakk> \<Longrightarrow> (\<lambda>n. X n + Y n) ----> a + b"
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents: 31336
diff changeset
   277
unfolding LIMSEQ_conv_tendsto by (rule tendsto_add)
22608
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   278
31336
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   279
lemma LIMSEQ_minus:
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   280
  fixes a :: "'a::real_normed_vector"
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   281
  shows "X ----> a \<Longrightarrow> (\<lambda>n. - X n) ----> - a"
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents: 31336
diff changeset
   282
unfolding LIMSEQ_conv_tendsto by (rule tendsto_minus)
22608
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   283
31336
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   284
lemma LIMSEQ_minus_cancel:
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   285
  fixes a :: "'a::real_normed_vector"
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   286
  shows "(\<lambda>n. - X n) ----> - a \<Longrightarrow> X ----> a"
22608
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   287
by (drule LIMSEQ_minus, simp)
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   288
31336
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   289
lemma LIMSEQ_diff:
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   290
  fixes a b :: "'a::real_normed_vector"
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   291
  shows "\<lbrakk>X ----> a; Y ----> b\<rbrakk> \<Longrightarrow> (\<lambda>n. X n - Y n) ----> a - b"
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents: 31336
diff changeset
   292
unfolding LIMSEQ_conv_tendsto by (rule tendsto_diff)
22608
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   293
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   294
lemma LIMSEQ_unique: "\<lbrakk>X ----> a; X ----> b\<rbrakk> \<Longrightarrow> a = b"
31336
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   295
apply (rule ccontr)
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   296
apply (drule_tac r="dist a b / 2" in metric_LIMSEQ_D, simp add: zero_less_dist_iff)
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   297
apply (drule_tac r="dist a b / 2" in metric_LIMSEQ_D, simp add: zero_less_dist_iff)
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   298
apply (clarify, rename_tac M N)
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   299
apply (subgoal_tac "dist a b < dist a b / 2 + dist a b / 2", simp)
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   300
apply (subgoal_tac "dist a b \<le> dist (X (max M N)) a + dist (X (max M N)) b")
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   301
apply (erule le_less_trans, rule add_strict_mono, simp, simp)
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   302
apply (subst dist_commute, rule dist_triangle)
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   303
done
22608
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   304
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   305
lemma (in bounded_linear) LIMSEQ:
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   306
  "X ----> a \<Longrightarrow> (\<lambda>n. f (X n)) ----> f a"
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents: 31336
diff changeset
   307
unfolding LIMSEQ_conv_tendsto by (rule tendsto)
22608
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   308
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   309
lemma (in bounded_bilinear) LIMSEQ:
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   310
  "\<lbrakk>X ----> a; Y ----> b\<rbrakk> \<Longrightarrow> (\<lambda>n. X n ** Y n) ----> a ** b"
31349
2261c8781f73 new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents: 31336
diff changeset
   311
unfolding LIMSEQ_conv_tendsto by (rule tendsto)
22608
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   312
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   313
lemma LIMSEQ_mult:
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   314
  fixes a b :: "'a::real_normed_algebra"
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   315
  shows "[| X ----> a; Y ----> b |] ==> (%n. X n * Y n) ----> a * b"
23127
56ee8105c002 simplify names of locale interpretations
huffman
parents: 22998
diff changeset
   316
by (rule mult.LIMSEQ)
22608
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   317
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   318
lemma Bseq_inverse_lemma:
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   319
  fixes x :: "'a::real_normed_div_algebra"
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   320
  shows "\<lbrakk>r \<le> norm x; 0 < r\<rbrakk> \<Longrightarrow> norm (inverse x) \<le> inverse r"
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   321
apply (subst nonzero_norm_inverse, clarsimp)
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   322
apply (erule (1) le_imp_inverse_le)
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   323
done
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   324
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   325
lemma Bseq_inverse:
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   326
  fixes a :: "'a::real_normed_div_algebra"
31355
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   327
  shows "\<lbrakk>X ----> a; a \<noteq> 0\<rbrakk> \<Longrightarrow> Bseq (\<lambda>n. inverse (X n))"
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   328
unfolding LIMSEQ_conv_tendsto Bseq_conv_Bfun
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   329
by (rule Bfun_inverse)
22608
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   330
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   331
lemma LIMSEQ_inverse:
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   332
  fixes a :: "'a::real_normed_div_algebra"
31355
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   333
  shows "\<lbrakk>X ----> a; a \<noteq> 0\<rbrakk> \<Longrightarrow> (\<lambda>n. inverse (X n)) ----> inverse a"
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   334
unfolding LIMSEQ_conv_tendsto
3d18766ddc4b limits of inverse using filters
huffman
parents: 31353
diff changeset
   335
by (rule tendsto_inverse)
22608
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   336
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   337
lemma LIMSEQ_divide:
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   338
  fixes a b :: "'a::real_normed_field"
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   339
  shows "\<lbrakk>X ----> a; Y ----> b; b \<noteq> 0\<rbrakk> \<Longrightarrow> (\<lambda>n. X n / Y n) ----> a / b"
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   340
by (simp add: LIMSEQ_mult LIMSEQ_inverse divide_inverse)
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   341
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   342
lemma LIMSEQ_pow:
31017
2c227493ea56 stripped class recpower further
haftmann
parents: 30730
diff changeset
   343
  fixes a :: "'a::{power, real_normed_algebra}"
22608
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   344
  shows "X ----> a \<Longrightarrow> (\<lambda>n. (X n) ^ m) ----> a ^ m"
30273
ecd6f0ca62ea declare power_Suc [simp]; remove redundant type-specific versions of power_Suc
huffman
parents: 30242
diff changeset
   345
by (induct m) (simp_all add: LIMSEQ_const LIMSEQ_mult)
22608
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   346
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   347
lemma LIMSEQ_setsum:
31336
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   348
  fixes L :: "'a \<Rightarrow> 'b::real_normed_vector"
22608
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   349
  assumes n: "\<And>n. n \<in> S \<Longrightarrow> X n ----> L n"
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   350
  shows "(\<lambda>m. \<Sum>n\<in>S. X n m) ----> (\<Sum>n\<in>S. L n)"
31588
2651f172c38b add lemma tendsto_setsum
huffman
parents: 31488
diff changeset
   351
using n unfolding LIMSEQ_conv_tendsto by (rule tendsto_setsum)
22608
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   352
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   353
lemma LIMSEQ_setprod:
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   354
  fixes L :: "'a \<Rightarrow> 'b::{real_normed_algebra,comm_ring_1}"
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   355
  assumes n: "\<And>n. n \<in> S \<Longrightarrow> X n ----> L n"
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   356
  shows "(\<lambda>m. \<Prod>n\<in>S. X n m) ----> (\<Prod>n\<in>S. L n)"
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   357
proof (cases "finite S")
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   358
  case True
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   359
  thus ?thesis using n
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   360
  proof (induct)
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   361
    case empty
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   362
    show ?case
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   363
      by (simp add: LIMSEQ_const)
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   364
  next
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   365
    case insert
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   366
    thus ?case
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   367
      by (simp add: LIMSEQ_mult)
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   368
  qed
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   369
next
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   370
  case False
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   371
  thus ?thesis
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   372
    by (simp add: setprod_def LIMSEQ_const)
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   373
qed
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
   374
31336
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   375
lemma LIMSEQ_add_const:
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   376
  fixes a :: "'a::real_normed_vector"
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   377
  shows "f ----> a ==> (%n.(f n + b)) ----> a + b"
22614
17644bc9cee4 rearranged sections
huffman
parents: 22608
diff changeset
   378
by (simp add: LIMSEQ_add LIMSEQ_const)
17644bc9cee4 rearranged sections
huffman
parents: 22608
diff changeset
   379
17644bc9cee4 rearranged sections
huffman
parents: 22608
diff changeset
   380
(* FIXME: delete *)
17644bc9cee4 rearranged sections
huffman
parents: 22608
diff changeset
   381
lemma LIMSEQ_add_minus:
31336
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   382
  fixes a b :: "'a::real_normed_vector"
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   383
  shows "[| X ----> a; Y ----> b |] ==> (%n. X n + -Y n) ----> a + -b"
22614
17644bc9cee4 rearranged sections
huffman
parents: 22608
diff changeset
   384
by (simp only: LIMSEQ_add LIMSEQ_minus)
17644bc9cee4 rearranged sections
huffman
parents: 22608
diff changeset
   385
31336
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   386
lemma LIMSEQ_diff_const:
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   387
  fixes a b :: "'a::real_normed_vector"
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   388
  shows "f ----> a ==> (%n.(f n  - b)) ----> a - b"
22614
17644bc9cee4 rearranged sections
huffman
parents: 22608
diff changeset
   389
by (simp add: LIMSEQ_diff LIMSEQ_const)
17644bc9cee4 rearranged sections
huffman
parents: 22608
diff changeset
   390
31336
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   391
lemma LIMSEQ_diff_approach_zero:
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   392
  fixes L :: "'a::real_normed_vector"
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   393
  shows "g ----> L ==> (%x. f x - g x) ----> 0 ==> f ----> L"
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   394
by (drule (1) LIMSEQ_add, simp)
22614
17644bc9cee4 rearranged sections
huffman
parents: 22608
diff changeset
   395
31336
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   396
lemma LIMSEQ_diff_approach_zero2:
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   397
  fixes L :: "'a::real_normed_vector"
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   398
  shows "f ----> L ==> (%x. f x - g x) ----> 0 ==> g ----> L";
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   399
by (drule (1) LIMSEQ_diff, simp)
22614
17644bc9cee4 rearranged sections
huffman
parents: 22608
diff changeset
   400
17644bc9cee4 rearranged sections
huffman
parents: 22608
diff changeset
   401
text{*A sequence tends to zero iff its abs does*}
31336
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   402
lemma LIMSEQ_norm_zero:
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   403
  fixes X :: "nat \<Rightarrow> 'a::real_normed_vector"
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   404
  shows "((\<lambda>n. norm (X n)) ----> 0) \<longleftrightarrow> (X ----> 0)"
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   405
by (simp add: LIMSEQ_iff)
22614
17644bc9cee4 rearranged sections
huffman
parents: 22608
diff changeset
   406
17644bc9cee4 rearranged sections
huffman
parents: 22608
diff changeset
   407
lemma LIMSEQ_rabs_zero: "((%n. \<bar>f n\<bar>) ----> 0) = (f ----> (0::real))"
31336
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   408
by (simp add: LIMSEQ_iff)
22614
17644bc9cee4 rearranged sections
huffman
parents: 22608
diff changeset
   409
17644bc9cee4 rearranged sections
huffman
parents: 22608
diff changeset
   410
lemma LIMSEQ_imp_rabs: "f ----> (l::real) ==> (%n. \<bar>f n\<bar>) ----> \<bar>l\<bar>"
17644bc9cee4 rearranged sections
huffman
parents: 22608
diff changeset
   411
by (drule LIMSEQ_norm, simp)
17644bc9cee4 rearranged sections
huffman
parents: 22608
diff changeset
   412
17644bc9cee4 rearranged sections
huffman
parents: 22608
diff changeset
   413
text{*An unbounded sequence's inverse tends to 0*}
17644bc9cee4 rearranged sections
huffman
parents: 22608
diff changeset
   414
17644bc9cee4 rearranged sections
huffman
parents: 22608
diff changeset
   415
lemma LIMSEQ_inverse_zero:
22974
08b0fa905ea0 tuned proofs
huffman
parents: 22631
diff changeset
   416
  "\<forall>r::real. \<exists>N. \<forall>n\<ge>N. r < X n \<Longrightarrow> (\<lambda>n. inverse (X n)) ----> 0"
08b0fa905ea0 tuned proofs
huffman
parents: 22631
diff changeset
   417
apply (rule LIMSEQ_I)
08b0fa905ea0 tuned proofs
huffman
parents: 22631
diff changeset
   418
apply (drule_tac x="inverse r" in spec, safe)
08b0fa905ea0 tuned proofs
huffman
parents: 22631
diff changeset
   419
apply (rule_tac x="N" in exI, safe)
08b0fa905ea0 tuned proofs
huffman
parents: 22631
diff changeset
   420
apply (drule_tac x="n" in spec, safe)
22614
17644bc9cee4 rearranged sections
huffman
parents: 22608
diff changeset
   421
apply (frule positive_imp_inverse_positive)
22974
08b0fa905ea0 tuned proofs
huffman
parents: 22631
diff changeset
   422
apply (frule (1) less_imp_inverse_less)
08b0fa905ea0 tuned proofs
huffman
parents: 22631
diff changeset
   423
apply (subgoal_tac "0 < X n", simp)
08b0fa905ea0 tuned proofs
huffman
parents: 22631
diff changeset
   424
apply (erule (1) order_less_trans)
22614
17644bc9cee4 rearranged sections
huffman
parents: 22608
diff changeset
   425
done
17644bc9cee4 rearranged sections
huffman
parents: 22608
diff changeset
   426
17644bc9cee4 rearranged sections
huffman
parents: 22608
diff changeset
   427
text{*The sequence @{term "1/n"} tends to 0 as @{term n} tends to infinity*}
17644bc9cee4 rearranged sections
huffman
parents: 22608
diff changeset
   428
17644bc9cee4 rearranged sections
huffman
parents: 22608
diff changeset
   429
lemma LIMSEQ_inverse_real_of_nat: "(%n. inverse(real(Suc n))) ----> 0"
17644bc9cee4 rearranged sections
huffman
parents: 22608
diff changeset
   430
apply (rule LIMSEQ_inverse_zero, safe)
22974
08b0fa905ea0 tuned proofs
huffman
parents: 22631
diff changeset
   431
apply (cut_tac x = r in reals_Archimedean2)
22614
17644bc9cee4 rearranged sections
huffman
parents: 22608
diff changeset
   432
apply (safe, rule_tac x = n in exI)
17644bc9cee4 rearranged sections
huffman
parents: 22608
diff changeset
   433
apply (auto simp add: real_of_nat_Suc)
17644bc9cee4 rearranged sections
huffman
parents: 22608
diff changeset
   434
done
17644bc9cee4 rearranged sections
huffman
parents: 22608
diff changeset
   435
17644bc9cee4 rearranged sections
huffman
parents: 22608
diff changeset
   436
text{*The sequence @{term "r + 1/n"} tends to @{term r} as @{term n} tends to
17644bc9cee4 rearranged sections
huffman
parents: 22608
diff changeset
   437
infinity is now easily proved*}
17644bc9cee4 rearranged sections
huffman
parents: 22608
diff changeset
   438
17644bc9cee4 rearranged sections
huffman
parents: 22608
diff changeset
   439
lemma LIMSEQ_inverse_real_of_nat_add:
17644bc9cee4 rearranged sections
huffman
parents: 22608
diff changeset
   440
     "(%n. r + inverse(real(Suc n))) ----> r"
17644bc9cee4 rearranged sections
huffman
parents: 22608
diff changeset
   441
by (cut_tac LIMSEQ_add [OF LIMSEQ_const LIMSEQ_inverse_real_of_nat], auto)
17644bc9cee4 rearranged sections
huffman
parents: 22608
diff changeset
   442
17644bc9cee4 rearranged sections
huffman
parents: 22608
diff changeset
   443
lemma LIMSEQ_inverse_real_of_nat_add_minus:
17644bc9cee4 rearranged sections
huffman
parents: 22608
diff changeset
   444
     "(%n. r + -inverse(real(Suc n))) ----> r"
17644bc9cee4 rearranged sections
huffman
parents: 22608
diff changeset
   445
by (cut_tac LIMSEQ_add_minus [OF LIMSEQ_const LIMSEQ_inverse_real_of_nat], auto)
17644bc9cee4 rearranged sections
huffman
parents: 22608
diff changeset
   446
17644bc9cee4 rearranged sections
huffman
parents: 22608
diff changeset
   447
lemma LIMSEQ_inverse_real_of_nat_add_minus_mult:
17644bc9cee4 rearranged sections
huffman
parents: 22608
diff changeset
   448
     "(%n. r*( 1 + -inverse(real(Suc n)))) ----> r"
17644bc9cee4 rearranged sections
huffman
parents: 22608
diff changeset
   449
by (cut_tac b=1 in
17644bc9cee4 rearranged sections
huffman
parents: 22608
diff changeset
   450
        LIMSEQ_mult [OF LIMSEQ_const LIMSEQ_inverse_real_of_nat_add_minus], auto)
17644bc9cee4 rearranged sections
huffman
parents: 22608
diff changeset
   451
22615
d650e51b5970 new standard proofs of some LIMSEQ lemmas
huffman
parents: 22614
diff changeset
   452
lemma LIMSEQ_le_const:
d650e51b5970 new standard proofs of some LIMSEQ lemmas
huffman
parents: 22614
diff changeset
   453
  "\<lbrakk>X ----> (x::real); \<exists>N. \<forall>n\<ge>N. a \<le> X n\<rbrakk> \<Longrightarrow> a \<le> x"
d650e51b5970 new standard proofs of some LIMSEQ lemmas
huffman
parents: 22614
diff changeset
   454
apply (rule ccontr, simp only: linorder_not_le)
d650e51b5970 new standard proofs of some LIMSEQ lemmas
huffman
parents: 22614
diff changeset
   455
apply (drule_tac r="a - x" in LIMSEQ_D, simp)
d650e51b5970 new standard proofs of some LIMSEQ lemmas
huffman
parents: 22614
diff changeset
   456
apply clarsimp
d650e51b5970 new standard proofs of some LIMSEQ lemmas
huffman
parents: 22614
diff changeset
   457
apply (drule_tac x="max N no" in spec, drule mp, rule le_maxI1)
d650e51b5970 new standard proofs of some LIMSEQ lemmas
huffman
parents: 22614
diff changeset
   458
apply (drule_tac x="max N no" in spec, drule mp, rule le_maxI2)
d650e51b5970 new standard proofs of some LIMSEQ lemmas
huffman
parents: 22614
diff changeset
   459
apply simp
d650e51b5970 new standard proofs of some LIMSEQ lemmas
huffman
parents: 22614
diff changeset
   460
done
d650e51b5970 new standard proofs of some LIMSEQ lemmas
huffman
parents: 22614
diff changeset
   461
d650e51b5970 new standard proofs of some LIMSEQ lemmas
huffman
parents: 22614
diff changeset
   462
lemma LIMSEQ_le_const2:
d650e51b5970 new standard proofs of some LIMSEQ lemmas
huffman
parents: 22614
diff changeset
   463
  "\<lbrakk>X ----> (x::real); \<exists>N. \<forall>n\<ge>N. X n \<le> a\<rbrakk> \<Longrightarrow> x \<le> a"
d650e51b5970 new standard proofs of some LIMSEQ lemmas
huffman
parents: 22614
diff changeset
   464
apply (subgoal_tac "- a \<le> - x", simp)
d650e51b5970 new standard proofs of some LIMSEQ lemmas
huffman
parents: 22614
diff changeset
   465
apply (rule LIMSEQ_le_const)
d650e51b5970 new standard proofs of some LIMSEQ lemmas
huffman
parents: 22614
diff changeset
   466
apply (erule LIMSEQ_minus)
d650e51b5970 new standard proofs of some LIMSEQ lemmas
huffman
parents: 22614
diff changeset
   467
apply simp
d650e51b5970 new standard proofs of some LIMSEQ lemmas
huffman
parents: 22614
diff changeset
   468
done
d650e51b5970 new standard proofs of some LIMSEQ lemmas
huffman
parents: 22614
diff changeset
   469
d650e51b5970 new standard proofs of some LIMSEQ lemmas
huffman
parents: 22614
diff changeset
   470
lemma LIMSEQ_le:
d650e51b5970 new standard proofs of some LIMSEQ lemmas
huffman
parents: 22614
diff changeset
   471
  "\<lbrakk>X ----> x; Y ----> y; \<exists>N. \<forall>n\<ge>N. X n \<le> Y n\<rbrakk> \<Longrightarrow> x \<le> (y::real)"
d650e51b5970 new standard proofs of some LIMSEQ lemmas
huffman
parents: 22614
diff changeset
   472
apply (subgoal_tac "0 \<le> y - x", simp)
d650e51b5970 new standard proofs of some LIMSEQ lemmas
huffman
parents: 22614
diff changeset
   473
apply (rule LIMSEQ_le_const)
d650e51b5970 new standard proofs of some LIMSEQ lemmas
huffman
parents: 22614
diff changeset
   474
apply (erule (1) LIMSEQ_diff)
d650e51b5970 new standard proofs of some LIMSEQ lemmas
huffman
parents: 22614
diff changeset
   475
apply (simp add: le_diff_eq)
d650e51b5970 new standard proofs of some LIMSEQ lemmas
huffman
parents: 22614
diff changeset
   476
done
d650e51b5970 new standard proofs of some LIMSEQ lemmas
huffman
parents: 22614
diff changeset
   477
15082
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   478
20696
3b887ad7d196 reorganized subsection headings
huffman
parents: 20695
diff changeset
   479
subsection {* Convergence *}
15082
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   480
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   481
lemma limI: "X ----> L ==> lim X = L"
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   482
apply (simp add: lim_def)
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   483
apply (blast intro: LIMSEQ_unique)
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   484
done
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   485
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   486
lemma convergentD: "convergent X ==> \<exists>L. (X ----> L)"
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   487
by (simp add: convergent_def)
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   488
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   489
lemma convergentI: "(X ----> L) ==> convergent X"
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   490
by (auto simp add: convergent_def)
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   491
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   492
lemma convergent_LIMSEQ_iff: "convergent X = (X ----> lim X)"
20682
cecff1f51431 define constants with THE instead of SOME
huffman
parents: 20653
diff changeset
   493
by (auto intro: theI LIMSEQ_unique simp add: convergent_def lim_def)
15082
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   494
31336
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   495
lemma convergent_minus_iff:
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   496
  fixes X :: "nat \<Rightarrow> 'a::real_normed_vector"
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   497
  shows "convergent X \<longleftrightarrow> convergent (\<lambda>n. - X n)"
20696
3b887ad7d196 reorganized subsection headings
huffman
parents: 20695
diff changeset
   498
apply (simp add: convergent_def)
3b887ad7d196 reorganized subsection headings
huffman
parents: 20695
diff changeset
   499
apply (auto dest: LIMSEQ_minus)
3b887ad7d196 reorganized subsection headings
huffman
parents: 20695
diff changeset
   500
apply (drule LIMSEQ_minus, auto)
3b887ad7d196 reorganized subsection headings
huffman
parents: 20695
diff changeset
   501
done
3b887ad7d196 reorganized subsection headings
huffman
parents: 20695
diff changeset
   502
30196
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   503
text{* Given a binary function @{text "f:: nat \<Rightarrow> 'a \<Rightarrow> 'a"}, its values are uniquely determined by a function g *}
20696
3b887ad7d196 reorganized subsection headings
huffman
parents: 20695
diff changeset
   504
30196
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   505
lemma nat_function_unique: "EX! g. g 0 = e \<and> (\<forall>n. g (Suc n) = f n (g n))"
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   506
  unfolding Ex1_def
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   507
  apply (rule_tac x="nat_rec e f" in exI)
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   508
  apply (rule conjI)+
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   509
apply (rule def_nat_rec_0, simp)
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   510
apply (rule allI, rule def_nat_rec_Suc, simp)
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   511
apply (rule allI, rule impI, rule ext)
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   512
apply (erule conjE)
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   513
apply (induct_tac x)
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   514
apply (simp add: nat_rec_0)
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   515
apply (erule_tac x="n" in allE)
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   516
apply (simp)
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   517
done
20696
3b887ad7d196 reorganized subsection headings
huffman
parents: 20695
diff changeset
   518
15082
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   519
text{*Subsequence (alternative definition, (e.g. Hoskins)*}
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   520
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   521
lemma subseq_Suc_iff: "subseq f = (\<forall>n. (f n) < (f (Suc n)))"
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   522
apply (simp add: subseq_def)
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   523
apply (auto dest!: less_imp_Suc_add)
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   524
apply (induct_tac k)
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   525
apply (auto intro: less_trans)
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   526
done
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   527
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   528
lemma monoseq_Suc:
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   529
   "monoseq X = ((\<forall>n. X n \<le> X (Suc n))
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   530
                 | (\<forall>n. X (Suc n) \<le> X n))"
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   531
apply (simp add: monoseq_def)
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   532
apply (auto dest!: le_imp_less_or_eq)
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   533
apply (auto intro!: lessI [THEN less_imp_le] dest!: less_imp_Suc_add)
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   534
apply (induct_tac "ka")
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   535
apply (auto intro: order_trans)
18585
5d379fe2eb74 replaced swap by contrapos_np;
wenzelm
parents: 17439
diff changeset
   536
apply (erule contrapos_np)
15082
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   537
apply (induct_tac "k")
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   538
apply (auto intro: order_trans)
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   539
done
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   540
15360
300e09825d8b Added "ALL x > y" and relatives.
nipkow
parents: 15312
diff changeset
   541
lemma monoI1: "\<forall>m. \<forall> n \<ge> m. X m \<le> X n ==> monoseq X"
15082
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   542
by (simp add: monoseq_def)
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   543
15360
300e09825d8b Added "ALL x > y" and relatives.
nipkow
parents: 15312
diff changeset
   544
lemma monoI2: "\<forall>m. \<forall> n \<ge> m. X n \<le> X m ==> monoseq X"
15082
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   545
by (simp add: monoseq_def)
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   546
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   547
lemma mono_SucI1: "\<forall>n. X n \<le> X (Suc n) ==> monoseq X"
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   548
by (simp add: monoseq_Suc)
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   549
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   550
lemma mono_SucI2: "\<forall>n. X (Suc n) \<le> X n ==> monoseq X"
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   551
by (simp add: monoseq_Suc)
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   552
29803
c56a5571f60a Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents: 29667
diff changeset
   553
lemma monoseq_minus: assumes "monoseq a"
c56a5571f60a Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents: 29667
diff changeset
   554
  shows "monoseq (\<lambda> n. - a n)"
c56a5571f60a Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents: 29667
diff changeset
   555
proof (cases "\<forall> m. \<forall> n \<ge> m. a m \<le> a n")
c56a5571f60a Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents: 29667
diff changeset
   556
  case True
c56a5571f60a Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents: 29667
diff changeset
   557
  hence "\<forall> m. \<forall> n \<ge> m. - a n \<le> - a m" by auto
c56a5571f60a Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents: 29667
diff changeset
   558
  thus ?thesis by (rule monoI2)
c56a5571f60a Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents: 29667
diff changeset
   559
next
c56a5571f60a Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents: 29667
diff changeset
   560
  case False
c56a5571f60a Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents: 29667
diff changeset
   561
  hence "\<forall> m. \<forall> n \<ge> m. - a m \<le> - a n" using `monoseq a`[unfolded monoseq_def] by auto
c56a5571f60a Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents: 29667
diff changeset
   562
  thus ?thesis by (rule monoI1)
c56a5571f60a Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents: 29667
diff changeset
   563
qed
c56a5571f60a Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents: 29667
diff changeset
   564
c56a5571f60a Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents: 29667
diff changeset
   565
lemma monoseq_le: assumes "monoseq a" and "a ----> x"
c56a5571f60a Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents: 29667
diff changeset
   566
  shows "((\<forall> n. a n \<le> x) \<and> (\<forall>m. \<forall>n\<ge>m. a m \<le> a n)) \<or> 
c56a5571f60a Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents: 29667
diff changeset
   567
         ((\<forall> n. x \<le> a n) \<and> (\<forall>m. \<forall>n\<ge>m. a n \<le> a m))"
c56a5571f60a Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents: 29667
diff changeset
   568
proof -
c56a5571f60a Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents: 29667
diff changeset
   569
  { fix x n fix a :: "nat \<Rightarrow> real"
c56a5571f60a Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents: 29667
diff changeset
   570
    assume "a ----> x" and "\<forall> m. \<forall> n \<ge> m. a m \<le> a n"
c56a5571f60a Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents: 29667
diff changeset
   571
    hence monotone: "\<And> m n. m \<le> n \<Longrightarrow> a m \<le> a n" by auto
c56a5571f60a Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents: 29667
diff changeset
   572
    have "a n \<le> x"
c56a5571f60a Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents: 29667
diff changeset
   573
    proof (rule ccontr)
c56a5571f60a Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents: 29667
diff changeset
   574
      assume "\<not> a n \<le> x" hence "x < a n" by auto
c56a5571f60a Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents: 29667
diff changeset
   575
      hence "0 < a n - x" by auto
c56a5571f60a Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents: 29667
diff changeset
   576
      from `a ----> x`[THEN LIMSEQ_D, OF this]
c56a5571f60a Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents: 29667
diff changeset
   577
      obtain no where "\<And>n'. no \<le> n' \<Longrightarrow> norm (a n' - x) < a n - x" by blast
c56a5571f60a Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents: 29667
diff changeset
   578
      hence "norm (a (max no n) - x) < a n - x" by auto
c56a5571f60a Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents: 29667
diff changeset
   579
      moreover
c56a5571f60a Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents: 29667
diff changeset
   580
      { fix n' have "n \<le> n' \<Longrightarrow> x < a n'" using monotone[where m=n and n=n'] and `x < a n` by auto }
c56a5571f60a Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents: 29667
diff changeset
   581
      hence "x < a (max no n)" by auto
c56a5571f60a Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents: 29667
diff changeset
   582
      ultimately
c56a5571f60a Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents: 29667
diff changeset
   583
      have "a (max no n) < a n" by auto
c56a5571f60a Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents: 29667
diff changeset
   584
      with monotone[where m=n and n="max no n"]
c56a5571f60a Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents: 29667
diff changeset
   585
      show False by auto
c56a5571f60a Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents: 29667
diff changeset
   586
    qed
c56a5571f60a Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents: 29667
diff changeset
   587
  } note top_down = this
c56a5571f60a Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents: 29667
diff changeset
   588
  { fix x n m fix a :: "nat \<Rightarrow> real"
c56a5571f60a Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents: 29667
diff changeset
   589
    assume "a ----> x" and "monoseq a" and "a m < x"
c56a5571f60a Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents: 29667
diff changeset
   590
    have "a n \<le> x \<and> (\<forall> m. \<forall> n \<ge> m. a m \<le> a n)"
c56a5571f60a Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents: 29667
diff changeset
   591
    proof (cases "\<forall> m. \<forall> n \<ge> m. a m \<le> a n")
c56a5571f60a Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents: 29667
diff changeset
   592
      case True with top_down and `a ----> x` show ?thesis by auto
c56a5571f60a Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents: 29667
diff changeset
   593
    next
c56a5571f60a Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents: 29667
diff changeset
   594
      case False with `monoseq a`[unfolded monoseq_def] have "\<forall> m. \<forall> n \<ge> m. - a m \<le> - a n" by auto
c56a5571f60a Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents: 29667
diff changeset
   595
      hence "- a m \<le> - x" using top_down[OF LIMSEQ_minus[OF `a ----> x`]] by blast
c56a5571f60a Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents: 29667
diff changeset
   596
      hence False using `a m < x` by auto
c56a5571f60a Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents: 29667
diff changeset
   597
      thus ?thesis ..
c56a5571f60a Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents: 29667
diff changeset
   598
    qed
c56a5571f60a Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents: 29667
diff changeset
   599
  } note when_decided = this
c56a5571f60a Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents: 29667
diff changeset
   600
c56a5571f60a Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents: 29667
diff changeset
   601
  show ?thesis
c56a5571f60a Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents: 29667
diff changeset
   602
  proof (cases "\<exists> m. a m \<noteq> x")
c56a5571f60a Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents: 29667
diff changeset
   603
    case True then obtain m where "a m \<noteq> x" by auto
c56a5571f60a Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents: 29667
diff changeset
   604
    show ?thesis
c56a5571f60a Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents: 29667
diff changeset
   605
    proof (cases "a m < x")
c56a5571f60a Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents: 29667
diff changeset
   606
      case True with when_decided[OF `a ----> x` `monoseq a`, where m2=m]
c56a5571f60a Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents: 29667
diff changeset
   607
      show ?thesis by blast
c56a5571f60a Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents: 29667
diff changeset
   608
    next
c56a5571f60a Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents: 29667
diff changeset
   609
      case False hence "- a m < - x" using `a m \<noteq> x` by auto
c56a5571f60a Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents: 29667
diff changeset
   610
      with when_decided[OF LIMSEQ_minus[OF `a ----> x`] monoseq_minus[OF `monoseq a`], where m2=m]
c56a5571f60a Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents: 29667
diff changeset
   611
      show ?thesis by auto
c56a5571f60a Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents: 29667
diff changeset
   612
    qed
c56a5571f60a Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents: 29667
diff changeset
   613
  qed auto
c56a5571f60a Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents: 29667
diff changeset
   614
qed
c56a5571f60a Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents: 29667
diff changeset
   615
30196
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   616
text{* for any sequence, there is a mootonic subsequence *}
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   617
lemma seq_monosub: "\<exists>f. subseq f \<and> monoseq (\<lambda> n. (s (f n)))"
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   618
proof-
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   619
  {assume H: "\<forall>n. \<exists>p >n. \<forall> m\<ge>p. s m \<le> s p"
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   620
    let ?P = "\<lambda> p n. p > n \<and> (\<forall>m \<ge> p. s m \<le> s p)"
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   621
    from nat_function_unique[of "SOME p. ?P p 0" "\<lambda>p n. SOME p. ?P p n"]
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   622
    obtain f where f: "f 0 = (SOME p. ?P p 0)" "\<forall>n. f (Suc n) = (SOME p. ?P p (f n))" by blast
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   623
    have "?P (f 0) 0"  unfolding f(1) some_eq_ex[of "\<lambda>p. ?P p 0"]
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   624
      using H apply - 
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   625
      apply (erule allE[where x=0], erule exE, rule_tac x="p" in exI) 
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   626
      unfolding order_le_less by blast 
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   627
    hence f0: "f 0 > 0" "\<forall>m \<ge> f 0. s m \<le> s (f 0)" by blast+
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   628
    {fix n
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   629
      have "?P (f (Suc n)) (f n)" 
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   630
	unfolding f(2)[rule_format, of n] some_eq_ex[of "\<lambda>p. ?P p (f n)"]
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   631
	using H apply - 
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   632
      apply (erule allE[where x="f n"], erule exE, rule_tac x="p" in exI) 
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   633
      unfolding order_le_less by blast 
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   634
    hence "f (Suc n) > f n" "\<forall>m \<ge> f (Suc n). s m \<le> s (f (Suc n))" by blast+}
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   635
  note fSuc = this
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   636
    {fix p q assume pq: "p \<ge> f q"
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   637
      have "s p \<le> s(f(q))"  using f0(2)[rule_format, of p] pq fSuc
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   638
	by (cases q, simp_all) }
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   639
    note pqth = this
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   640
    {fix q
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   641
      have "f (Suc q) > f q" apply (induct q) 
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   642
	using f0(1) fSuc(1)[of 0] apply simp by (rule fSuc(1))}
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   643
    note fss = this
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   644
    from fss have th1: "subseq f" unfolding subseq_Suc_iff ..
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   645
    {fix a b 
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   646
      have "f a \<le> f (a + b)"
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   647
      proof(induct b)
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   648
	case 0 thus ?case by simp
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   649
      next
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   650
	case (Suc b)
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   651
	from fSuc(1)[of "a + b"] Suc.hyps show ?case by simp
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   652
      qed}
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   653
    note fmon0 = this
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   654
    have "monoseq (\<lambda>n. s (f n))" 
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   655
    proof-
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   656
      {fix n
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   657
	have "s (f n) \<ge> s (f (Suc n))" 
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   658
	proof(cases n)
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   659
	  case 0
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   660
	  assume n0: "n = 0"
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   661
	  from fSuc(1)[of 0] have th0: "f 0 \<le> f (Suc 0)" by simp
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   662
	  from f0(2)[rule_format, OF th0] show ?thesis  using n0 by simp
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   663
	next
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   664
	  case (Suc m)
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   665
	  assume m: "n = Suc m"
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   666
	  from fSuc(1)[of n] m have th0: "f (Suc m) \<le> f (Suc (Suc m))" by simp
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   667
	  from m fSuc(2)[rule_format, OF th0] show ?thesis by simp 
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   668
	qed}
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   669
      thus "monoseq (\<lambda>n. s (f n))" unfolding monoseq_Suc by blast 
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   670
    qed
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   671
    with th1 have ?thesis by blast}
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   672
  moreover
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   673
  {fix N assume N: "\<forall>p >N. \<exists> m\<ge>p. s m > s p"
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   674
    {fix p assume p: "p \<ge> Suc N" 
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   675
      hence pN: "p > N" by arith with N obtain m where m: "m \<ge> p" "s m > s p" by blast
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   676
      have "m \<noteq> p" using m(2) by auto 
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   677
      with m have "\<exists>m>p. s p < s m" by - (rule exI[where x=m], auto)}
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   678
    note th0 = this
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   679
    let ?P = "\<lambda>m x. m > x \<and> s x < s m"
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   680
    from nat_function_unique[of "SOME x. ?P x (Suc N)" "\<lambda>m x. SOME y. ?P y x"]
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   681
    obtain f where f: "f 0 = (SOME x. ?P x (Suc N))" 
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   682
      "\<forall>n. f (Suc n) = (SOME m. ?P m (f n))" by blast
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   683
    have "?P (f 0) (Suc N)"  unfolding f(1) some_eq_ex[of "\<lambda>p. ?P p (Suc N)"]
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   684
      using N apply - 
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   685
      apply (erule allE[where x="Suc N"], clarsimp)
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   686
      apply (rule_tac x="m" in exI)
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   687
      apply auto
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   688
      apply (subgoal_tac "Suc N \<noteq> m")
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   689
      apply simp
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   690
      apply (rule ccontr, simp)
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   691
      done
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   692
    hence f0: "f 0 > Suc N" "s (Suc N) < s (f 0)" by blast+
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   693
    {fix n
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   694
      have "f n > N \<and> ?P (f (Suc n)) (f n)"
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   695
	unfolding f(2)[rule_format, of n] some_eq_ex[of "\<lambda>p. ?P p (f n)"]
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   696
      proof (induct n)
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   697
	case 0 thus ?case
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   698
	  using f0 N apply auto 
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   699
	  apply (erule allE[where x="f 0"], clarsimp) 
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   700
	  apply (rule_tac x="m" in exI, simp)
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   701
	  by (subgoal_tac "f 0 \<noteq> m", auto)
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   702
      next
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   703
	case (Suc n)
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   704
	from Suc.hyps have Nfn: "N < f n" by blast
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   705
	from Suc.hyps obtain m where m: "m > f n" "s (f n) < s m" by blast
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   706
	with Nfn have mN: "m > N" by arith
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   707
	note key = Suc.hyps[unfolded some_eq_ex[of "\<lambda>p. ?P p (f n)", symmetric] f(2)[rule_format, of n, symmetric]]
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   708
	
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   709
	from key have th0: "f (Suc n) > N" by simp
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   710
	from N[rule_format, OF th0]
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   711
	obtain m' where m': "m' \<ge> f (Suc n)" "s (f (Suc n)) < s m'" by blast
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   712
	have "m' \<noteq> f (Suc (n))" apply (rule ccontr) using m'(2) by auto
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   713
	hence "m' > f (Suc n)" using m'(1) by simp
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   714
	with key m'(2) show ?case by auto
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   715
      qed}
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   716
    note fSuc = this
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   717
    {fix n
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   718
      have "f n \<ge> Suc N \<and> f(Suc n) > f n \<and> s(f n) < s(f(Suc n))" using fSuc[of n] by auto 
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   719
      hence "f n \<ge> Suc N" "f(Suc n) > f n" "s(f n) < s(f(Suc n))" by blast+}
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   720
    note thf = this
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   721
    have sqf: "subseq f" unfolding subseq_Suc_iff using thf by simp
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   722
    have "monoseq (\<lambda>n. s (f n))"  unfolding monoseq_Suc using thf
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   723
      apply -
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   724
      apply (rule disjI1)
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   725
      apply auto
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   726
      apply (rule order_less_imp_le)
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   727
      apply blast
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   728
      done
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   729
    then have ?thesis  using sqf by blast}
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   730
  ultimately show ?thesis unfolding linorder_not_less[symmetric] by blast
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   731
qed
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   732
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   733
lemma seq_suble: assumes sf: "subseq f" shows "n \<le> f n"
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   734
proof(induct n)
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   735
  case 0 thus ?case by simp
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   736
next
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   737
  case (Suc n)
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   738
  from sf[unfolded subseq_Suc_iff, rule_format, of n] Suc.hyps
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   739
  have "n < f (Suc n)" by arith 
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   740
  thus ?case by arith
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   741
qed
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   742
30730
4d3565f2cb0e New theorems mostly concerning infinite series.
paulson
parents: 30273
diff changeset
   743
lemma LIMSEQ_subseq_LIMSEQ:
4d3565f2cb0e New theorems mostly concerning infinite series.
paulson
parents: 30273
diff changeset
   744
  "\<lbrakk> X ----> L; subseq f \<rbrakk> \<Longrightarrow> (X o f) ----> L"
4d3565f2cb0e New theorems mostly concerning infinite series.
paulson
parents: 30273
diff changeset
   745
apply (auto simp add: LIMSEQ_def) 
4d3565f2cb0e New theorems mostly concerning infinite series.
paulson
parents: 30273
diff changeset
   746
apply (drule_tac x=r in spec, clarify)  
4d3565f2cb0e New theorems mostly concerning infinite series.
paulson
parents: 30273
diff changeset
   747
apply (rule_tac x=no in exI, clarify) 
4d3565f2cb0e New theorems mostly concerning infinite series.
paulson
parents: 30273
diff changeset
   748
apply (blast intro: seq_suble le_trans dest!: spec) 
4d3565f2cb0e New theorems mostly concerning infinite series.
paulson
parents: 30273
diff changeset
   749
done
4d3565f2cb0e New theorems mostly concerning infinite series.
paulson
parents: 30273
diff changeset
   750
30196
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   751
subsection {* Bounded Monotonic Sequences *}
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   752
6ffaa79c352c Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
chaieb
parents: 30082
diff changeset
   753
20696
3b887ad7d196 reorganized subsection headings
huffman
parents: 20695
diff changeset
   754
text{*Bounded Sequence*}
15082
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   755
20552
2c31dd358c21 generalized types of many constants to work over arbitrary vector spaces;
huffman
parents: 20408
diff changeset
   756
lemma BseqD: "Bseq X ==> \<exists>K. 0 < K & (\<forall>n. norm (X n) \<le> K)"
15082
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   757
by (simp add: Bseq_def)
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   758
20552
2c31dd358c21 generalized types of many constants to work over arbitrary vector spaces;
huffman
parents: 20408
diff changeset
   759
lemma BseqI: "[| 0 < K; \<forall>n. norm (X n) \<le> K |] ==> Bseq X"
15082
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   760
by (auto simp add: Bseq_def)
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   761
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   762
lemma lemma_NBseq_def:
20552
2c31dd358c21 generalized types of many constants to work over arbitrary vector spaces;
huffman
parents: 20408
diff changeset
   763
     "(\<exists>K > 0. \<forall>n. norm (X n) \<le> K) =
2c31dd358c21 generalized types of many constants to work over arbitrary vector spaces;
huffman
parents: 20408
diff changeset
   764
      (\<exists>N. \<forall>n. norm (X n) \<le> real(Suc N))"
15082
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   765
apply auto
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   766
 prefer 2 apply force
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   767
apply (cut_tac x = K in reals_Archimedean2, clarify)
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   768
apply (rule_tac x = n in exI, clarify)
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   769
apply (drule_tac x = na in spec)
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   770
apply (auto simp add: real_of_nat_Suc)
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   771
done
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   772
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   773
text{* alternative definition for Bseq *}
20552
2c31dd358c21 generalized types of many constants to work over arbitrary vector spaces;
huffman
parents: 20408
diff changeset
   774
lemma Bseq_iff: "Bseq X = (\<exists>N. \<forall>n. norm (X n) \<le> real(Suc N))"
15082
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   775
apply (simp add: Bseq_def)
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   776
apply (simp (no_asm) add: lemma_NBseq_def)
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   777
done
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   778
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   779
lemma lemma_NBseq_def2:
20552
2c31dd358c21 generalized types of many constants to work over arbitrary vector spaces;
huffman
parents: 20408
diff changeset
   780
     "(\<exists>K > 0. \<forall>n. norm (X n) \<le> K) = (\<exists>N. \<forall>n. norm (X n) < real(Suc N))"
15082
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   781
apply (subst lemma_NBseq_def, auto)
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   782
apply (rule_tac x = "Suc N" in exI)
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   783
apply (rule_tac [2] x = N in exI)
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   784
apply (auto simp add: real_of_nat_Suc)
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   785
 prefer 2 apply (blast intro: order_less_imp_le)
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   786
apply (drule_tac x = n in spec, simp)
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   787
done
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   788
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   789
(* yet another definition for Bseq *)
20552
2c31dd358c21 generalized types of many constants to work over arbitrary vector spaces;
huffman
parents: 20408
diff changeset
   790
lemma Bseq_iff1a: "Bseq X = (\<exists>N. \<forall>n. norm (X n) < real(Suc N))"
15082
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   791
by (simp add: Bseq_def lemma_NBseq_def2)
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   792
20696
3b887ad7d196 reorganized subsection headings
huffman
parents: 20695
diff changeset
   793
subsubsection{*Upper Bounds and Lubs of Bounded Sequences*}
15082
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   794
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   795
lemma Bseq_isUb:
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   796
  "!!(X::nat=>real). Bseq X ==> \<exists>U. isUb (UNIV::real set) {x. \<exists>n. X n = x} U"
22998
97e1f9c2cc46 avoid using redundant lemmas from RealDef.thy
huffman
parents: 22974
diff changeset
   797
by (auto intro: isUbI setleI simp add: Bseq_def abs_le_iff)
15082
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   798
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   799
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   800
text{* Use completeness of reals (supremum property)
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   801
   to show that any bounded sequence has a least upper bound*}
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   802
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   803
lemma Bseq_isLub:
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   804
  "!!(X::nat=>real). Bseq X ==>
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   805
   \<exists>U. isLub (UNIV::real set) {x. \<exists>n. X n = x} U"
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   806
by (blast intro: reals_complete Bseq_isUb)
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   807
20696
3b887ad7d196 reorganized subsection headings
huffman
parents: 20695
diff changeset
   808
subsubsection{*A Bounded and Monotonic Sequence Converges*}
15082
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   809
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   810
lemma lemma_converg1:
15360
300e09825d8b Added "ALL x > y" and relatives.
nipkow
parents: 15312
diff changeset
   811
     "!!(X::nat=>real). [| \<forall>m. \<forall> n \<ge> m. X m \<le> X n;
15082
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   812
                  isLub (UNIV::real set) {x. \<exists>n. X n = x} (X ma)
15360
300e09825d8b Added "ALL x > y" and relatives.
nipkow
parents: 15312
diff changeset
   813
               |] ==> \<forall>n \<ge> ma. X n = X ma"
15082
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   814
apply safe
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   815
apply (drule_tac y = "X n" in isLubD2)
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   816
apply (blast dest: order_antisym)+
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   817
done
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   818
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   819
text{* The best of both worlds: Easier to prove this result as a standard
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   820
   theorem and then use equivalence to "transfer" it into the
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   821
   equivalent nonstandard form if needed!*}
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   822
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   823
lemma Bmonoseq_LIMSEQ: "\<forall>n. m \<le> n --> X n = X m ==> \<exists>L. (X ----> L)"
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   824
apply (simp add: LIMSEQ_def)
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   825
apply (rule_tac x = "X m" in exI, safe)
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   826
apply (rule_tac x = m in exI, safe)
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   827
apply (drule spec, erule impE, auto)
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   828
done
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   829
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   830
lemma lemma_converg2:
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   831
   "!!(X::nat=>real).
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   832
    [| \<forall>m. X m ~= U;  isLub UNIV {x. \<exists>n. X n = x} U |] ==> \<forall>m. X m < U"
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   833
apply safe
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   834
apply (drule_tac y = "X m" in isLubD2)
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   835
apply (auto dest!: order_le_imp_less_or_eq)
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   836
done
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   837
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   838
lemma lemma_converg3: "!!(X ::nat=>real). \<forall>m. X m \<le> U ==> isUb UNIV {x. \<exists>n. X n = x} U"
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   839
by (rule setleI [THEN isUbI], auto)
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   840
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   841
text{* FIXME: @{term "U - T < U"} is redundant *}
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   842
lemma lemma_converg4: "!!(X::nat=> real).
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   843
               [| \<forall>m. X m ~= U;
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   844
                  isLub UNIV {x. \<exists>n. X n = x} U;
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   845
                  0 < T;
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   846
                  U + - T < U
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   847
               |] ==> \<exists>m. U + -T < X m & X m < U"
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   848
apply (drule lemma_converg2, assumption)
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   849
apply (rule ccontr, simp)
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   850
apply (simp add: linorder_not_less)
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   851
apply (drule lemma_converg3)
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   852
apply (drule isLub_le_isUb, assumption)
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   853
apply (auto dest: order_less_le_trans)
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   854
done
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   855
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   856
text{*A standard proof of the theorem for monotone increasing sequence*}
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   857
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   858
lemma Bseq_mono_convergent:
20552
2c31dd358c21 generalized types of many constants to work over arbitrary vector spaces;
huffman
parents: 20408
diff changeset
   859
     "[| Bseq X; \<forall>m. \<forall>n \<ge> m. X m \<le> X n |] ==> convergent (X::nat=>real)"
15082
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   860
apply (simp add: convergent_def)
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   861
apply (frule Bseq_isLub, safe)
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   862
apply (case_tac "\<exists>m. X m = U", auto)
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   863
apply (blast dest: lemma_converg1 Bmonoseq_LIMSEQ)
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   864
(* second case *)
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   865
apply (rule_tac x = U in exI)
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   866
apply (subst LIMSEQ_iff, safe)
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   867
apply (frule lemma_converg2, assumption)
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   868
apply (drule lemma_converg4, auto)
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   869
apply (rule_tac x = m in exI, safe)
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   870
apply (subgoal_tac "X m \<le> X n")
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   871
 prefer 2 apply blast
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   872
apply (drule_tac x=n and P="%m. X m < U" in spec, arith)
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   873
done
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   874
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   875
lemma Bseq_minus_iff: "Bseq (%n. -(X n)) = Bseq X"
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   876
by (simp add: Bseq_def)
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   877
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   878
text{*Main monotonicity theorem*}
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   879
lemma Bseq_monoseq_convergent: "[| Bseq X; monoseq X |] ==> convergent X"
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   880
apply (simp add: monoseq_def, safe)
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   881
apply (rule_tac [2] convergent_minus_iff [THEN ssubst])
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   882
apply (drule_tac [2] Bseq_minus_iff [THEN ssubst])
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   883
apply (auto intro!: Bseq_mono_convergent)
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   884
done
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   885
30730
4d3565f2cb0e New theorems mostly concerning infinite series.
paulson
parents: 30273
diff changeset
   886
subsubsection{*Increasing and Decreasing Series*}
4d3565f2cb0e New theorems mostly concerning infinite series.
paulson
parents: 30273
diff changeset
   887
4d3565f2cb0e New theorems mostly concerning infinite series.
paulson
parents: 30273
diff changeset
   888
lemma incseq_imp_monoseq:  "incseq X \<Longrightarrow> monoseq X"
4d3565f2cb0e New theorems mostly concerning infinite series.
paulson
parents: 30273
diff changeset
   889
  by (simp add: incseq_def monoseq_def) 
4d3565f2cb0e New theorems mostly concerning infinite series.
paulson
parents: 30273
diff changeset
   890
4d3565f2cb0e New theorems mostly concerning infinite series.
paulson
parents: 30273
diff changeset
   891
lemma incseq_le: assumes inc: "incseq X" and lim: "X ----> L" shows "X n \<le> L"
4d3565f2cb0e New theorems mostly concerning infinite series.
paulson
parents: 30273
diff changeset
   892
  using monoseq_le [OF incseq_imp_monoseq [OF inc] lim]
4d3565f2cb0e New theorems mostly concerning infinite series.
paulson
parents: 30273
diff changeset
   893
proof
4d3565f2cb0e New theorems mostly concerning infinite series.
paulson
parents: 30273
diff changeset
   894
  assume "(\<forall>n. X n \<le> L) \<and> (\<forall>m n. m \<le> n \<longrightarrow> X m \<le> X n)"
4d3565f2cb0e New theorems mostly concerning infinite series.
paulson
parents: 30273
diff changeset
   895
  thus ?thesis by simp
4d3565f2cb0e New theorems mostly concerning infinite series.
paulson
parents: 30273
diff changeset
   896
next
4d3565f2cb0e New theorems mostly concerning infinite series.
paulson
parents: 30273
diff changeset
   897
  assume "(\<forall>n. L \<le> X n) \<and> (\<forall>m n. m \<le> n \<longrightarrow> X n \<le> X m)"
4d3565f2cb0e New theorems mostly concerning infinite series.
paulson
parents: 30273
diff changeset
   898
  hence const: "(!!m n. m \<le> n \<Longrightarrow> X n = X m)" using inc
4d3565f2cb0e New theorems mostly concerning infinite series.
paulson
parents: 30273
diff changeset
   899
    by (auto simp add: incseq_def intro: order_antisym)
4d3565f2cb0e New theorems mostly concerning infinite series.
paulson
parents: 30273
diff changeset
   900
  have X: "!!n. X n = X 0"
4d3565f2cb0e New theorems mostly concerning infinite series.
paulson
parents: 30273
diff changeset
   901
    by (blast intro: const [of 0]) 
4d3565f2cb0e New theorems mostly concerning infinite series.
paulson
parents: 30273
diff changeset
   902
  have "X = (\<lambda>n. X 0)"
4d3565f2cb0e New theorems mostly concerning infinite series.
paulson
parents: 30273
diff changeset
   903
    by (blast intro: ext X)
4d3565f2cb0e New theorems mostly concerning infinite series.
paulson
parents: 30273
diff changeset
   904
  hence "L = X 0" using LIMSEQ_const [of "X 0"]
4d3565f2cb0e New theorems mostly concerning infinite series.
paulson
parents: 30273
diff changeset
   905
    by (auto intro: LIMSEQ_unique lim) 
4d3565f2cb0e New theorems mostly concerning infinite series.
paulson
parents: 30273
diff changeset
   906
  thus ?thesis
4d3565f2cb0e New theorems mostly concerning infinite series.
paulson
parents: 30273
diff changeset
   907
    by (blast intro: eq_refl X)
4d3565f2cb0e New theorems mostly concerning infinite series.
paulson
parents: 30273
diff changeset
   908
qed
4d3565f2cb0e New theorems mostly concerning infinite series.
paulson
parents: 30273
diff changeset
   909
4d3565f2cb0e New theorems mostly concerning infinite series.
paulson
parents: 30273
diff changeset
   910
lemma decseq_imp_monoseq:  "decseq X \<Longrightarrow> monoseq X"
4d3565f2cb0e New theorems mostly concerning infinite series.
paulson
parents: 30273
diff changeset
   911
  by (simp add: decseq_def monoseq_def)
4d3565f2cb0e New theorems mostly concerning infinite series.
paulson
parents: 30273
diff changeset
   912
4d3565f2cb0e New theorems mostly concerning infinite series.
paulson
parents: 30273
diff changeset
   913
lemma decseq_eq_incseq: "decseq X = incseq (\<lambda>n. - X n)" 
4d3565f2cb0e New theorems mostly concerning infinite series.
paulson
parents: 30273
diff changeset
   914
  by (simp add: decseq_def incseq_def)
4d3565f2cb0e New theorems mostly concerning infinite series.
paulson
parents: 30273
diff changeset
   915
4d3565f2cb0e New theorems mostly concerning infinite series.
paulson
parents: 30273
diff changeset
   916
4d3565f2cb0e New theorems mostly concerning infinite series.
paulson
parents: 30273
diff changeset
   917
lemma decseq_le: assumes dec: "decseq X" and lim: "X ----> L" shows "L \<le> X n"
4d3565f2cb0e New theorems mostly concerning infinite series.
paulson
parents: 30273
diff changeset
   918
proof -
4d3565f2cb0e New theorems mostly concerning infinite series.
paulson
parents: 30273
diff changeset
   919
  have inc: "incseq (\<lambda>n. - X n)" using dec
4d3565f2cb0e New theorems mostly concerning infinite series.
paulson
parents: 30273
diff changeset
   920
    by (simp add: decseq_eq_incseq)
4d3565f2cb0e New theorems mostly concerning infinite series.
paulson
parents: 30273
diff changeset
   921
  have "- X n \<le> - L" 
4d3565f2cb0e New theorems mostly concerning infinite series.
paulson
parents: 30273
diff changeset
   922
    by (blast intro: incseq_le [OF inc] LIMSEQ_minus lim) 
4d3565f2cb0e New theorems mostly concerning infinite series.
paulson
parents: 30273
diff changeset
   923
  thus ?thesis
4d3565f2cb0e New theorems mostly concerning infinite series.
paulson
parents: 30273
diff changeset
   924
    by simp
4d3565f2cb0e New theorems mostly concerning infinite series.
paulson
parents: 30273
diff changeset
   925
qed
4d3565f2cb0e New theorems mostly concerning infinite series.
paulson
parents: 30273
diff changeset
   926
20696
3b887ad7d196 reorganized subsection headings
huffman
parents: 20695
diff changeset
   927
subsubsection{*A Few More Equivalence Theorems for Boundedness*}
15082
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   928
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   929
text{*alternative formulation for boundedness*}
20552
2c31dd358c21 generalized types of many constants to work over arbitrary vector spaces;
huffman
parents: 20408
diff changeset
   930
lemma Bseq_iff2: "Bseq X = (\<exists>k > 0. \<exists>x. \<forall>n. norm (X(n) + -x) \<le> k)"
15082
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   931
apply (unfold Bseq_def, safe)
20552
2c31dd358c21 generalized types of many constants to work over arbitrary vector spaces;
huffman
parents: 20408
diff changeset
   932
apply (rule_tac [2] x = "k + norm x" in exI)
15360
300e09825d8b Added "ALL x > y" and relatives.
nipkow
parents: 15312
diff changeset
   933
apply (rule_tac x = K in exI, simp)
15221
8412cfdf3287 tweaking of arithmetic proofs
paulson
parents: 15140
diff changeset
   934
apply (rule exI [where x = 0], auto)
20552
2c31dd358c21 generalized types of many constants to work over arbitrary vector spaces;
huffman
parents: 20408
diff changeset
   935
apply (erule order_less_le_trans, simp)
2c31dd358c21 generalized types of many constants to work over arbitrary vector spaces;
huffman
parents: 20408
diff changeset
   936
apply (drule_tac x=n in spec, fold diff_def)
2c31dd358c21 generalized types of many constants to work over arbitrary vector spaces;
huffman
parents: 20408
diff changeset
   937
apply (drule order_trans [OF norm_triangle_ineq2])
2c31dd358c21 generalized types of many constants to work over arbitrary vector spaces;
huffman
parents: 20408
diff changeset
   938
apply simp
15082
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   939
done
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   940
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   941
text{*alternative formulation for boundedness*}
20552
2c31dd358c21 generalized types of many constants to work over arbitrary vector spaces;
huffman
parents: 20408
diff changeset
   942
lemma Bseq_iff3: "Bseq X = (\<exists>k > 0. \<exists>N. \<forall>n. norm(X(n) + -X(N)) \<le> k)"
15082
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   943
apply safe
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   944
apply (simp add: Bseq_def, safe)
20552
2c31dd358c21 generalized types of many constants to work over arbitrary vector spaces;
huffman
parents: 20408
diff changeset
   945
apply (rule_tac x = "K + norm (X N)" in exI)
15082
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   946
apply auto
20552
2c31dd358c21 generalized types of many constants to work over arbitrary vector spaces;
huffman
parents: 20408
diff changeset
   947
apply (erule order_less_le_trans, simp)
15082
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   948
apply (rule_tac x = N in exI, safe)
20552
2c31dd358c21 generalized types of many constants to work over arbitrary vector spaces;
huffman
parents: 20408
diff changeset
   949
apply (drule_tac x = n in spec)
2c31dd358c21 generalized types of many constants to work over arbitrary vector spaces;
huffman
parents: 20408
diff changeset
   950
apply (rule order_trans [OF norm_triangle_ineq], simp)
15082
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   951
apply (auto simp add: Bseq_iff2)
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   952
done
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   953
20552
2c31dd358c21 generalized types of many constants to work over arbitrary vector spaces;
huffman
parents: 20408
diff changeset
   954
lemma BseqI2: "(\<forall>n. k \<le> f n & f n \<le> (K::real)) ==> Bseq f"
15082
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   955
apply (simp add: Bseq_def)
15221
8412cfdf3287 tweaking of arithmetic proofs
paulson
parents: 15140
diff changeset
   956
apply (rule_tac x = " (\<bar>k\<bar> + \<bar>K\<bar>) + 1" in exI, auto)
20217
25b068a99d2b linear arithmetic splits certain operators (e.g. min, max, abs)
webertj
parents: 19765
diff changeset
   957
apply (drule_tac x = n in spec, arith)
15082
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   958
done
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   959
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   960
20696
3b887ad7d196 reorganized subsection headings
huffman
parents: 20695
diff changeset
   961
subsection {* Cauchy Sequences *}
15082
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   962
31336
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   963
lemma metric_CauchyI:
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   964
  "(\<And>e. 0 < e \<Longrightarrow> \<exists>M. \<forall>m\<ge>M. \<forall>n\<ge>M. dist (X m) (X n) < e) \<Longrightarrow> Cauchy X"
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   965
by (simp add: Cauchy_def)
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   966
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   967
lemma metric_CauchyD:
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   968
  "\<lbrakk>Cauchy X; 0 < e\<rbrakk> \<Longrightarrow> \<exists>M. \<forall>m\<ge>M. \<forall>n\<ge>M. dist (X m) (X n) < e"
20751
93271c59d211 add intro/dest rules for (NS)LIMSEQ and (NS)Cauchy; rewrite equivalence proofs using transfer
huffman
parents: 20740
diff changeset
   969
by (simp add: Cauchy_def)
93271c59d211 add intro/dest rules for (NS)LIMSEQ and (NS)Cauchy; rewrite equivalence proofs using transfer
huffman
parents: 20740
diff changeset
   970
31336
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   971
lemma Cauchy_iff:
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   972
  fixes X :: "nat \<Rightarrow> 'a::real_normed_vector"
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   973
  shows "Cauchy X \<longleftrightarrow> (\<forall>e>0. \<exists>M. \<forall>m\<ge>M. \<forall>n\<ge>M. norm (X m - X n) < e)"
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   974
unfolding Cauchy_def dist_norm ..
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   975
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   976
lemma CauchyI:
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   977
  fixes X :: "nat \<Rightarrow> 'a::real_normed_vector"
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   978
  shows "(\<And>e. 0 < e \<Longrightarrow> \<exists>M. \<forall>m\<ge>M. \<forall>n\<ge>M. norm (X m - X n) < e) \<Longrightarrow> Cauchy X"
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   979
by (simp add: Cauchy_iff)
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   980
20751
93271c59d211 add intro/dest rules for (NS)LIMSEQ and (NS)Cauchy; rewrite equivalence proofs using transfer
huffman
parents: 20740
diff changeset
   981
lemma CauchyD:
31336
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   982
  fixes X :: "nat \<Rightarrow> 'a::real_normed_vector"
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   983
  shows "\<lbrakk>Cauchy X; 0 < e\<rbrakk> \<Longrightarrow> \<exists>M. \<forall>m\<ge>M. \<forall>n\<ge>M. norm (X m - X n) < e"
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   984
by (simp add: Cauchy_iff)
20751
93271c59d211 add intro/dest rules for (NS)LIMSEQ and (NS)Cauchy; rewrite equivalence proofs using transfer
huffman
parents: 20740
diff changeset
   985
30730
4d3565f2cb0e New theorems mostly concerning infinite series.
paulson
parents: 30273
diff changeset
   986
lemma Cauchy_subseq_Cauchy:
4d3565f2cb0e New theorems mostly concerning infinite series.
paulson
parents: 30273
diff changeset
   987
  "\<lbrakk> Cauchy X; subseq f \<rbrakk> \<Longrightarrow> Cauchy (X o f)"
31336
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   988
apply (auto simp add: Cauchy_def)
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   989
apply (drule_tac x=e in spec, clarify)
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   990
apply (rule_tac x=M in exI, clarify)
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
   991
apply (blast intro: le_trans [OF _ seq_suble] dest!: spec)
30730
4d3565f2cb0e New theorems mostly concerning infinite series.
paulson
parents: 30273
diff changeset
   992
done
4d3565f2cb0e New theorems mostly concerning infinite series.
paulson
parents: 30273
diff changeset
   993
20696
3b887ad7d196 reorganized subsection headings
huffman
parents: 20695
diff changeset
   994
subsubsection {* Cauchy Sequences are Bounded *}
3b887ad7d196 reorganized subsection headings
huffman
parents: 20695
diff changeset
   995
15082
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   996
text{*A Cauchy sequence is bounded -- this is the standard
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   997
  proof mechanization rather than the nonstandard proof*}
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
   998
20563
44eda2314aab replace (x + - y) with (x - y)
huffman
parents: 20552
diff changeset
   999
lemma lemmaCauchy: "\<forall>n \<ge> M. norm (X M - X n) < (1::real)
20552
2c31dd358c21 generalized types of many constants to work over arbitrary vector spaces;
huffman
parents: 20408
diff changeset
  1000
          ==>  \<forall>n \<ge> M. norm (X n :: 'a::real_normed_vector) < 1 + norm (X M)"
2c31dd358c21 generalized types of many constants to work over arbitrary vector spaces;
huffman
parents: 20408
diff changeset
  1001
apply (clarify, drule spec, drule (1) mp)
20563
44eda2314aab replace (x + - y) with (x - y)
huffman
parents: 20552
diff changeset
  1002
apply (simp only: norm_minus_commute)
20552
2c31dd358c21 generalized types of many constants to work over arbitrary vector spaces;
huffman
parents: 20408
diff changeset
  1003
apply (drule order_le_less_trans [OF norm_triangle_ineq2])
2c31dd358c21 generalized types of many constants to work over arbitrary vector spaces;
huffman
parents: 20408
diff changeset
  1004
apply simp
2c31dd358c21 generalized types of many constants to work over arbitrary vector spaces;
huffman
parents: 20408
diff changeset
  1005
done
15082
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
  1006
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
  1007
lemma Cauchy_Bseq: "Cauchy X ==> Bseq X"
31336
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
  1008
apply (simp add: Cauchy_iff)
20552
2c31dd358c21 generalized types of many constants to work over arbitrary vector spaces;
huffman
parents: 20408
diff changeset
  1009
apply (drule spec, drule mp, rule zero_less_one, safe)
2c31dd358c21 generalized types of many constants to work over arbitrary vector spaces;
huffman
parents: 20408
diff changeset
  1010
apply (drule_tac x="M" in spec, simp)
15082
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
  1011
apply (drule lemmaCauchy)
22608
092a3353241e add new standard proofs for limits of sequences
huffman
parents: 21842
diff changeset
  1012
apply (rule_tac k="M" in Bseq_offset)
20552
2c31dd358c21 generalized types of many constants to work over arbitrary vector spaces;
huffman
parents: 20408
diff changeset
  1013
apply (simp add: Bseq_def)
2c31dd358c21 generalized types of many constants to work over arbitrary vector spaces;
huffman
parents: 20408
diff changeset
  1014
apply (rule_tac x="1 + norm (X M)" in exI)
2c31dd358c21 generalized types of many constants to work over arbitrary vector spaces;
huffman
parents: 20408
diff changeset
  1015
apply (rule conjI, rule order_less_le_trans [OF zero_less_one], simp)
2c31dd358c21 generalized types of many constants to work over arbitrary vector spaces;
huffman
parents: 20408
diff changeset
  1016
apply (simp add: order_less_imp_le)
15082
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
  1017
done
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
  1018
20696
3b887ad7d196 reorganized subsection headings
huffman
parents: 20695
diff changeset
  1019
subsubsection {* Cauchy Sequences are Convergent *}
15082
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
  1020
31403
0baaad47cef2 class complete_space
huffman
parents: 31392
diff changeset
  1021
axclass complete_space \<subseteq> metric_space
20830
65ba80cae6df add axclass banach for complete normed vector spaces
huffman
parents: 20829
diff changeset
  1022
  Cauchy_convergent: "Cauchy X \<Longrightarrow> convergent X"
65ba80cae6df add axclass banach for complete normed vector spaces
huffman
parents: 20829
diff changeset
  1023
31403
0baaad47cef2 class complete_space
huffman
parents: 31392
diff changeset
  1024
axclass banach \<subseteq> real_normed_vector, complete_space
0baaad47cef2 class complete_space
huffman
parents: 31392
diff changeset
  1025
22629
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1026
theorem LIMSEQ_imp_Cauchy:
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1027
  assumes X: "X ----> a" shows "Cauchy X"
31336
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
  1028
proof (rule metric_CauchyI)
22629
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1029
  fix e::real assume "0 < e"
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1030
  hence "0 < e/2" by simp
31336
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
  1031
  with X have "\<exists>N. \<forall>n\<ge>N. dist (X n) a < e/2" by (rule metric_LIMSEQ_D)
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
  1032
  then obtain N where N: "\<forall>n\<ge>N. dist (X n) a < e/2" ..
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
  1033
  show "\<exists>N. \<forall>m\<ge>N. \<forall>n\<ge>N. dist (X m) (X n) < e"
22629
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1034
  proof (intro exI allI impI)
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1035
    fix m assume "N \<le> m"
31336
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
  1036
    hence m: "dist (X m) a < e/2" using N by fast
22629
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1037
    fix n assume "N \<le> n"
31336
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
  1038
    hence n: "dist (X n) a < e/2" using N by fast
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
  1039
    have "dist (X m) (X n) \<le> dist (X m) a + dist (X n) a"
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
  1040
      by (rule dist_triangle2)
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
  1041
    also from m n have "\<dots> < e" by simp
e17f13cd1280 generalize constants in SEQ.thy to class metric_space
huffman
parents: 31017
diff changeset
  1042
    finally show "dist (X m) (X n) < e" .
22629
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1043
  qed
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1044
qed
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1045
20691
53cbea20e4d9 add lemma convergent_Cauchy
huffman
parents: 20685
diff changeset
  1046
lemma convergent_Cauchy: "convergent X \<Longrightarrow> Cauchy X"
22629
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1047
unfolding convergent_def
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1048
by (erule exE, erule LIMSEQ_imp_Cauchy)
20691
53cbea20e4d9 add lemma convergent_Cauchy
huffman
parents: 20685
diff changeset
  1049
31403
0baaad47cef2 class complete_space
huffman
parents: 31392
diff changeset
  1050
lemma Cauchy_convergent_iff:
0baaad47cef2 class complete_space
huffman
parents: 31392
diff changeset
  1051
  fixes X :: "nat \<Rightarrow> 'a::complete_space"
0baaad47cef2 class complete_space
huffman
parents: 31392
diff changeset
  1052
  shows "Cauchy X = convergent X"
0baaad47cef2 class complete_space
huffman
parents: 31392
diff changeset
  1053
by (fast intro: Cauchy_convergent convergent_Cauchy)
0baaad47cef2 class complete_space
huffman
parents: 31392
diff changeset
  1054
0baaad47cef2 class complete_space
huffman
parents: 31392
diff changeset
  1055
lemma convergent_subseq_convergent:
0baaad47cef2 class complete_space
huffman
parents: 31392
diff changeset
  1056
  fixes X :: "nat \<Rightarrow> 'a::complete_space"
0baaad47cef2 class complete_space
huffman
parents: 31392
diff changeset
  1057
  shows "\<lbrakk> convergent X; subseq f \<rbrakk> \<Longrightarrow> convergent (X o f)"
0baaad47cef2 class complete_space
huffman
parents: 31392
diff changeset
  1058
  by (simp add: Cauchy_subseq_Cauchy Cauchy_convergent_iff [symmetric])
0baaad47cef2 class complete_space
huffman
parents: 31392
diff changeset
  1059
22629
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1060
text {*
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1061
Proof that Cauchy sequences converge based on the one from
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1062
http://pirate.shu.edu/~wachsmut/ira/numseq/proofs/cauconv.html
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1063
*}
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1064
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1065
text {*
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1066
  If sequence @{term "X"} is Cauchy, then its limit is the lub of
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1067
  @{term "{r::real. \<exists>N. \<forall>n\<ge>N. r < X n}"}
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1068
*}
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1069
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1070
lemma isUb_UNIV_I: "(\<And>y. y \<in> S \<Longrightarrow> y \<le> u) \<Longrightarrow> isUb UNIV S u"
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1071
by (simp add: isUbI setleI)
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1072
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1073
lemma real_abs_diff_less_iff:
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1074
  "(\<bar>x - a\<bar> < (r::real)) = (a - r < x \<and> x < a + r)"
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1075
by auto
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1076
27681
8cedebf55539 dropped locale (open)
haftmann
parents: 27543
diff changeset
  1077
locale real_Cauchy =
22629
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1078
  fixes X :: "nat \<Rightarrow> real"
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1079
  assumes X: "Cauchy X"
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1080
  fixes S :: "real set"
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1081
  defines S_def: "S \<equiv> {x::real. \<exists>N. \<forall>n\<ge>N. x < X n}"
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1082
27681
8cedebf55539 dropped locale (open)
haftmann
parents: 27543
diff changeset
  1083
lemma real_CauchyI:
8cedebf55539 dropped locale (open)
haftmann
parents: 27543
diff changeset
  1084
  assumes "Cauchy X"
8cedebf55539 dropped locale (open)
haftmann
parents: 27543
diff changeset
  1085
  shows "real_Cauchy X"
28823
dcbef866c9e2 tuned unfold_locales invocation
haftmann
parents: 28562
diff changeset
  1086
  proof qed (fact assms)
27681
8cedebf55539 dropped locale (open)
haftmann
parents: 27543
diff changeset
  1087
22629
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1088
lemma (in real_Cauchy) mem_S: "\<forall>n\<ge>N. x < X n \<Longrightarrow> x \<in> S"
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1089
by (unfold S_def, auto)
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1090
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1091
lemma (in real_Cauchy) bound_isUb:
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1092
  assumes N: "\<forall>n\<ge>N. X n < x"
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1093
  shows "isUb UNIV S x"
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1094
proof (rule isUb_UNIV_I)
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1095
  fix y::real assume "y \<in> S"
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1096
  hence "\<exists>M. \<forall>n\<ge>M. y < X n"
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1097
    by (simp add: S_def)
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1098
  then obtain M where "\<forall>n\<ge>M. y < X n" ..
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1099
  hence "y < X (max M N)" by simp
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1100
  also have "\<dots> < x" using N by simp
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1101
  finally show "y \<le> x"
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1102
    by (rule order_less_imp_le)
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1103
qed
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1104
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1105
lemma (in real_Cauchy) isLub_ex: "\<exists>u. isLub UNIV S u"
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1106
proof (rule reals_complete)
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1107
  obtain N where "\<forall>m\<ge>N. \<forall>n\<ge>N. norm (X m - X n) < 1"
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1108
    using CauchyD [OF X zero_less_one] by fast
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1109
  hence N: "\<forall>n\<ge>N. norm (X n - X N) < 1" by simp
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1110
  show "\<exists>x. x \<in> S"
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1111
  proof
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1112
    from N have "\<forall>n\<ge>N. X N - 1 < X n"
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1113
      by (simp add: real_abs_diff_less_iff)
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1114
    thus "X N - 1 \<in> S" by (rule mem_S)
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1115
  qed
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1116
  show "\<exists>u. isUb UNIV S u"
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1117
  proof
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1118
    from N have "\<forall>n\<ge>N. X n < X N + 1"
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1119
      by (simp add: real_abs_diff_less_iff)
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1120
    thus "isUb UNIV S (X N + 1)"
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1121
      by (rule bound_isUb)
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1122
  qed
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1123
qed
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1124
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1125
lemma (in real_Cauchy) isLub_imp_LIMSEQ:
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1126
  assumes x: "isLub UNIV S x"
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1127
  shows "X ----> x"
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1128
proof (rule LIMSEQ_I)
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1129
  fix r::real assume "0 < r"
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1130
  hence r: "0 < r/2" by simp
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1131
  obtain N where "\<forall>n\<ge>N. \<forall>m\<ge>N. norm (X n - X m) < r/2"
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1132
    using CauchyD [OF X r] by fast
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1133
  hence "\<forall>n\<ge>N. norm (X n - X N) < r/2" by simp
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1134
  hence N: "\<forall>n\<ge>N. X N - r/2 < X n \<and> X n < X N + r/2"
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1135
    by (simp only: real_norm_def real_abs_diff_less_iff)
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1136
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1137
  from N have "\<forall>n\<ge>N. X N - r/2 < X n" by fast
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1138
  hence "X N - r/2 \<in> S" by (rule mem_S)
23482
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1139
  hence 1: "X N - r/2 \<le> x" using x isLub_isUb isUbD by fast
22629
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1140
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1141
  from N have "\<forall>n\<ge>N. X n < X N + r/2" by fast
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1142
  hence "isUb UNIV S (X N + r/2)" by (rule bound_isUb)
23482
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1143
  hence 2: "x \<le> X N + r/2" using x isLub_le_isUb by fast
22629
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1144
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1145
  show "\<exists>N. \<forall>n\<ge>N. norm (X n - x) < r"
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1146
  proof (intro exI allI impI)
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1147
    fix n assume n: "N \<le> n"
23482
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1148
    from N n have "X n < X N + r/2" and "X N - r/2 < X n" by simp+
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1149
    thus "norm (X n - x) < r" using 1 2
22629
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1150
      by (simp add: real_abs_diff_less_iff)
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1151
  qed
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1152
qed
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1153
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1154
lemma (in real_Cauchy) LIMSEQ_ex: "\<exists>x. X ----> x"
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1155
proof -
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1156
  obtain x where "isLub UNIV S x"
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1157
    using isLub_ex by fast
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1158
  hence "X ----> x"
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1159
    by (rule isLub_imp_LIMSEQ)
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1160
  thus ?thesis ..
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1161
qed
73771f454861 new standard proof of convergent = Cauchy
huffman
parents: 22628
diff changeset
  1162
20830
65ba80cae6df add axclass banach for complete normed vector spaces
huffman
parents: 20829
diff changeset
  1163
lemma real_Cauchy_convergent:
65ba80cae6df add axclass banach for complete normed vector spaces
huffman
parents: 20829
diff changeset
  1164
  fixes X :: "nat \<Rightarrow> real"
65ba80cae6df add axclass banach for complete normed vector spaces
huffman
parents: 20829
diff changeset
  1165
  shows "Cauchy X \<Longrightarrow> convergent X"
27681
8cedebf55539 dropped locale (open)
haftmann
parents: 27543
diff changeset
  1166
unfolding convergent_def
8cedebf55539 dropped locale (open)
haftmann
parents: 27543
diff changeset
  1167
by (rule real_Cauchy.LIMSEQ_ex)
8cedebf55539 dropped locale (open)
haftmann
parents: 27543
diff changeset
  1168
 (rule real_CauchyI)
20830
65ba80cae6df add axclass banach for complete normed vector spaces
huffman
parents: 20829
diff changeset
  1169
65ba80cae6df add axclass banach for complete normed vector spaces
huffman
parents: 20829
diff changeset
  1170
instance real :: banach
65ba80cae6df add axclass banach for complete normed vector spaces
huffman
parents: 20829
diff changeset
  1171
by intro_classes (rule real_Cauchy_convergent)
65ba80cae6df add axclass banach for complete normed vector spaces
huffman
parents: 20829
diff changeset
  1172
15082
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
  1173
20696
3b887ad7d196 reorganized subsection headings
huffman
parents: 20695
diff changeset
  1174
subsection {* Power Sequences *}
15082
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
  1175
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
  1176
text{*The sequence @{term "x^n"} tends to 0 if @{term "0\<le>x"} and @{term
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
  1177
"x<1"}.  Proof will use (NS) Cauchy equivalence for convergence and
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
  1178
  also fact that bounded and monotonic sequence converges.*}
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
  1179
20552
2c31dd358c21 generalized types of many constants to work over arbitrary vector spaces;
huffman
parents: 20408
diff changeset
  1180
lemma Bseq_realpow: "[| 0 \<le> (x::real); x \<le> 1 |] ==> Bseq (%n. x ^ n)"
15082
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
  1181
apply (simp add: Bseq_def)
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
  1182
apply (rule_tac x = 1 in exI)
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
  1183
apply (simp add: power_abs)
22974
08b0fa905ea0 tuned proofs
huffman
parents: 22631
diff changeset
  1184
apply (auto dest: power_mono)
15082
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
  1185
done
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
  1186
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
  1187
lemma monoseq_realpow: "[| 0 \<le> x; x \<le> 1 |] ==> monoseq (%n. x ^ n)"
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
  1188
apply (clarify intro!: mono_SucI2)
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
  1189
apply (cut_tac n = n and N = "Suc n" and a = x in power_decreasing, auto)
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
  1190
done
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
  1191
20552
2c31dd358c21 generalized types of many constants to work over arbitrary vector spaces;
huffman
parents: 20408
diff changeset
  1192
lemma convergent_realpow:
2c31dd358c21 generalized types of many constants to work over arbitrary vector spaces;
huffman
parents: 20408
diff changeset
  1193
  "[| 0 \<le> (x::real); x \<le> 1 |] ==> convergent (%n. x ^ n)"
15082
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
  1194
by (blast intro!: Bseq_monoseq_convergent Bseq_realpow monoseq_realpow)
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
  1195
22628
0e5ac9503d7e new standard proof of LIMSEQ_realpow_zero
huffman
parents: 22615
diff changeset
  1196
lemma LIMSEQ_inverse_realpow_zero_lemma:
0e5ac9503d7e new standard proof of LIMSEQ_realpow_zero
huffman
parents: 22615
diff changeset
  1197
  fixes x :: real
0e5ac9503d7e new standard proof of LIMSEQ_realpow_zero
huffman
parents: 22615
diff changeset
  1198
  assumes x: "0 \<le> x"
0e5ac9503d7e new standard proof of LIMSEQ_realpow_zero
huffman
parents: 22615
diff changeset
  1199
  shows "real n * x + 1 \<le> (x + 1) ^ n"
0e5ac9503d7e new standard proof of LIMSEQ_realpow_zero
huffman
parents: 22615
diff changeset
  1200
apply (induct n)
0e5ac9503d7e new standard proof of LIMSEQ_realpow_zero
huffman
parents: 22615
diff changeset
  1201
apply simp
0e5ac9503d7e new standard proof of LIMSEQ_realpow_zero
huffman
parents: 22615
diff changeset
  1202
apply simp
0e5ac9503d7e new standard proof of LIMSEQ_realpow_zero
huffman
parents: 22615
diff changeset
  1203
apply (rule order_trans)
0e5ac9503d7e new standard proof of LIMSEQ_realpow_zero
huffman
parents: 22615
diff changeset
  1204
prefer 2
0e5ac9503d7e new standard proof of LIMSEQ_realpow_zero
huffman
parents: 22615
diff changeset
  1205
apply (erule mult_left_mono)
0e5ac9503d7e new standard proof of LIMSEQ_realpow_zero
huffman
parents: 22615
diff changeset
  1206
apply (rule add_increasing [OF x], simp)
0e5ac9503d7e new standard proof of LIMSEQ_realpow_zero
huffman
parents: 22615
diff changeset
  1207
apply (simp add: real_of_nat_Suc)
23477
f4b83f03cac9 tuned and renamed group_eq_simps and ring_eq_simps
nipkow
parents: 23127
diff changeset
  1208
apply (simp add: ring_distribs)
22628
0e5ac9503d7e new standard proof of LIMSEQ_realpow_zero
huffman
parents: 22615
diff changeset
  1209
apply (simp add: mult_nonneg_nonneg x)
0e5ac9503d7e new standard proof of LIMSEQ_realpow_zero
huffman
parents: 22615
diff changeset
  1210
done
0e5ac9503d7e new standard proof of LIMSEQ_realpow_zero
huffman
parents: 22615
diff changeset
  1211
0e5ac9503d7e new standard proof of LIMSEQ_realpow_zero
huffman
parents: 22615
diff changeset
  1212
lemma LIMSEQ_inverse_realpow_zero:
0e5ac9503d7e new standard proof of LIMSEQ_realpow_zero
huffman
parents: 22615
diff changeset
  1213
  "1 < (x::real) \<Longrightarrow> (\<lambda>n. inverse (x ^ n)) ----> 0"
0e5ac9503d7e new standard proof of LIMSEQ_realpow_zero
huffman
parents: 22615
diff changeset
  1214
proof (rule LIMSEQ_inverse_zero [rule_format])
0e5ac9503d7e new standard proof of LIMSEQ_realpow_zero
huffman
parents: 22615
diff changeset
  1215
  fix y :: real
0e5ac9503d7e new standard proof of LIMSEQ_realpow_zero
huffman
parents: 22615
diff changeset
  1216
  assume x: "1 < x"
0e5ac9503d7e new standard proof of LIMSEQ_realpow_zero
huffman
parents: 22615
diff changeset
  1217
  hence "0 < x - 1" by simp
0e5ac9503d7e new standard proof of LIMSEQ_realpow_zero
huffman
parents: 22615
diff changeset
  1218
  hence "\<forall>y. \<exists>N::nat. y < real N * (x - 1)"
0e5ac9503d7e new standard proof of LIMSEQ_realpow_zero
huffman
parents: 22615
diff changeset
  1219
    by (rule reals_Archimedean3)
0e5ac9503d7e new standard proof of LIMSEQ_realpow_zero
huffman
parents: 22615
diff changeset
  1220
  hence "\<exists>N::nat. y < real N * (x - 1)" ..
0e5ac9503d7e new standard proof of LIMSEQ_realpow_zero
huffman
parents: 22615
diff changeset
  1221
  then obtain N::nat where "y < real N * (x - 1)" ..
0e5ac9503d7e new standard proof of LIMSEQ_realpow_zero
huffman
parents: 22615
diff changeset
  1222
  also have "\<dots> \<le> real N * (x - 1) + 1" by simp
0e5ac9503d7e new standard proof of LIMSEQ_realpow_zero
huffman
parents: 22615
diff changeset
  1223
  also have "\<dots> \<le> (x - 1 + 1) ^ N"
0e5ac9503d7e new standard proof of LIMSEQ_realpow_zero
huffman
parents: 22615
diff changeset
  1224
    by (rule LIMSEQ_inverse_realpow_zero_lemma, cut_tac x, simp)
0e5ac9503d7e new standard proof of LIMSEQ_realpow_zero
huffman
parents: 22615
diff changeset
  1225
  also have "\<dots> = x ^ N" by simp
0e5ac9503d7e new standard proof of LIMSEQ_realpow_zero
huffman
parents: 22615
diff changeset
  1226
  finally have "y < x ^ N" .
0e5ac9503d7e new standard proof of LIMSEQ_realpow_zero
huffman
parents: 22615
diff changeset
  1227
  hence "\<forall>n\<ge>N. y < x ^ n"
0e5ac9503d7e new standard proof of LIMSEQ_realpow_zero
huffman
parents: 22615
diff changeset
  1228
    apply clarify
0e5ac9503d7e new standard proof of LIMSEQ_realpow_zero
huffman
parents: 22615
diff changeset
  1229
    apply (erule order_less_le_trans)
0e5ac9503d7e new standard proof of LIMSEQ_realpow_zero
huffman
parents: 22615
diff changeset
  1230
    apply (erule power_increasing)
0e5ac9503d7e new standard proof of LIMSEQ_realpow_zero
huffman
parents: 22615
diff changeset
  1231
    apply (rule order_less_imp_le [OF x])
0e5ac9503d7e new standard proof of LIMSEQ_realpow_zero
huffman
parents: 22615
diff changeset
  1232
    done
0e5ac9503d7e new standard proof of LIMSEQ_realpow_zero
huffman
parents: 22615
diff changeset
  1233
  thus "\<exists>N. \<forall>n\<ge>N. y < x ^ n" ..
0e5ac9503d7e new standard proof of LIMSEQ_realpow_zero
huffman
parents: 22615
diff changeset
  1234
qed
0e5ac9503d7e new standard proof of LIMSEQ_realpow_zero
huffman
parents: 22615
diff changeset
  1235
20552
2c31dd358c21 generalized types of many constants to work over arbitrary vector spaces;
huffman
parents: 20408
diff changeset
  1236
lemma LIMSEQ_realpow_zero:
22628
0e5ac9503d7e new standard proof of LIMSEQ_realpow_zero
huffman
parents: 22615
diff changeset
  1237
  "\<lbrakk>0 \<le> (x::real); x < 1\<rbrakk> \<Longrightarrow> (\<lambda>n. x ^ n) ----> 0"
0e5ac9503d7e new standard proof of LIMSEQ_realpow_zero
huffman
parents: 22615
diff changeset
  1238
proof (cases)
0e5ac9503d7e new standard proof of LIMSEQ_realpow_zero
huffman
parents: 22615
diff changeset
  1239
  assume "x = 0"
0e5ac9503d7e new standard proof of LIMSEQ_realpow_zero
huffman
parents: 22615
diff changeset
  1240
  hence "(\<lambda>n. x ^ Suc n) ----> 0" by (simp add: LIMSEQ_const)
0e5ac9503d7e new standard proof of LIMSEQ_realpow_zero
huffman
parents: 22615
diff changeset
  1241
  thus ?thesis by (rule LIMSEQ_imp_Suc)
0e5ac9503d7e new standard proof of LIMSEQ_realpow_zero
huffman
parents: 22615
diff changeset
  1242
next
0e5ac9503d7e new standard proof of LIMSEQ_realpow_zero
huffman
parents: 22615
diff changeset
  1243
  assume "0 \<le> x" and "x \<noteq> 0"
0e5ac9503d7e new standard proof of LIMSEQ_realpow_zero
huffman
parents: 22615
diff changeset
  1244
  hence x0: "0 < x" by simp
0e5ac9503d7e new standard proof of LIMSEQ_realpow_zero
huffman
parents: 22615
diff changeset
  1245
  assume x1: "x < 1"
0e5ac9503d7e new standard proof of LIMSEQ_realpow_zero
huffman
parents: 22615
diff changeset
  1246
  from x0 x1 have "1 < inverse x"
0e5ac9503d7e new standard proof of LIMSEQ_realpow_zero
huffman
parents: 22615
diff changeset
  1247
    by (rule real_inverse_gt_one)
0e5ac9503d7e new standard proof of LIMSEQ_realpow_zero
huffman
parents: 22615
diff changeset
  1248
  hence "(\<lambda>n. inverse (inverse x ^ n)) ----> 0"
0e5ac9503d7e new standard proof of LIMSEQ_realpow_zero
huffman
parents: 22615
diff changeset
  1249
    by (rule LIMSEQ_inverse_realpow_zero)
0e5ac9503d7e new standard proof of LIMSEQ_realpow_zero
huffman
parents: 22615
diff changeset
  1250
  thus ?thesis by (simp add: power_inverse)
0e5ac9503d7e new standard proof of LIMSEQ_realpow_zero
huffman
parents: 22615
diff changeset
  1251
qed
15082
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
  1252
20685
fee8c75e3b5d added lemmas about LIMSEQ and norm; simplified some proofs
huffman
parents: 20682
diff changeset
  1253
lemma LIMSEQ_power_zero:
31017
2c227493ea56 stripped class recpower further
haftmann
parents: 30730
diff changeset
  1254
  fixes x :: "'a::{real_normed_algebra_1}"
20685
fee8c75e3b5d added lemmas about LIMSEQ and norm; simplified some proofs
huffman
parents: 20682
diff changeset
  1255
  shows "norm x < 1 \<Longrightarrow> (\<lambda>n. x ^ n) ----> 0"
fee8c75e3b5d added lemmas about LIMSEQ and norm; simplified some proofs
huffman
parents: 20682
diff changeset
  1256
apply (drule LIMSEQ_realpow_zero [OF norm_ge_zero])
22974
08b0fa905ea0 tuned proofs
huffman
parents: 22631
diff changeset
  1257
apply (simp only: LIMSEQ_Zseq_iff, erule Zseq_le)
08b0fa905ea0 tuned proofs
huffman
parents: 22631
diff changeset
  1258
apply (simp add: power_abs norm_power_ineq)
20685
fee8c75e3b5d added lemmas about LIMSEQ and norm; simplified some proofs
huffman
parents: 20682
diff changeset
  1259
done
fee8c75e3b5d added lemmas about LIMSEQ and norm; simplified some proofs
huffman
parents: 20682
diff changeset
  1260
20552
2c31dd358c21 generalized types of many constants to work over arbitrary vector spaces;
huffman
parents: 20408
diff changeset
  1261
lemma LIMSEQ_divide_realpow_zero:
2c31dd358c21 generalized types of many constants to work over arbitrary vector spaces;
huffman
parents: 20408
diff changeset
  1262
  "1 < (x::real) ==> (%n. a / (x ^ n)) ----> 0"
15082
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
  1263
apply (cut_tac a = a and x1 = "inverse x" in
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
  1264
        LIMSEQ_mult [OF LIMSEQ_const LIMSEQ_realpow_zero])
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
  1265
apply (auto simp add: divide_inverse power_inverse)
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
  1266
apply (simp add: inverse_eq_divide pos_divide_less_eq)
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
  1267
done
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
  1268
15102
04b0e943fcc9 new simprules Int_subset_iff and Un_subset_iff
paulson
parents: 15085
diff changeset
  1269
text{*Limit of @{term "c^n"} for @{term"\<bar>c\<bar> < 1"}*}
15082
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
  1270
20552
2c31dd358c21 generalized types of many constants to work over arbitrary vector spaces;
huffman
parents: 20408
diff changeset
  1271
lemma LIMSEQ_rabs_realpow_zero: "\<bar>c\<bar> < (1::real) ==> (%n. \<bar>c\<bar> ^ n) ----> 0"
20685
fee8c75e3b5d added lemmas about LIMSEQ and norm; simplified some proofs
huffman
parents: 20682
diff changeset
  1272
by (rule LIMSEQ_realpow_zero [OF abs_ge_zero])
15082
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
  1273
20552
2c31dd358c21 generalized types of many constants to work over arbitrary vector spaces;
huffman
parents: 20408
diff changeset
  1274
lemma LIMSEQ_rabs_realpow_zero2: "\<bar>c\<bar> < (1::real) ==> (%n. c ^ n) ----> 0"
15082
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
  1275
apply (rule LIMSEQ_rabs_zero [THEN iffD1])
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
  1276
apply (auto intro: LIMSEQ_rabs_realpow_zero simp add: power_abs)
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
  1277
done
6c3276a2735b conversion of SEQ.ML to Isar script
paulson
parents: 13810
diff changeset
  1278
10751
a81ea5d3dd41 separation of HOL-Hyperreal from HOL-Real
paulson
parents:
diff changeset
  1279
end