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