src/HOL/Real_Vector_Spaces.thy
author paulson <lp15@cam.ac.uk>
Tue, 10 Nov 2015 14:18:41 +0000
changeset 61609 77b453bd616f
parent 61531 ab2e862263e7
child 61649 268d88ec9087
permissions -rw-r--r--
Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
51524
7cb5ac44ca9e rename RealVector.thy to Real_Vector_Spaces.thy
hoelzl
parents: 51518
diff changeset
     1
(*  Title:      HOL/Real_Vector_Spaces.thy
27552
15cf4ed9c2a1 re-removed subclass relation real_field < field_char_0: coregularity violation in NSA/HyperDef
haftmann
parents: 27515
diff changeset
     2
    Author:     Brian Huffman
51531
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
     3
    Author:     Johannes Hölzl
20504
6342e872e71d formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff changeset
     4
*)
6342e872e71d formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff changeset
     5
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60307
diff changeset
     6
section \<open>Vector Spaces and Algebras over the Reals\<close>
20504
6342e872e71d formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff changeset
     7
51524
7cb5ac44ca9e rename RealVector.thy to Real_Vector_Spaces.thy
hoelzl
parents: 51518
diff changeset
     8
theory Real_Vector_Spaces
51531
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
     9
imports Real Topological_Spaces
20504
6342e872e71d formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff changeset
    10
begin
6342e872e71d formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff changeset
    11
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60307
diff changeset
    12
subsection \<open>Locale for additive functions\<close>
20504
6342e872e71d formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff changeset
    13
6342e872e71d formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff changeset
    14
locale additive =
6342e872e71d formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff changeset
    15
  fixes f :: "'a::ab_group_add \<Rightarrow> 'b::ab_group_add"
6342e872e71d formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff changeset
    16
  assumes add: "f (x + y) = f x + f y"
27443
22b6281d6719 use begin and end for proofs in locales
huffman
parents: 27435
diff changeset
    17
begin
20504
6342e872e71d formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff changeset
    18
27443
22b6281d6719 use begin and end for proofs in locales
huffman
parents: 27435
diff changeset
    19
lemma zero: "f 0 = 0"
20504
6342e872e71d formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff changeset
    20
proof -
6342e872e71d formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff changeset
    21
  have "f 0 = f (0 + 0)" by simp
6342e872e71d formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff changeset
    22
  also have "\<dots> = f 0 + f 0" by (rule add)
6342e872e71d formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff changeset
    23
  finally show "f 0 = 0" by simp
6342e872e71d formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff changeset
    24
qed
6342e872e71d formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff changeset
    25
27443
22b6281d6719 use begin and end for proofs in locales
huffman
parents: 27435
diff changeset
    26
lemma minus: "f (- x) = - f x"
20504
6342e872e71d formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff changeset
    27
proof -
6342e872e71d formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff changeset
    28
  have "f (- x) + f x = f (- x + x)" by (rule add [symmetric])
6342e872e71d formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff changeset
    29
  also have "\<dots> = - f x + f x" by (simp add: zero)
6342e872e71d formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff changeset
    30
  finally show "f (- x) = - f x" by (rule add_right_imp_eq)
6342e872e71d formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff changeset
    31
qed
6342e872e71d formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff changeset
    32
27443
22b6281d6719 use begin and end for proofs in locales
huffman
parents: 27435
diff changeset
    33
lemma diff: "f (x - y) = f x - f y"
54230
b1d955791529 more simplification rules on unary and binary minus
haftmann
parents: 53600
diff changeset
    34
  using add [of x "- y"] by (simp add: minus)
20504
6342e872e71d formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff changeset
    35
27443
22b6281d6719 use begin and end for proofs in locales
huffman
parents: 27435
diff changeset
    36
lemma setsum: "f (setsum g A) = (\<Sum>x\<in>A. f (g x))"
22942
bf718970e5ef add lemma additive.setsum
huffman
parents: 22912
diff changeset
    37
apply (cases "finite A")
bf718970e5ef add lemma additive.setsum
huffman
parents: 22912
diff changeset
    38
apply (induct set: finite)
bf718970e5ef add lemma additive.setsum
huffman
parents: 22912
diff changeset
    39
apply (simp add: zero)
bf718970e5ef add lemma additive.setsum
huffman
parents: 22912
diff changeset
    40
apply (simp add: add)
bf718970e5ef add lemma additive.setsum
huffman
parents: 22912
diff changeset
    41
apply (simp add: zero)
bf718970e5ef add lemma additive.setsum
huffman
parents: 22912
diff changeset
    42
done
bf718970e5ef add lemma additive.setsum
huffman
parents: 22912
diff changeset
    43
27443
22b6281d6719 use begin and end for proofs in locales
huffman
parents: 27435
diff changeset
    44
end
20504
6342e872e71d formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff changeset
    45
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60307
diff changeset
    46
subsection \<open>Vector spaces\<close>
28029
4c55cdec4ce7 simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents: 28009
diff changeset
    47
4c55cdec4ce7 simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents: 28009
diff changeset
    48
locale vector_space =
4c55cdec4ce7 simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents: 28009
diff changeset
    49
  fixes scale :: "'a::field \<Rightarrow> 'b::ab_group_add \<Rightarrow> 'b"
30070
76cee7c62782 declare scaleR distrib rules [algebra_simps]; cleaned up
huffman
parents: 30069
diff changeset
    50
  assumes scale_right_distrib [algebra_simps]:
76cee7c62782 declare scaleR distrib rules [algebra_simps]; cleaned up
huffman
parents: 30069
diff changeset
    51
    "scale a (x + y) = scale a x + scale a y"
76cee7c62782 declare scaleR distrib rules [algebra_simps]; cleaned up
huffman
parents: 30069
diff changeset
    52
  and scale_left_distrib [algebra_simps]:
76cee7c62782 declare scaleR distrib rules [algebra_simps]; cleaned up
huffman
parents: 30069
diff changeset
    53
    "scale (a + b) x = scale a x + scale b x"
28029
4c55cdec4ce7 simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents: 28009
diff changeset
    54
  and scale_scale [simp]: "scale a (scale b x) = scale (a * b) x"
4c55cdec4ce7 simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents: 28009
diff changeset
    55
  and scale_one [simp]: "scale 1 x = x"
4c55cdec4ce7 simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents: 28009
diff changeset
    56
begin
4c55cdec4ce7 simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents: 28009
diff changeset
    57
4c55cdec4ce7 simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents: 28009
diff changeset
    58
lemma scale_left_commute:
4c55cdec4ce7 simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents: 28009
diff changeset
    59
  "scale a (scale b x) = scale b (scale a x)"
57512
cc97b347b301 reduced name variants for assoc and commute on plus and mult
haftmann
parents: 57448
diff changeset
    60
by (simp add: mult.commute)
28029
4c55cdec4ce7 simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents: 28009
diff changeset
    61
4c55cdec4ce7 simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents: 28009
diff changeset
    62
lemma scale_zero_left [simp]: "scale 0 x = 0"
4c55cdec4ce7 simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents: 28009
diff changeset
    63
  and scale_minus_left [simp]: "scale (- a) x = - (scale a x)"
30070
76cee7c62782 declare scaleR distrib rules [algebra_simps]; cleaned up
huffman
parents: 30069
diff changeset
    64
  and scale_left_diff_distrib [algebra_simps]:
76cee7c62782 declare scaleR distrib rules [algebra_simps]; cleaned up
huffman
parents: 30069
diff changeset
    65
        "scale (a - b) x = scale a x - scale b x"
44282
f0de18b62d63 remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents: 44127
diff changeset
    66
  and scale_setsum_left: "scale (setsum f A) x = (\<Sum>a\<in>A. scale (f a) x)"
28029
4c55cdec4ce7 simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents: 28009
diff changeset
    67
proof -
29229
6f6262027054 Porting to new locales.
ballarin
parents: 28952
diff changeset
    68
  interpret s: additive "\<lambda>a. scale a x"
28823
dcbef866c9e2 tuned unfold_locales invocation
haftmann
parents: 28562
diff changeset
    69
    proof qed (rule scale_left_distrib)
28029
4c55cdec4ce7 simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents: 28009
diff changeset
    70
  show "scale 0 x = 0" by (rule s.zero)
4c55cdec4ce7 simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents: 28009
diff changeset
    71
  show "scale (- a) x = - (scale a x)" by (rule s.minus)
4c55cdec4ce7 simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents: 28009
diff changeset
    72
  show "scale (a - b) x = scale a x - scale b x" by (rule s.diff)
44282
f0de18b62d63 remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents: 44127
diff changeset
    73
  show "scale (setsum f A) x = (\<Sum>a\<in>A. scale (f a) x)" by (rule s.setsum)
28029
4c55cdec4ce7 simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents: 28009
diff changeset
    74
qed
4c55cdec4ce7 simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents: 28009
diff changeset
    75
4c55cdec4ce7 simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents: 28009
diff changeset
    76
lemma scale_zero_right [simp]: "scale a 0 = 0"
4c55cdec4ce7 simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents: 28009
diff changeset
    77
  and scale_minus_right [simp]: "scale a (- x) = - (scale a x)"
30070
76cee7c62782 declare scaleR distrib rules [algebra_simps]; cleaned up
huffman
parents: 30069
diff changeset
    78
  and scale_right_diff_distrib [algebra_simps]:
76cee7c62782 declare scaleR distrib rules [algebra_simps]; cleaned up
huffman
parents: 30069
diff changeset
    79
        "scale a (x - y) = scale a x - scale a y"
44282
f0de18b62d63 remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents: 44127
diff changeset
    80
  and scale_setsum_right: "scale a (setsum f A) = (\<Sum>x\<in>A. scale a (f x))"
28029
4c55cdec4ce7 simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents: 28009
diff changeset
    81
proof -
29229
6f6262027054 Porting to new locales.
ballarin
parents: 28952
diff changeset
    82
  interpret s: additive "\<lambda>x. scale a x"
28823
dcbef866c9e2 tuned unfold_locales invocation
haftmann
parents: 28562
diff changeset
    83
    proof qed (rule scale_right_distrib)
28029
4c55cdec4ce7 simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents: 28009
diff changeset
    84
  show "scale a 0 = 0" by (rule s.zero)
4c55cdec4ce7 simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents: 28009
diff changeset
    85
  show "scale a (- x) = - (scale a x)" by (rule s.minus)
4c55cdec4ce7 simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents: 28009
diff changeset
    86
  show "scale a (x - y) = scale a x - scale a y" by (rule s.diff)
44282
f0de18b62d63 remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents: 44127
diff changeset
    87
  show "scale a (setsum f A) = (\<Sum>x\<in>A. scale a (f x))" by (rule s.setsum)
28029
4c55cdec4ce7 simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents: 28009
diff changeset
    88
qed
4c55cdec4ce7 simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents: 28009
diff changeset
    89
4c55cdec4ce7 simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents: 28009
diff changeset
    90
lemma scale_eq_0_iff [simp]:
4c55cdec4ce7 simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents: 28009
diff changeset
    91
  "scale a x = 0 \<longleftrightarrow> a = 0 \<or> x = 0"
4c55cdec4ce7 simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents: 28009
diff changeset
    92
proof cases
4c55cdec4ce7 simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents: 28009
diff changeset
    93
  assume "a = 0" thus ?thesis by simp
4c55cdec4ce7 simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents: 28009
diff changeset
    94
next
4c55cdec4ce7 simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents: 28009
diff changeset
    95
  assume anz [simp]: "a \<noteq> 0"
4c55cdec4ce7 simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents: 28009
diff changeset
    96
  { assume "scale a x = 0"
4c55cdec4ce7 simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents: 28009
diff changeset
    97
    hence "scale (inverse a) (scale a x) = 0" by simp
4c55cdec4ce7 simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents: 28009
diff changeset
    98
    hence "x = 0" by simp }
4c55cdec4ce7 simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents: 28009
diff changeset
    99
  thus ?thesis by force
4c55cdec4ce7 simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents: 28009
diff changeset
   100
qed
4c55cdec4ce7 simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents: 28009
diff changeset
   101
4c55cdec4ce7 simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents: 28009
diff changeset
   102
lemma scale_left_imp_eq:
4c55cdec4ce7 simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents: 28009
diff changeset
   103
  "\<lbrakk>a \<noteq> 0; scale a x = scale a y\<rbrakk> \<Longrightarrow> x = y"
4c55cdec4ce7 simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents: 28009
diff changeset
   104
proof -
4c55cdec4ce7 simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents: 28009
diff changeset
   105
  assume nonzero: "a \<noteq> 0"
4c55cdec4ce7 simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents: 28009
diff changeset
   106
  assume "scale a x = scale a y"
4c55cdec4ce7 simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents: 28009
diff changeset
   107
  hence "scale a (x - y) = 0"
4c55cdec4ce7 simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents: 28009
diff changeset
   108
     by (simp add: scale_right_diff_distrib)
4c55cdec4ce7 simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents: 28009
diff changeset
   109
  hence "x - y = 0" by (simp add: nonzero)
4c55cdec4ce7 simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents: 28009
diff changeset
   110
  thus "x = y" by (simp only: right_minus_eq)
4c55cdec4ce7 simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents: 28009
diff changeset
   111
qed
4c55cdec4ce7 simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents: 28009
diff changeset
   112
4c55cdec4ce7 simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents: 28009
diff changeset
   113
lemma scale_right_imp_eq:
4c55cdec4ce7 simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents: 28009
diff changeset
   114
  "\<lbrakk>x \<noteq> 0; scale a x = scale b x\<rbrakk> \<Longrightarrow> a = b"
4c55cdec4ce7 simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents: 28009
diff changeset
   115
proof -
4c55cdec4ce7 simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents: 28009
diff changeset
   116
  assume nonzero: "x \<noteq> 0"
4c55cdec4ce7 simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents: 28009
diff changeset
   117
  assume "scale a x = scale b x"
4c55cdec4ce7 simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents: 28009
diff changeset
   118
  hence "scale (a - b) x = 0"
4c55cdec4ce7 simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents: 28009
diff changeset
   119
     by (simp add: scale_left_diff_distrib)
4c55cdec4ce7 simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents: 28009
diff changeset
   120
  hence "a - b = 0" by (simp add: nonzero)
4c55cdec4ce7 simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents: 28009
diff changeset
   121
  thus "a = b" by (simp only: right_minus_eq)
4c55cdec4ce7 simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents: 28009
diff changeset
   122
qed
4c55cdec4ce7 simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents: 28009
diff changeset
   123
31586
d4707b99e631 declare norm_scaleR [simp]; declare scaleR_cancel lemmas [simp]
huffman
parents: 31567
diff changeset
   124
lemma scale_cancel_left [simp]:
28029
4c55cdec4ce7 simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents: 28009
diff changeset
   125
  "scale a x = scale a y \<longleftrightarrow> x = y \<or> a = 0"
4c55cdec4ce7 simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents: 28009
diff changeset
   126
by (auto intro: scale_left_imp_eq)
4c55cdec4ce7 simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents: 28009
diff changeset
   127
31586
d4707b99e631 declare norm_scaleR [simp]; declare scaleR_cancel lemmas [simp]
huffman
parents: 31567
diff changeset
   128
lemma scale_cancel_right [simp]:
28029
4c55cdec4ce7 simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents: 28009
diff changeset
   129
  "scale a x = scale b x \<longleftrightarrow> a = b \<or> x = 0"
4c55cdec4ce7 simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents: 28009
diff changeset
   130
by (auto intro: scale_right_imp_eq)
4c55cdec4ce7 simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents: 28009
diff changeset
   131
4c55cdec4ce7 simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents: 28009
diff changeset
   132
end
4c55cdec4ce7 simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents: 28009
diff changeset
   133
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60307
diff changeset
   134
subsection \<open>Real vector spaces\<close>
20504
6342e872e71d formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff changeset
   135
29608
564ea783ace8 no base sort in class import
haftmann
parents: 29252
diff changeset
   136
class scaleR =
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24901
diff changeset
   137
  fixes scaleR :: "real \<Rightarrow> 'a \<Rightarrow> 'a" (infixr "*\<^sub>R" 75)
24748
ee0a0eb6b738 proper syntax during class specification
haftmann
parents: 24588
diff changeset
   138
begin
20504
6342e872e71d formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff changeset
   139
20763
052b348a98a9 rearranged axioms and simp rules for scaleR
huffman
parents: 20722
diff changeset
   140
abbreviation
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24901
diff changeset
   141
  divideR :: "'a \<Rightarrow> real \<Rightarrow> 'a" (infixl "'/\<^sub>R" 70)
24748
ee0a0eb6b738 proper syntax during class specification
haftmann
parents: 24588
diff changeset
   142
where
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24901
diff changeset
   143
  "x /\<^sub>R r == scaleR (inverse r) x"
24748
ee0a0eb6b738 proper syntax during class specification
haftmann
parents: 24588
diff changeset
   144
ee0a0eb6b738 proper syntax during class specification
haftmann
parents: 24588
diff changeset
   145
end
ee0a0eb6b738 proper syntax during class specification
haftmann
parents: 24588
diff changeset
   146
24588
ed9a1254d674 introduced classes
haftmann
parents: 24520
diff changeset
   147
class real_vector = scaleR + ab_group_add +
44282
f0de18b62d63 remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents: 44127
diff changeset
   148
  assumes scaleR_add_right: "scaleR a (x + y) = scaleR a x + scaleR a y"
f0de18b62d63 remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents: 44127
diff changeset
   149
  and scaleR_add_left: "scaleR (a + b) x = scaleR a x + scaleR b x"
30070
76cee7c62782 declare scaleR distrib rules [algebra_simps]; cleaned up
huffman
parents: 30069
diff changeset
   150
  and scaleR_scaleR: "scaleR a (scaleR b x) = scaleR (a * b) x"
76cee7c62782 declare scaleR distrib rules [algebra_simps]; cleaned up
huffman
parents: 30069
diff changeset
   151
  and scaleR_one: "scaleR 1 x = x"
20504
6342e872e71d formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff changeset
   152
30729
461ee3e49ad3 interpretation/interpret: prefixes are mandatory by default;
wenzelm
parents: 30273
diff changeset
   153
interpretation real_vector:
29229
6f6262027054 Porting to new locales.
ballarin
parents: 28952
diff changeset
   154
  vector_space "scaleR :: real \<Rightarrow> 'a \<Rightarrow> 'a::real_vector"
28009
e93b121074fb move real_vector class proofs into vector_space and group_hom locales
huffman
parents: 27553
diff changeset
   155
apply unfold_locales
44282
f0de18b62d63 remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents: 44127
diff changeset
   156
apply (rule scaleR_add_right)
f0de18b62d63 remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents: 44127
diff changeset
   157
apply (rule scaleR_add_left)
28009
e93b121074fb move real_vector class proofs into vector_space and group_hom locales
huffman
parents: 27553
diff changeset
   158
apply (rule scaleR_scaleR)
e93b121074fb move real_vector class proofs into vector_space and group_hom locales
huffman
parents: 27553
diff changeset
   159
apply (rule scaleR_one)
e93b121074fb move real_vector class proofs into vector_space and group_hom locales
huffman
parents: 27553
diff changeset
   160
done
e93b121074fb move real_vector class proofs into vector_space and group_hom locales
huffman
parents: 27553
diff changeset
   161
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60307
diff changeset
   162
text \<open>Recover original theorem names\<close>
28009
e93b121074fb move real_vector class proofs into vector_space and group_hom locales
huffman
parents: 27553
diff changeset
   163
e93b121074fb move real_vector class proofs into vector_space and group_hom locales
huffman
parents: 27553
diff changeset
   164
lemmas scaleR_left_commute = real_vector.scale_left_commute
e93b121074fb move real_vector class proofs into vector_space and group_hom locales
huffman
parents: 27553
diff changeset
   165
lemmas scaleR_zero_left = real_vector.scale_zero_left
e93b121074fb move real_vector class proofs into vector_space and group_hom locales
huffman
parents: 27553
diff changeset
   166
lemmas scaleR_minus_left = real_vector.scale_minus_left
44282
f0de18b62d63 remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents: 44127
diff changeset
   167
lemmas scaleR_diff_left = real_vector.scale_left_diff_distrib
f0de18b62d63 remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents: 44127
diff changeset
   168
lemmas scaleR_setsum_left = real_vector.scale_setsum_left
28009
e93b121074fb move real_vector class proofs into vector_space and group_hom locales
huffman
parents: 27553
diff changeset
   169
lemmas scaleR_zero_right = real_vector.scale_zero_right
e93b121074fb move real_vector class proofs into vector_space and group_hom locales
huffman
parents: 27553
diff changeset
   170
lemmas scaleR_minus_right = real_vector.scale_minus_right
44282
f0de18b62d63 remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents: 44127
diff changeset
   171
lemmas scaleR_diff_right = real_vector.scale_right_diff_distrib
f0de18b62d63 remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents: 44127
diff changeset
   172
lemmas scaleR_setsum_right = real_vector.scale_setsum_right
28009
e93b121074fb move real_vector class proofs into vector_space and group_hom locales
huffman
parents: 27553
diff changeset
   173
lemmas scaleR_eq_0_iff = real_vector.scale_eq_0_iff
e93b121074fb move real_vector class proofs into vector_space and group_hom locales
huffman
parents: 27553
diff changeset
   174
lemmas scaleR_left_imp_eq = real_vector.scale_left_imp_eq
e93b121074fb move real_vector class proofs into vector_space and group_hom locales
huffman
parents: 27553
diff changeset
   175
lemmas scaleR_right_imp_eq = real_vector.scale_right_imp_eq
e93b121074fb move real_vector class proofs into vector_space and group_hom locales
huffman
parents: 27553
diff changeset
   176
lemmas scaleR_cancel_left = real_vector.scale_cancel_left
e93b121074fb move real_vector class proofs into vector_space and group_hom locales
huffman
parents: 27553
diff changeset
   177
lemmas scaleR_cancel_right = real_vector.scale_cancel_right
e93b121074fb move real_vector class proofs into vector_space and group_hom locales
huffman
parents: 27553
diff changeset
   178
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60307
diff changeset
   179
text \<open>Legacy names\<close>
44282
f0de18b62d63 remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents: 44127
diff changeset
   180
f0de18b62d63 remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents: 44127
diff changeset
   181
lemmas scaleR_left_distrib = scaleR_add_left
f0de18b62d63 remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents: 44127
diff changeset
   182
lemmas scaleR_right_distrib = scaleR_add_right
f0de18b62d63 remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents: 44127
diff changeset
   183
lemmas scaleR_left_diff_distrib = scaleR_diff_left
f0de18b62d63 remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents: 44127
diff changeset
   184
lemmas scaleR_right_diff_distrib = scaleR_diff_right
f0de18b62d63 remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents: 44127
diff changeset
   185
31285
0a3f9ee4117c generalize dist function to class real_normed_vector
huffman
parents: 31017
diff changeset
   186
lemma scaleR_minus1_left [simp]:
0a3f9ee4117c generalize dist function to class real_normed_vector
huffman
parents: 31017
diff changeset
   187
  fixes x :: "'a::real_vector"
0a3f9ee4117c generalize dist function to class real_normed_vector
huffman
parents: 31017
diff changeset
   188
  shows "scaleR (-1) x = - x"
0a3f9ee4117c generalize dist function to class real_normed_vector
huffman
parents: 31017
diff changeset
   189
  using scaleR_minus_left [of 1 x] by simp
0a3f9ee4117c generalize dist function to class real_normed_vector
huffman
parents: 31017
diff changeset
   190
24588
ed9a1254d674 introduced classes
haftmann
parents: 24520
diff changeset
   191
class real_algebra = real_vector + ring +
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24901
diff changeset
   192
  assumes mult_scaleR_left [simp]: "scaleR a x * y = scaleR a (x * y)"
af5ef0d4d655 global class syntax
haftmann
parents: 24901
diff changeset
   193
  and mult_scaleR_right [simp]: "x * scaleR a y = scaleR a (x * y)"
20504
6342e872e71d formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff changeset
   194
24588
ed9a1254d674 introduced classes
haftmann
parents: 24520
diff changeset
   195
class real_algebra_1 = real_algebra + ring_1
20554
c433e78d4203 define new constant of_real for class real_algebra_1;
huffman
parents: 20551
diff changeset
   196
24588
ed9a1254d674 introduced classes
haftmann
parents: 24520
diff changeset
   197
class real_div_algebra = real_algebra_1 + division_ring
20584
60b1d52a455d added classes real_div_algebra and real_field; added lemmas
huffman
parents: 20560
diff changeset
   198
24588
ed9a1254d674 introduced classes
haftmann
parents: 24520
diff changeset
   199
class real_field = real_div_algebra + field
20584
60b1d52a455d added classes real_div_algebra and real_field; added lemmas
huffman
parents: 20560
diff changeset
   200
30069
e2fe62de0925 clean up instantiations
huffman
parents: 29608
diff changeset
   201
instantiation real :: real_field
e2fe62de0925 clean up instantiations
huffman
parents: 29608
diff changeset
   202
begin
e2fe62de0925 clean up instantiations
huffman
parents: 29608
diff changeset
   203
e2fe62de0925 clean up instantiations
huffman
parents: 29608
diff changeset
   204
definition
e2fe62de0925 clean up instantiations
huffman
parents: 29608
diff changeset
   205
  real_scaleR_def [simp]: "scaleR a x = a * x"
e2fe62de0925 clean up instantiations
huffman
parents: 29608
diff changeset
   206
30070
76cee7c62782 declare scaleR distrib rules [algebra_simps]; cleaned up
huffman
parents: 30069
diff changeset
   207
instance proof
76cee7c62782 declare scaleR distrib rules [algebra_simps]; cleaned up
huffman
parents: 30069
diff changeset
   208
qed (simp_all add: algebra_simps)
20554
c433e78d4203 define new constant of_real for class real_algebra_1;
huffman
parents: 20551
diff changeset
   209
30069
e2fe62de0925 clean up instantiations
huffman
parents: 29608
diff changeset
   210
end
e2fe62de0925 clean up instantiations
huffman
parents: 29608
diff changeset
   211
30729
461ee3e49ad3 interpretation/interpret: prefixes are mandatory by default;
wenzelm
parents: 30273
diff changeset
   212
interpretation scaleR_left: additive "(\<lambda>a. scaleR a x::'a::real_vector)"
28823
dcbef866c9e2 tuned unfold_locales invocation
haftmann
parents: 28562
diff changeset
   213
proof qed (rule scaleR_left_distrib)
20504
6342e872e71d formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff changeset
   214
30729
461ee3e49ad3 interpretation/interpret: prefixes are mandatory by default;
wenzelm
parents: 30273
diff changeset
   215
interpretation scaleR_right: additive "(\<lambda>x. scaleR a x::'a::real_vector)"
28823
dcbef866c9e2 tuned unfold_locales invocation
haftmann
parents: 28562
diff changeset
   216
proof qed (rule scaleR_right_distrib)
20504
6342e872e71d formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff changeset
   217
20584
60b1d52a455d added classes real_div_algebra and real_field; added lemmas
huffman
parents: 20560
diff changeset
   218
lemma nonzero_inverse_scaleR_distrib:
21809
4b93e949ac33 remove uses of scaleR infix syntax; add lemma Reals_number_of
huffman
parents: 21404
diff changeset
   219
  fixes x :: "'a::real_div_algebra" shows
4b93e949ac33 remove uses of scaleR infix syntax; add lemma Reals_number_of
huffman
parents: 21404
diff changeset
   220
  "\<lbrakk>a \<noteq> 0; x \<noteq> 0\<rbrakk> \<Longrightarrow> inverse (scaleR a x) = scaleR (inverse a) (inverse x)"
20763
052b348a98a9 rearranged axioms and simp rules for scaleR
huffman
parents: 20722
diff changeset
   221
by (rule inverse_unique, simp)
20584
60b1d52a455d added classes real_div_algebra and real_field; added lemmas
huffman
parents: 20560
diff changeset
   222
60b1d52a455d added classes real_div_algebra and real_field; added lemmas
huffman
parents: 20560
diff changeset
   223
lemma inverse_scaleR_distrib:
59867
58043346ca64 given up separate type classes demanding `inverse 0 = 0`
haftmann
parents: 59741
diff changeset
   224
  fixes x :: "'a::{real_div_algebra, division_ring}"
21809
4b93e949ac33 remove uses of scaleR infix syntax; add lemma Reals_number_of
huffman
parents: 21404
diff changeset
   225
  shows "inverse (scaleR a x) = scaleR (inverse a) (inverse x)"
20584
60b1d52a455d added classes real_div_algebra and real_field; added lemmas
huffman
parents: 20560
diff changeset
   226
apply (case_tac "a = 0", simp)
60b1d52a455d added classes real_div_algebra and real_field; added lemmas
huffman
parents: 20560
diff changeset
   227
apply (case_tac "x = 0", simp)
60b1d52a455d added classes real_div_algebra and real_field; added lemmas
huffman
parents: 20560
diff changeset
   228
apply (erule (1) nonzero_inverse_scaleR_distrib)
60b1d52a455d added classes real_div_algebra and real_field; added lemmas
huffman
parents: 20560
diff changeset
   229
done
60b1d52a455d added classes real_div_algebra and real_field; added lemmas
huffman
parents: 20560
diff changeset
   230
61531
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61524
diff changeset
   231
lemma setsum_constant_scaleR:
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61524
diff changeset
   232
  fixes y :: "'a::real_vector"
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61524
diff changeset
   233
  shows "(\<Sum>x\<in>A. y) = of_nat (card A) *\<^sub>R y"
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61524
diff changeset
   234
  apply (cases "finite A")
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61524
diff changeset
   235
  apply (induct set: finite)
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61524
diff changeset
   236
  apply (simp_all add: algebra_simps)
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61524
diff changeset
   237
  done
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61524
diff changeset
   238
60800
7d04351c795a New material for Cauchy's integral theorem
paulson <lp15@cam.ac.uk>
parents: 60762
diff changeset
   239
lemma real_vector_affinity_eq:
7d04351c795a New material for Cauchy's integral theorem
paulson <lp15@cam.ac.uk>
parents: 60762
diff changeset
   240
  fixes x :: "'a :: real_vector"
7d04351c795a New material for Cauchy's integral theorem
paulson <lp15@cam.ac.uk>
parents: 60762
diff changeset
   241
  assumes m0: "m \<noteq> 0"
7d04351c795a New material for Cauchy's integral theorem
paulson <lp15@cam.ac.uk>
parents: 60762
diff changeset
   242
  shows "m *\<^sub>R x + c = y \<longleftrightarrow> x = inverse m *\<^sub>R y - (inverse m *\<^sub>R c)"
7d04351c795a New material for Cauchy's integral theorem
paulson <lp15@cam.ac.uk>
parents: 60762
diff changeset
   243
proof
7d04351c795a New material for Cauchy's integral theorem
paulson <lp15@cam.ac.uk>
parents: 60762
diff changeset
   244
  assume h: "m *\<^sub>R x + c = y"
7d04351c795a New material for Cauchy's integral theorem
paulson <lp15@cam.ac.uk>
parents: 60762
diff changeset
   245
  hence "m *\<^sub>R x = y - c" by (simp add: field_simps)
7d04351c795a New material for Cauchy's integral theorem
paulson <lp15@cam.ac.uk>
parents: 60762
diff changeset
   246
  hence "inverse m *\<^sub>R (m *\<^sub>R x) = inverse m *\<^sub>R (y - c)" by simp
7d04351c795a New material for Cauchy's integral theorem
paulson <lp15@cam.ac.uk>
parents: 60762
diff changeset
   247
  then show "x = inverse m *\<^sub>R y - (inverse m *\<^sub>R c)"
7d04351c795a New material for Cauchy's integral theorem
paulson <lp15@cam.ac.uk>
parents: 60762
diff changeset
   248
    using m0
7d04351c795a New material for Cauchy's integral theorem
paulson <lp15@cam.ac.uk>
parents: 60762
diff changeset
   249
  by (simp add: real_vector.scale_right_diff_distrib)
7d04351c795a New material for Cauchy's integral theorem
paulson <lp15@cam.ac.uk>
parents: 60762
diff changeset
   250
next
7d04351c795a New material for Cauchy's integral theorem
paulson <lp15@cam.ac.uk>
parents: 60762
diff changeset
   251
  assume h: "x = inverse m *\<^sub>R y - (inverse m *\<^sub>R c)"
7d04351c795a New material for Cauchy's integral theorem
paulson <lp15@cam.ac.uk>
parents: 60762
diff changeset
   252
  show "m *\<^sub>R x + c = y" unfolding h
7d04351c795a New material for Cauchy's integral theorem
paulson <lp15@cam.ac.uk>
parents: 60762
diff changeset
   253
    using m0  by (simp add: real_vector.scale_right_diff_distrib)
7d04351c795a New material for Cauchy's integral theorem
paulson <lp15@cam.ac.uk>
parents: 60762
diff changeset
   254
qed
7d04351c795a New material for Cauchy's integral theorem
paulson <lp15@cam.ac.uk>
parents: 60762
diff changeset
   255
7d04351c795a New material for Cauchy's integral theorem
paulson <lp15@cam.ac.uk>
parents: 60762
diff changeset
   256
lemma real_vector_eq_affinity:
7d04351c795a New material for Cauchy's integral theorem
paulson <lp15@cam.ac.uk>
parents: 60762
diff changeset
   257
  fixes x :: "'a :: real_vector"
7d04351c795a New material for Cauchy's integral theorem
paulson <lp15@cam.ac.uk>
parents: 60762
diff changeset
   258
  shows "m \<noteq> 0 ==> (y = m *\<^sub>R x + c \<longleftrightarrow> inverse m *\<^sub>R y - (inverse m *\<^sub>R c) = x)"
7d04351c795a New material for Cauchy's integral theorem
paulson <lp15@cam.ac.uk>
parents: 60762
diff changeset
   259
  using real_vector_affinity_eq[where m=m and x=x and y=y and c=c]
7d04351c795a New material for Cauchy's integral theorem
paulson <lp15@cam.ac.uk>
parents: 60762
diff changeset
   260
  by metis
7d04351c795a New material for Cauchy's integral theorem
paulson <lp15@cam.ac.uk>
parents: 60762
diff changeset
   261
20554
c433e78d4203 define new constant of_real for class real_algebra_1;
huffman
parents: 20551
diff changeset
   262
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60307
diff changeset
   263
subsection \<open>Embedding of the Reals into any @{text real_algebra_1}:
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60307
diff changeset
   264
@{term of_real}\<close>
20554
c433e78d4203 define new constant of_real for class real_algebra_1;
huffman
parents: 20551
diff changeset
   265
c433e78d4203 define new constant of_real for class real_algebra_1;
huffman
parents: 20551
diff changeset
   266
definition
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21210
diff changeset
   267
  of_real :: "real \<Rightarrow> 'a::real_algebra_1" where
21809
4b93e949ac33 remove uses of scaleR infix syntax; add lemma Reals_number_of
huffman
parents: 21404
diff changeset
   268
  "of_real r = scaleR r 1"
20554
c433e78d4203 define new constant of_real for class real_algebra_1;
huffman
parents: 20551
diff changeset
   269
21809
4b93e949ac33 remove uses of scaleR infix syntax; add lemma Reals_number_of
huffman
parents: 21404
diff changeset
   270
lemma scaleR_conv_of_real: "scaleR r x = of_real r * x"
20763
052b348a98a9 rearranged axioms and simp rules for scaleR
huffman
parents: 20722
diff changeset
   271
by (simp add: of_real_def)
052b348a98a9 rearranged axioms and simp rules for scaleR
huffman
parents: 20722
diff changeset
   272
20554
c433e78d4203 define new constant of_real for class real_algebra_1;
huffman
parents: 20551
diff changeset
   273
lemma of_real_0 [simp]: "of_real 0 = 0"
c433e78d4203 define new constant of_real for class real_algebra_1;
huffman
parents: 20551
diff changeset
   274
by (simp add: of_real_def)
c433e78d4203 define new constant of_real for class real_algebra_1;
huffman
parents: 20551
diff changeset
   275
c433e78d4203 define new constant of_real for class real_algebra_1;
huffman
parents: 20551
diff changeset
   276
lemma of_real_1 [simp]: "of_real 1 = 1"
c433e78d4203 define new constant of_real for class real_algebra_1;
huffman
parents: 20551
diff changeset
   277
by (simp add: of_real_def)
c433e78d4203 define new constant of_real for class real_algebra_1;
huffman
parents: 20551
diff changeset
   278
c433e78d4203 define new constant of_real for class real_algebra_1;
huffman
parents: 20551
diff changeset
   279
lemma of_real_add [simp]: "of_real (x + y) = of_real x + of_real y"
c433e78d4203 define new constant of_real for class real_algebra_1;
huffman
parents: 20551
diff changeset
   280
by (simp add: of_real_def scaleR_left_distrib)
c433e78d4203 define new constant of_real for class real_algebra_1;
huffman
parents: 20551
diff changeset
   281
c433e78d4203 define new constant of_real for class real_algebra_1;
huffman
parents: 20551
diff changeset
   282
lemma of_real_minus [simp]: "of_real (- x) = - of_real x"
c433e78d4203 define new constant of_real for class real_algebra_1;
huffman
parents: 20551
diff changeset
   283
by (simp add: of_real_def)
c433e78d4203 define new constant of_real for class real_algebra_1;
huffman
parents: 20551
diff changeset
   284
c433e78d4203 define new constant of_real for class real_algebra_1;
huffman
parents: 20551
diff changeset
   285
lemma of_real_diff [simp]: "of_real (x - y) = of_real x - of_real y"
c433e78d4203 define new constant of_real for class real_algebra_1;
huffman
parents: 20551
diff changeset
   286
by (simp add: of_real_def scaleR_left_diff_distrib)
c433e78d4203 define new constant of_real for class real_algebra_1;
huffman
parents: 20551
diff changeset
   287
c433e78d4203 define new constant of_real for class real_algebra_1;
huffman
parents: 20551
diff changeset
   288
lemma of_real_mult [simp]: "of_real (x * y) = of_real x * of_real y"
57512
cc97b347b301 reduced name variants for assoc and commute on plus and mult
haftmann
parents: 57448
diff changeset
   289
by (simp add: of_real_def mult.commute)
20554
c433e78d4203 define new constant of_real for class real_algebra_1;
huffman
parents: 20551
diff changeset
   290
56889
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56479
diff changeset
   291
lemma of_real_setsum[simp]: "of_real (setsum f s) = (\<Sum>x\<in>s. of_real (f x))"
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56479
diff changeset
   292
  by (induct s rule: infinite_finite_induct) auto
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56479
diff changeset
   293
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56479
diff changeset
   294
lemma of_real_setprod[simp]: "of_real (setprod f s) = (\<Prod>x\<in>s. of_real (f x))"
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56479
diff changeset
   295
  by (induct s rule: infinite_finite_induct) auto
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56479
diff changeset
   296
20584
60b1d52a455d added classes real_div_algebra and real_field; added lemmas
huffman
parents: 20560
diff changeset
   297
lemma nonzero_of_real_inverse:
60b1d52a455d added classes real_div_algebra and real_field; added lemmas
huffman
parents: 20560
diff changeset
   298
  "x \<noteq> 0 \<Longrightarrow> of_real (inverse x) =
60b1d52a455d added classes real_div_algebra and real_field; added lemmas
huffman
parents: 20560
diff changeset
   299
   inverse (of_real x :: 'a::real_div_algebra)"
60b1d52a455d added classes real_div_algebra and real_field; added lemmas
huffman
parents: 20560
diff changeset
   300
by (simp add: of_real_def nonzero_inverse_scaleR_distrib)
60b1d52a455d added classes real_div_algebra and real_field; added lemmas
huffman
parents: 20560
diff changeset
   301
60b1d52a455d added classes real_div_algebra and real_field; added lemmas
huffman
parents: 20560
diff changeset
   302
lemma of_real_inverse [simp]:
60b1d52a455d added classes real_div_algebra and real_field; added lemmas
huffman
parents: 20560
diff changeset
   303
  "of_real (inverse x) =
59867
58043346ca64 given up separate type classes demanding `inverse 0 = 0`
haftmann
parents: 59741
diff changeset
   304
   inverse (of_real x :: 'a::{real_div_algebra, division_ring})"
20584
60b1d52a455d added classes real_div_algebra and real_field; added lemmas
huffman
parents: 20560
diff changeset
   305
by (simp add: of_real_def inverse_scaleR_distrib)
60b1d52a455d added classes real_div_algebra and real_field; added lemmas
huffman
parents: 20560
diff changeset
   306
60b1d52a455d added classes real_div_algebra and real_field; added lemmas
huffman
parents: 20560
diff changeset
   307
lemma nonzero_of_real_divide:
60b1d52a455d added classes real_div_algebra and real_field; added lemmas
huffman
parents: 20560
diff changeset
   308
  "y \<noteq> 0 \<Longrightarrow> of_real (x / y) =
60b1d52a455d added classes real_div_algebra and real_field; added lemmas
huffman
parents: 20560
diff changeset
   309
   (of_real x / of_real y :: 'a::real_field)"
60b1d52a455d added classes real_div_algebra and real_field; added lemmas
huffman
parents: 20560
diff changeset
   310
by (simp add: divide_inverse nonzero_of_real_inverse)
20722
741737aa70b2 add lemmas about of_real and power
huffman
parents: 20718
diff changeset
   311
741737aa70b2 add lemmas about of_real and power
huffman
parents: 20718
diff changeset
   312
lemma of_real_divide [simp]:
20584
60b1d52a455d added classes real_div_algebra and real_field; added lemmas
huffman
parents: 20560
diff changeset
   313
  "of_real (x / y) =
59867
58043346ca64 given up separate type classes demanding `inverse 0 = 0`
haftmann
parents: 59741
diff changeset
   314
   (of_real x / of_real y :: 'a::{real_field, field})"
20584
60b1d52a455d added classes real_div_algebra and real_field; added lemmas
huffman
parents: 20560
diff changeset
   315
by (simp add: divide_inverse)
60b1d52a455d added classes real_div_algebra and real_field; added lemmas
huffman
parents: 20560
diff changeset
   316
20722
741737aa70b2 add lemmas about of_real and power
huffman
parents: 20718
diff changeset
   317
lemma of_real_power [simp]:
31017
2c227493ea56 stripped class recpower further
haftmann
parents: 30729
diff changeset
   318
  "of_real (x ^ n) = (of_real x :: 'a::{real_algebra_1}) ^ n"
30273
ecd6f0ca62ea declare power_Suc [simp]; remove redundant type-specific versions of power_Suc
huffman
parents: 30242
diff changeset
   319
by (induct n) simp_all
20722
741737aa70b2 add lemmas about of_real and power
huffman
parents: 20718
diff changeset
   320
20554
c433e78d4203 define new constant of_real for class real_algebra_1;
huffman
parents: 20551
diff changeset
   321
lemma of_real_eq_iff [simp]: "(of_real x = of_real y) = (x = y)"
35216
7641e8d831d2 get rid of many duplicate simp rule warnings
huffman
parents: 31586
diff changeset
   322
by (simp add: of_real_def)
20554
c433e78d4203 define new constant of_real for class real_algebra_1;
huffman
parents: 20551
diff changeset
   323
38621
d6cb7e625d75 more concise characterization of of_nat operation and class semiring_char_0
haftmann
parents: 37887
diff changeset
   324
lemma inj_of_real:
d6cb7e625d75 more concise characterization of of_nat operation and class semiring_char_0
haftmann
parents: 37887
diff changeset
   325
  "inj of_real"
d6cb7e625d75 more concise characterization of of_nat operation and class semiring_char_0
haftmann
parents: 37887
diff changeset
   326
  by (auto intro: injI)
d6cb7e625d75 more concise characterization of of_nat operation and class semiring_char_0
haftmann
parents: 37887
diff changeset
   327
20584
60b1d52a455d added classes real_div_algebra and real_field; added lemmas
huffman
parents: 20560
diff changeset
   328
lemmas of_real_eq_0_iff [simp] = of_real_eq_iff [of _ 0, simplified]
20554
c433e78d4203 define new constant of_real for class real_algebra_1;
huffman
parents: 20551
diff changeset
   329
c433e78d4203 define new constant of_real for class real_algebra_1;
huffman
parents: 20551
diff changeset
   330
lemma of_real_eq_id [simp]: "of_real = (id :: real \<Rightarrow> real)"
c433e78d4203 define new constant of_real for class real_algebra_1;
huffman
parents: 20551
diff changeset
   331
proof
c433e78d4203 define new constant of_real for class real_algebra_1;
huffman
parents: 20551
diff changeset
   332
  fix r
c433e78d4203 define new constant of_real for class real_algebra_1;
huffman
parents: 20551
diff changeset
   333
  show "of_real r = id r"
22973
64d300e16370 add lemma sgn_mult; declare real_scaleR_def and scaleR_eq_0_iff as simp rules
huffman
parents: 22972
diff changeset
   334
    by (simp add: of_real_def)
20554
c433e78d4203 define new constant of_real for class real_algebra_1;
huffman
parents: 20551
diff changeset
   335
qed
c433e78d4203 define new constant of_real for class real_algebra_1;
huffman
parents: 20551
diff changeset
   336
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60307
diff changeset
   337
text\<open>Collapse nested embeddings\<close>
20554
c433e78d4203 define new constant of_real for class real_algebra_1;
huffman
parents: 20551
diff changeset
   338
lemma of_real_of_nat_eq [simp]: "of_real (of_nat n) = of_nat n"
20772
7a51ed817ec7 tuned definitions/proofs;
wenzelm
parents: 20763
diff changeset
   339
by (induct n) auto
20554
c433e78d4203 define new constant of_real for class real_algebra_1;
huffman
parents: 20551
diff changeset
   340
c433e78d4203 define new constant of_real for class real_algebra_1;
huffman
parents: 20551
diff changeset
   341
lemma of_real_of_int_eq [simp]: "of_real (of_int z) = of_int z"
c433e78d4203 define new constant of_real for class real_algebra_1;
huffman
parents: 20551
diff changeset
   342
by (cases z rule: int_diff_cases, simp)
c433e78d4203 define new constant of_real for class real_algebra_1;
huffman
parents: 20551
diff changeset
   343
60155
91477b3a2d6b Tidying. Improved simplification for numerals, esp in exponents.
paulson <lp15@cam.ac.uk>
parents: 60026
diff changeset
   344
lemma of_real_numeral [simp]: "of_real (numeral w) = numeral w"
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46868
diff changeset
   345
using of_real_of_int_eq [of "numeral w"] by simp
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46868
diff changeset
   346
60155
91477b3a2d6b Tidying. Improved simplification for numerals, esp in exponents.
paulson <lp15@cam.ac.uk>
parents: 60026
diff changeset
   347
lemma of_real_neg_numeral [simp]: "of_real (- numeral w) = - numeral w"
54489
03ff4d1e6784 eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents: 54263
diff changeset
   348
using of_real_of_int_eq [of "- numeral w"] by simp
20554
c433e78d4203 define new constant of_real for class real_algebra_1;
huffman
parents: 20551
diff changeset
   349
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60307
diff changeset
   350
text\<open>Every real algebra has characteristic zero\<close>
38621
d6cb7e625d75 more concise characterization of of_nat operation and class semiring_char_0
haftmann
parents: 37887
diff changeset
   351
22912
c477862c566d instance real_algebra_1 < ring_char_0
huffman
parents: 22898
diff changeset
   352
instance real_algebra_1 < ring_char_0
c477862c566d instance real_algebra_1 < ring_char_0
huffman
parents: 22898
diff changeset
   353
proof
38621
d6cb7e625d75 more concise characterization of of_nat operation and class semiring_char_0
haftmann
parents: 37887
diff changeset
   354
  from inj_of_real inj_of_nat have "inj (of_real \<circ> of_nat)" by (rule inj_comp)
d6cb7e625d75 more concise characterization of of_nat operation and class semiring_char_0
haftmann
parents: 37887
diff changeset
   355
  then show "inj (of_nat :: nat \<Rightarrow> 'a)" by (simp add: comp_def)
22912
c477862c566d instance real_algebra_1 < ring_char_0
huffman
parents: 22898
diff changeset
   356
qed
c477862c566d instance real_algebra_1 < ring_char_0
huffman
parents: 22898
diff changeset
   357
27553
d315a513a150 instance real_field < field_char_0;
huffman
parents: 27552
diff changeset
   358
instance real_field < field_char_0 ..
d315a513a150 instance real_field < field_char_0;
huffman
parents: 27552
diff changeset
   359
20554
c433e78d4203 define new constant of_real for class real_algebra_1;
huffman
parents: 20551
diff changeset
   360
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60307
diff changeset
   361
subsection \<open>The Set of Real Numbers\<close>
20554
c433e78d4203 define new constant of_real for class real_algebra_1;
huffman
parents: 20551
diff changeset
   362
61070
b72a990adfe2 prefer symbols;
wenzelm
parents: 60800
diff changeset
   363
definition Reals :: "'a::real_algebra_1 set"  ("\<real>")
b72a990adfe2 prefer symbols;
wenzelm
parents: 60800
diff changeset
   364
  where "\<real> = range of_real"
20554
c433e78d4203 define new constant of_real for class real_algebra_1;
huffman
parents: 20551
diff changeset
   365
61070
b72a990adfe2 prefer symbols;
wenzelm
parents: 60800
diff changeset
   366
lemma Reals_of_real [simp]: "of_real r \<in> \<real>"
20554
c433e78d4203 define new constant of_real for class real_algebra_1;
huffman
parents: 20551
diff changeset
   367
by (simp add: Reals_def)
c433e78d4203 define new constant of_real for class real_algebra_1;
huffman
parents: 20551
diff changeset
   368
61070
b72a990adfe2 prefer symbols;
wenzelm
parents: 60800
diff changeset
   369
lemma Reals_of_int [simp]: "of_int z \<in> \<real>"
21809
4b93e949ac33 remove uses of scaleR infix syntax; add lemma Reals_number_of
huffman
parents: 21404
diff changeset
   370
by (subst of_real_of_int_eq [symmetric], rule Reals_of_real)
20718
4c4869e4ddb7 add lemmas of_int_in_Reals, of_nat_in_Reals
huffman
parents: 20694
diff changeset
   371
61070
b72a990adfe2 prefer symbols;
wenzelm
parents: 60800
diff changeset
   372
lemma Reals_of_nat [simp]: "of_nat n \<in> \<real>"
21809
4b93e949ac33 remove uses of scaleR infix syntax; add lemma Reals_number_of
huffman
parents: 21404
diff changeset
   373
by (subst of_real_of_nat_eq [symmetric], rule Reals_of_real)
4b93e949ac33 remove uses of scaleR infix syntax; add lemma Reals_number_of
huffman
parents: 21404
diff changeset
   374
61070
b72a990adfe2 prefer symbols;
wenzelm
parents: 60800
diff changeset
   375
lemma Reals_numeral [simp]: "numeral w \<in> \<real>"
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46868
diff changeset
   376
by (subst of_real_numeral [symmetric], rule Reals_of_real)
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46868
diff changeset
   377
61070
b72a990adfe2 prefer symbols;
wenzelm
parents: 60800
diff changeset
   378
lemma Reals_0 [simp]: "0 \<in> \<real>"
20554
c433e78d4203 define new constant of_real for class real_algebra_1;
huffman
parents: 20551
diff changeset
   379
apply (unfold Reals_def)
c433e78d4203 define new constant of_real for class real_algebra_1;
huffman
parents: 20551
diff changeset
   380
apply (rule range_eqI)
c433e78d4203 define new constant of_real for class real_algebra_1;
huffman
parents: 20551
diff changeset
   381
apply (rule of_real_0 [symmetric])
c433e78d4203 define new constant of_real for class real_algebra_1;
huffman
parents: 20551
diff changeset
   382
done
c433e78d4203 define new constant of_real for class real_algebra_1;
huffman
parents: 20551
diff changeset
   383
61070
b72a990adfe2 prefer symbols;
wenzelm
parents: 60800
diff changeset
   384
lemma Reals_1 [simp]: "1 \<in> \<real>"
20554
c433e78d4203 define new constant of_real for class real_algebra_1;
huffman
parents: 20551
diff changeset
   385
apply (unfold Reals_def)
c433e78d4203 define new constant of_real for class real_algebra_1;
huffman
parents: 20551
diff changeset
   386
apply (rule range_eqI)
c433e78d4203 define new constant of_real for class real_algebra_1;
huffman
parents: 20551
diff changeset
   387
apply (rule of_real_1 [symmetric])
c433e78d4203 define new constant of_real for class real_algebra_1;
huffman
parents: 20551
diff changeset
   388
done
c433e78d4203 define new constant of_real for class real_algebra_1;
huffman
parents: 20551
diff changeset
   389
61070
b72a990adfe2 prefer symbols;
wenzelm
parents: 60800
diff changeset
   390
lemma Reals_add [simp]: "\<lbrakk>a \<in> \<real>; b \<in> \<real>\<rbrakk> \<Longrightarrow> a + b \<in> \<real>"
20554
c433e78d4203 define new constant of_real for class real_algebra_1;
huffman
parents: 20551
diff changeset
   391
apply (auto simp add: Reals_def)
c433e78d4203 define new constant of_real for class real_algebra_1;
huffman
parents: 20551
diff changeset
   392
apply (rule range_eqI)
c433e78d4203 define new constant of_real for class real_algebra_1;
huffman
parents: 20551
diff changeset
   393
apply (rule of_real_add [symmetric])
c433e78d4203 define new constant of_real for class real_algebra_1;
huffman
parents: 20551
diff changeset
   394
done
c433e78d4203 define new constant of_real for class real_algebra_1;
huffman
parents: 20551
diff changeset
   395
61070
b72a990adfe2 prefer symbols;
wenzelm
parents: 60800
diff changeset
   396
lemma Reals_minus [simp]: "a \<in> \<real> \<Longrightarrow> - a \<in> \<real>"
20584
60b1d52a455d added classes real_div_algebra and real_field; added lemmas
huffman
parents: 20560
diff changeset
   397
apply (auto simp add: Reals_def)
60b1d52a455d added classes real_div_algebra and real_field; added lemmas
huffman
parents: 20560
diff changeset
   398
apply (rule range_eqI)
60b1d52a455d added classes real_div_algebra and real_field; added lemmas
huffman
parents: 20560
diff changeset
   399
apply (rule of_real_minus [symmetric])
60b1d52a455d added classes real_div_algebra and real_field; added lemmas
huffman
parents: 20560
diff changeset
   400
done
60b1d52a455d added classes real_div_algebra and real_field; added lemmas
huffman
parents: 20560
diff changeset
   401
61070
b72a990adfe2 prefer symbols;
wenzelm
parents: 60800
diff changeset
   402
lemma Reals_diff [simp]: "\<lbrakk>a \<in> \<real>; b \<in> \<real>\<rbrakk> \<Longrightarrow> a - b \<in> \<real>"
20584
60b1d52a455d added classes real_div_algebra and real_field; added lemmas
huffman
parents: 20560
diff changeset
   403
apply (auto simp add: Reals_def)
60b1d52a455d added classes real_div_algebra and real_field; added lemmas
huffman
parents: 20560
diff changeset
   404
apply (rule range_eqI)
60b1d52a455d added classes real_div_algebra and real_field; added lemmas
huffman
parents: 20560
diff changeset
   405
apply (rule of_real_diff [symmetric])
60b1d52a455d added classes real_div_algebra and real_field; added lemmas
huffman
parents: 20560
diff changeset
   406
done
60b1d52a455d added classes real_div_algebra and real_field; added lemmas
huffman
parents: 20560
diff changeset
   407
61070
b72a990adfe2 prefer symbols;
wenzelm
parents: 60800
diff changeset
   408
lemma Reals_mult [simp]: "\<lbrakk>a \<in> \<real>; b \<in> \<real>\<rbrakk> \<Longrightarrow> a * b \<in> \<real>"
20554
c433e78d4203 define new constant of_real for class real_algebra_1;
huffman
parents: 20551
diff changeset
   409
apply (auto simp add: Reals_def)
c433e78d4203 define new constant of_real for class real_algebra_1;
huffman
parents: 20551
diff changeset
   410
apply (rule range_eqI)
c433e78d4203 define new constant of_real for class real_algebra_1;
huffman
parents: 20551
diff changeset
   411
apply (rule of_real_mult [symmetric])
c433e78d4203 define new constant of_real for class real_algebra_1;
huffman
parents: 20551
diff changeset
   412
done
c433e78d4203 define new constant of_real for class real_algebra_1;
huffman
parents: 20551
diff changeset
   413
20584
60b1d52a455d added classes real_div_algebra and real_field; added lemmas
huffman
parents: 20560
diff changeset
   414
lemma nonzero_Reals_inverse:
60b1d52a455d added classes real_div_algebra and real_field; added lemmas
huffman
parents: 20560
diff changeset
   415
  fixes a :: "'a::real_div_algebra"
61070
b72a990adfe2 prefer symbols;
wenzelm
parents: 60800
diff changeset
   416
  shows "\<lbrakk>a \<in> \<real>; a \<noteq> 0\<rbrakk> \<Longrightarrow> inverse a \<in> \<real>"
20584
60b1d52a455d added classes real_div_algebra and real_field; added lemmas
huffman
parents: 20560
diff changeset
   417
apply (auto simp add: Reals_def)
60b1d52a455d added classes real_div_algebra and real_field; added lemmas
huffman
parents: 20560
diff changeset
   418
apply (rule range_eqI)
60b1d52a455d added classes real_div_algebra and real_field; added lemmas
huffman
parents: 20560
diff changeset
   419
apply (erule nonzero_of_real_inverse [symmetric])
60b1d52a455d added classes real_div_algebra and real_field; added lemmas
huffman
parents: 20560
diff changeset
   420
done
60b1d52a455d added classes real_div_algebra and real_field; added lemmas
huffman
parents: 20560
diff changeset
   421
55719
cdddd073bff8 Lemmas about Reals, norm, etc., and cleaner variants of existing ones
paulson <lp15@cam.ac.uk>
parents: 54890
diff changeset
   422
lemma Reals_inverse:
59867
58043346ca64 given up separate type classes demanding `inverse 0 = 0`
haftmann
parents: 59741
diff changeset
   423
  fixes a :: "'a::{real_div_algebra, division_ring}"
61070
b72a990adfe2 prefer symbols;
wenzelm
parents: 60800
diff changeset
   424
  shows "a \<in> \<real> \<Longrightarrow> inverse a \<in> \<real>"
20584
60b1d52a455d added classes real_div_algebra and real_field; added lemmas
huffman
parents: 20560
diff changeset
   425
apply (auto simp add: Reals_def)
60b1d52a455d added classes real_div_algebra and real_field; added lemmas
huffman
parents: 20560
diff changeset
   426
apply (rule range_eqI)
60b1d52a455d added classes real_div_algebra and real_field; added lemmas
huffman
parents: 20560
diff changeset
   427
apply (rule of_real_inverse [symmetric])
60b1d52a455d added classes real_div_algebra and real_field; added lemmas
huffman
parents: 20560
diff changeset
   428
done
60b1d52a455d added classes real_div_algebra and real_field; added lemmas
huffman
parents: 20560
diff changeset
   429
60026
41d81b4a0a21 Restored LIMSEQ_def as legacy binding. [The other changes are whitespace only.]
paulson <lp15@cam.ac.uk>
parents: 60017
diff changeset
   430
lemma Reals_inverse_iff [simp]:
59867
58043346ca64 given up separate type classes demanding `inverse 0 = 0`
haftmann
parents: 59741
diff changeset
   431
  fixes x:: "'a :: {real_div_algebra, division_ring}"
55719
cdddd073bff8 Lemmas about Reals, norm, etc., and cleaner variants of existing ones
paulson <lp15@cam.ac.uk>
parents: 54890
diff changeset
   432
  shows "inverse x \<in> \<real> \<longleftrightarrow> x \<in> \<real>"
cdddd073bff8 Lemmas about Reals, norm, etc., and cleaner variants of existing ones
paulson <lp15@cam.ac.uk>
parents: 54890
diff changeset
   433
by (metis Reals_inverse inverse_inverse_eq)
cdddd073bff8 Lemmas about Reals, norm, etc., and cleaner variants of existing ones
paulson <lp15@cam.ac.uk>
parents: 54890
diff changeset
   434
20584
60b1d52a455d added classes real_div_algebra and real_field; added lemmas
huffman
parents: 20560
diff changeset
   435
lemma nonzero_Reals_divide:
60b1d52a455d added classes real_div_algebra and real_field; added lemmas
huffman
parents: 20560
diff changeset
   436
  fixes a b :: "'a::real_field"
61070
b72a990adfe2 prefer symbols;
wenzelm
parents: 60800
diff changeset
   437
  shows "\<lbrakk>a \<in> \<real>; b \<in> \<real>; b \<noteq> 0\<rbrakk> \<Longrightarrow> a / b \<in> \<real>"
20584
60b1d52a455d added classes real_div_algebra and real_field; added lemmas
huffman
parents: 20560
diff changeset
   438
apply (auto simp add: Reals_def)
60b1d52a455d added classes real_div_algebra and real_field; added lemmas
huffman
parents: 20560
diff changeset
   439
apply (rule range_eqI)
60b1d52a455d added classes real_div_algebra and real_field; added lemmas
huffman
parents: 20560
diff changeset
   440
apply (erule nonzero_of_real_divide [symmetric])
60b1d52a455d added classes real_div_algebra and real_field; added lemmas
huffman
parents: 20560
diff changeset
   441
done
60b1d52a455d added classes real_div_algebra and real_field; added lemmas
huffman
parents: 20560
diff changeset
   442
60b1d52a455d added classes real_div_algebra and real_field; added lemmas
huffman
parents: 20560
diff changeset
   443
lemma Reals_divide [simp]:
59867
58043346ca64 given up separate type classes demanding `inverse 0 = 0`
haftmann
parents: 59741
diff changeset
   444
  fixes a b :: "'a::{real_field, field}"
61070
b72a990adfe2 prefer symbols;
wenzelm
parents: 60800
diff changeset
   445
  shows "\<lbrakk>a \<in> \<real>; b \<in> \<real>\<rbrakk> \<Longrightarrow> a / b \<in> \<real>"
20584
60b1d52a455d added classes real_div_algebra and real_field; added lemmas
huffman
parents: 20560
diff changeset
   446
apply (auto simp add: Reals_def)
60b1d52a455d added classes real_div_algebra and real_field; added lemmas
huffman
parents: 20560
diff changeset
   447
apply (rule range_eqI)
60b1d52a455d added classes real_div_algebra and real_field; added lemmas
huffman
parents: 20560
diff changeset
   448
apply (rule of_real_divide [symmetric])
60b1d52a455d added classes real_div_algebra and real_field; added lemmas
huffman
parents: 20560
diff changeset
   449
done
60b1d52a455d added classes real_div_algebra and real_field; added lemmas
huffman
parents: 20560
diff changeset
   450
20722
741737aa70b2 add lemmas about of_real and power
huffman
parents: 20718
diff changeset
   451
lemma Reals_power [simp]:
31017
2c227493ea56 stripped class recpower further
haftmann
parents: 30729
diff changeset
   452
  fixes a :: "'a::{real_algebra_1}"
61070
b72a990adfe2 prefer symbols;
wenzelm
parents: 60800
diff changeset
   453
  shows "a \<in> \<real> \<Longrightarrow> a ^ n \<in> \<real>"
20722
741737aa70b2 add lemmas about of_real and power
huffman
parents: 20718
diff changeset
   454
apply (auto simp add: Reals_def)
741737aa70b2 add lemmas about of_real and power
huffman
parents: 20718
diff changeset
   455
apply (rule range_eqI)
741737aa70b2 add lemmas about of_real and power
huffman
parents: 20718
diff changeset
   456
apply (rule of_real_power [symmetric])
741737aa70b2 add lemmas about of_real and power
huffman
parents: 20718
diff changeset
   457
done
741737aa70b2 add lemmas about of_real and power
huffman
parents: 20718
diff changeset
   458
20554
c433e78d4203 define new constant of_real for class real_algebra_1;
huffman
parents: 20551
diff changeset
   459
lemma Reals_cases [cases set: Reals]:
c433e78d4203 define new constant of_real for class real_algebra_1;
huffman
parents: 20551
diff changeset
   460
  assumes "q \<in> \<real>"
c433e78d4203 define new constant of_real for class real_algebra_1;
huffman
parents: 20551
diff changeset
   461
  obtains (of_real) r where "q = of_real r"
c433e78d4203 define new constant of_real for class real_algebra_1;
huffman
parents: 20551
diff changeset
   462
  unfolding Reals_def
c433e78d4203 define new constant of_real for class real_algebra_1;
huffman
parents: 20551
diff changeset
   463
proof -
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60307
diff changeset
   464
  from \<open>q \<in> \<real>\<close> have "q \<in> range of_real" unfolding Reals_def .
20554
c433e78d4203 define new constant of_real for class real_algebra_1;
huffman
parents: 20551
diff changeset
   465
  then obtain r where "q = of_real r" ..
c433e78d4203 define new constant of_real for class real_algebra_1;
huffman
parents: 20551
diff changeset
   466
  then show thesis ..
c433e78d4203 define new constant of_real for class real_algebra_1;
huffman
parents: 20551
diff changeset
   467
qed
c433e78d4203 define new constant of_real for class real_algebra_1;
huffman
parents: 20551
diff changeset
   468
59741
5b762cd73a8e Lots of new material on complex-valued functions. Modified simplification of (x/n)^k
paulson <lp15@cam.ac.uk>
parents: 59658
diff changeset
   469
lemma setsum_in_Reals [intro,simp]:
5b762cd73a8e Lots of new material on complex-valued functions. Modified simplification of (x/n)^k
paulson <lp15@cam.ac.uk>
parents: 59658
diff changeset
   470
  assumes "\<And>i. i \<in> s \<Longrightarrow> f i \<in> \<real>" shows "setsum f s \<in> \<real>"
55719
cdddd073bff8 Lemmas about Reals, norm, etc., and cleaner variants of existing ones
paulson <lp15@cam.ac.uk>
parents: 54890
diff changeset
   471
proof (cases "finite s")
cdddd073bff8 Lemmas about Reals, norm, etc., and cleaner variants of existing ones
paulson <lp15@cam.ac.uk>
parents: 54890
diff changeset
   472
  case True then show ?thesis using assms
cdddd073bff8 Lemmas about Reals, norm, etc., and cleaner variants of existing ones
paulson <lp15@cam.ac.uk>
parents: 54890
diff changeset
   473
    by (induct s rule: finite_induct) auto
cdddd073bff8 Lemmas about Reals, norm, etc., and cleaner variants of existing ones
paulson <lp15@cam.ac.uk>
parents: 54890
diff changeset
   474
next
cdddd073bff8 Lemmas about Reals, norm, etc., and cleaner variants of existing ones
paulson <lp15@cam.ac.uk>
parents: 54890
diff changeset
   475
  case False then show ?thesis using assms
57418
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57276
diff changeset
   476
    by (metis Reals_0 setsum.infinite)
55719
cdddd073bff8 Lemmas about Reals, norm, etc., and cleaner variants of existing ones
paulson <lp15@cam.ac.uk>
parents: 54890
diff changeset
   477
qed
cdddd073bff8 Lemmas about Reals, norm, etc., and cleaner variants of existing ones
paulson <lp15@cam.ac.uk>
parents: 54890
diff changeset
   478
60026
41d81b4a0a21 Restored LIMSEQ_def as legacy binding. [The other changes are whitespace only.]
paulson <lp15@cam.ac.uk>
parents: 60017
diff changeset
   479
lemma setprod_in_Reals [intro,simp]:
59741
5b762cd73a8e Lots of new material on complex-valued functions. Modified simplification of (x/n)^k
paulson <lp15@cam.ac.uk>
parents: 59658
diff changeset
   480
  assumes "\<And>i. i \<in> s \<Longrightarrow> f i \<in> \<real>" shows "setprod f s \<in> \<real>"
55719
cdddd073bff8 Lemmas about Reals, norm, etc., and cleaner variants of existing ones
paulson <lp15@cam.ac.uk>
parents: 54890
diff changeset
   481
proof (cases "finite s")
cdddd073bff8 Lemmas about Reals, norm, etc., and cleaner variants of existing ones
paulson <lp15@cam.ac.uk>
parents: 54890
diff changeset
   482
  case True then show ?thesis using assms
cdddd073bff8 Lemmas about Reals, norm, etc., and cleaner variants of existing ones
paulson <lp15@cam.ac.uk>
parents: 54890
diff changeset
   483
    by (induct s rule: finite_induct) auto
cdddd073bff8 Lemmas about Reals, norm, etc., and cleaner variants of existing ones
paulson <lp15@cam.ac.uk>
parents: 54890
diff changeset
   484
next
cdddd073bff8 Lemmas about Reals, norm, etc., and cleaner variants of existing ones
paulson <lp15@cam.ac.uk>
parents: 54890
diff changeset
   485
  case False then show ?thesis using assms
57418
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57276
diff changeset
   486
    by (metis Reals_1 setprod.infinite)
55719
cdddd073bff8 Lemmas about Reals, norm, etc., and cleaner variants of existing ones
paulson <lp15@cam.ac.uk>
parents: 54890
diff changeset
   487
qed
cdddd073bff8 Lemmas about Reals, norm, etc., and cleaner variants of existing ones
paulson <lp15@cam.ac.uk>
parents: 54890
diff changeset
   488
20554
c433e78d4203 define new constant of_real for class real_algebra_1;
huffman
parents: 20551
diff changeset
   489
lemma Reals_induct [case_names of_real, induct set: Reals]:
c433e78d4203 define new constant of_real for class real_algebra_1;
huffman
parents: 20551
diff changeset
   490
  "q \<in> \<real> \<Longrightarrow> (\<And>r. P (of_real r)) \<Longrightarrow> P q"
c433e78d4203 define new constant of_real for class real_algebra_1;
huffman
parents: 20551
diff changeset
   491
  by (rule Reals_cases) auto
c433e78d4203 define new constant of_real for class real_algebra_1;
huffman
parents: 20551
diff changeset
   492
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60307
diff changeset
   493
subsection \<open>Ordered real vector spaces\<close>
54778
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   494
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   495
class ordered_real_vector = real_vector + ordered_ab_group_add +
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   496
  assumes scaleR_left_mono: "x \<le> y \<Longrightarrow> 0 \<le> a \<Longrightarrow> a *\<^sub>R x \<le> a *\<^sub>R y"
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   497
  assumes scaleR_right_mono: "a \<le> b \<Longrightarrow> 0 \<le> x \<Longrightarrow> a *\<^sub>R x \<le> b *\<^sub>R x"
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   498
begin
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   499
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   500
lemma scaleR_mono:
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   501
  "a \<le> b \<Longrightarrow> x \<le> y \<Longrightarrow> 0 \<le> b \<Longrightarrow> 0 \<le> x \<Longrightarrow> a *\<^sub>R x \<le> b *\<^sub>R y"
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   502
apply (erule scaleR_right_mono [THEN order_trans], assumption)
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   503
apply (erule scaleR_left_mono, assumption)
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   504
done
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   505
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   506
lemma scaleR_mono':
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   507
  "a \<le> b \<Longrightarrow> c \<le> d \<Longrightarrow> 0 \<le> a \<Longrightarrow> 0 \<le> c \<Longrightarrow> a *\<^sub>R c \<le> b *\<^sub>R d"
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   508
  by (rule scaleR_mono) (auto intro: order.trans)
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   509
54785
4876fb408c0d lemmas about divideR and scaleR
immler
parents: 54778
diff changeset
   510
lemma pos_le_divideRI:
4876fb408c0d lemmas about divideR and scaleR
immler
parents: 54778
diff changeset
   511
  assumes "0 < c"
4876fb408c0d lemmas about divideR and scaleR
immler
parents: 54778
diff changeset
   512
  assumes "c *\<^sub>R a \<le> b"
4876fb408c0d lemmas about divideR and scaleR
immler
parents: 54778
diff changeset
   513
  shows "a \<le> b /\<^sub>R c"
4876fb408c0d lemmas about divideR and scaleR
immler
parents: 54778
diff changeset
   514
proof -
4876fb408c0d lemmas about divideR and scaleR
immler
parents: 54778
diff changeset
   515
  from scaleR_left_mono[OF assms(2)] assms(1)
4876fb408c0d lemmas about divideR and scaleR
immler
parents: 54778
diff changeset
   516
  have "c *\<^sub>R a /\<^sub>R c \<le> b /\<^sub>R c"
4876fb408c0d lemmas about divideR and scaleR
immler
parents: 54778
diff changeset
   517
    by simp
4876fb408c0d lemmas about divideR and scaleR
immler
parents: 54778
diff changeset
   518
  with assms show ?thesis
4876fb408c0d lemmas about divideR and scaleR
immler
parents: 54778
diff changeset
   519
    by (simp add: scaleR_one scaleR_scaleR inverse_eq_divide)
4876fb408c0d lemmas about divideR and scaleR
immler
parents: 54778
diff changeset
   520
qed
4876fb408c0d lemmas about divideR and scaleR
immler
parents: 54778
diff changeset
   521
4876fb408c0d lemmas about divideR and scaleR
immler
parents: 54778
diff changeset
   522
lemma pos_le_divideR_eq:
4876fb408c0d lemmas about divideR and scaleR
immler
parents: 54778
diff changeset
   523
  assumes "0 < c"
4876fb408c0d lemmas about divideR and scaleR
immler
parents: 54778
diff changeset
   524
  shows "a \<le> b /\<^sub>R c \<longleftrightarrow> c *\<^sub>R a \<le> b"
4876fb408c0d lemmas about divideR and scaleR
immler
parents: 54778
diff changeset
   525
proof rule
4876fb408c0d lemmas about divideR and scaleR
immler
parents: 54778
diff changeset
   526
  assume "a \<le> b /\<^sub>R c"
4876fb408c0d lemmas about divideR and scaleR
immler
parents: 54778
diff changeset
   527
  from scaleR_left_mono[OF this] assms
4876fb408c0d lemmas about divideR and scaleR
immler
parents: 54778
diff changeset
   528
  have "c *\<^sub>R a \<le> c *\<^sub>R (b /\<^sub>R c)"
4876fb408c0d lemmas about divideR and scaleR
immler
parents: 54778
diff changeset
   529
    by simp
4876fb408c0d lemmas about divideR and scaleR
immler
parents: 54778
diff changeset
   530
  with assms show "c *\<^sub>R a \<le> b"
4876fb408c0d lemmas about divideR and scaleR
immler
parents: 54778
diff changeset
   531
    by (simp add: scaleR_one scaleR_scaleR inverse_eq_divide)
4876fb408c0d lemmas about divideR and scaleR
immler
parents: 54778
diff changeset
   532
qed (rule pos_le_divideRI[OF assms])
4876fb408c0d lemmas about divideR and scaleR
immler
parents: 54778
diff changeset
   533
4876fb408c0d lemmas about divideR and scaleR
immler
parents: 54778
diff changeset
   534
lemma scaleR_image_atLeastAtMost:
4876fb408c0d lemmas about divideR and scaleR
immler
parents: 54778
diff changeset
   535
  "c > 0 \<Longrightarrow> scaleR c ` {x..y} = {c *\<^sub>R x..c *\<^sub>R y}"
4876fb408c0d lemmas about divideR and scaleR
immler
parents: 54778
diff changeset
   536
  apply (auto intro!: scaleR_left_mono)
4876fb408c0d lemmas about divideR and scaleR
immler
parents: 54778
diff changeset
   537
  apply (rule_tac x = "inverse c *\<^sub>R xa" in image_eqI)
4876fb408c0d lemmas about divideR and scaleR
immler
parents: 54778
diff changeset
   538
  apply (simp_all add: pos_le_divideR_eq[symmetric] scaleR_scaleR scaleR_one)
4876fb408c0d lemmas about divideR and scaleR
immler
parents: 54778
diff changeset
   539
  done
4876fb408c0d lemmas about divideR and scaleR
immler
parents: 54778
diff changeset
   540
54778
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   541
end
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   542
60303
00c06f1315d0 New material about paths, and some lemmas
paulson
parents: 60155
diff changeset
   543
lemma neg_le_divideR_eq:
00c06f1315d0 New material about paths, and some lemmas
paulson
parents: 60155
diff changeset
   544
  fixes a :: "'a :: ordered_real_vector"
00c06f1315d0 New material about paths, and some lemmas
paulson
parents: 60155
diff changeset
   545
  assumes "c < 0"
00c06f1315d0 New material about paths, and some lemmas
paulson
parents: 60155
diff changeset
   546
  shows "a \<le> b /\<^sub>R c \<longleftrightarrow> b \<le> c *\<^sub>R a"
00c06f1315d0 New material about paths, and some lemmas
paulson
parents: 60155
diff changeset
   547
  using pos_le_divideR_eq [of "-c" a "-b"] assms
00c06f1315d0 New material about paths, and some lemmas
paulson
parents: 60155
diff changeset
   548
  by simp
00c06f1315d0 New material about paths, and some lemmas
paulson
parents: 60155
diff changeset
   549
54778
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   550
lemma scaleR_nonneg_nonneg: "0 \<le> a \<Longrightarrow> 0 \<le> (x::'a::ordered_real_vector) \<Longrightarrow> 0 \<le> a *\<^sub>R x"
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   551
  using scaleR_left_mono [of 0 x a]
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   552
  by simp
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   553
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   554
lemma scaleR_nonneg_nonpos: "0 \<le> a \<Longrightarrow> (x::'a::ordered_real_vector) \<le> 0 \<Longrightarrow> a *\<^sub>R x \<le> 0"
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   555
  using scaleR_left_mono [of x 0 a] by simp
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   556
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   557
lemma scaleR_nonpos_nonneg: "a \<le> 0 \<Longrightarrow> 0 \<le> (x::'a::ordered_real_vector) \<Longrightarrow> a *\<^sub>R x \<le> 0"
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   558
  using scaleR_right_mono [of a 0 x] by simp
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   559
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   560
lemma split_scaleR_neg_le: "(0 \<le> a & x \<le> 0) | (a \<le> 0 & 0 \<le> x) \<Longrightarrow>
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   561
  a *\<^sub>R (x::'a::ordered_real_vector) \<le> 0"
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   562
  by (auto simp add: scaleR_nonneg_nonpos scaleR_nonpos_nonneg)
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   563
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   564
lemma le_add_iff1:
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   565
  fixes c d e::"'a::ordered_real_vector"
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   566
  shows "a *\<^sub>R e + c \<le> b *\<^sub>R e + d \<longleftrightarrow> (a - b) *\<^sub>R e + c \<le> d"
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   567
  by (simp add: algebra_simps)
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   568
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   569
lemma le_add_iff2:
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   570
  fixes c d e::"'a::ordered_real_vector"
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   571
  shows "a *\<^sub>R e + c \<le> b *\<^sub>R e + d \<longleftrightarrow> c \<le> (b - a) *\<^sub>R e + d"
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   572
  by (simp add: algebra_simps)
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   573
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   574
lemma scaleR_left_mono_neg:
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   575
  fixes a b::"'a::ordered_real_vector"
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   576
  shows "b \<le> a \<Longrightarrow> c \<le> 0 \<Longrightarrow> c *\<^sub>R a \<le> c *\<^sub>R b"
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   577
  apply (drule scaleR_left_mono [of _ _ "- c"])
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   578
  apply simp_all
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   579
  done
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   580
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   581
lemma scaleR_right_mono_neg:
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   582
  fixes c::"'a::ordered_real_vector"
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   583
  shows "b \<le> a \<Longrightarrow> c \<le> 0 \<Longrightarrow> a *\<^sub>R c \<le> b *\<^sub>R c"
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   584
  apply (drule scaleR_right_mono [of _ _ "- c"])
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   585
  apply simp_all
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   586
  done
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   587
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   588
lemma scaleR_nonpos_nonpos: "a \<le> 0 \<Longrightarrow> (b::'a::ordered_real_vector) \<le> 0 \<Longrightarrow> 0 \<le> a *\<^sub>R b"
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   589
using scaleR_right_mono_neg [of a 0 b] by simp
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   590
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   591
lemma split_scaleR_pos_le:
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   592
  fixes b::"'a::ordered_real_vector"
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   593
  shows "(0 \<le> a \<and> 0 \<le> b) \<or> (a \<le> 0 \<and> b \<le> 0) \<Longrightarrow> 0 \<le> a *\<^sub>R b"
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   594
  by (auto simp add: scaleR_nonneg_nonneg scaleR_nonpos_nonpos)
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   595
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   596
lemma zero_le_scaleR_iff:
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   597
  fixes b::"'a::ordered_real_vector"
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   598
  shows "0 \<le> a *\<^sub>R b \<longleftrightarrow> 0 < a \<and> 0 \<le> b \<or> a < 0 \<and> b \<le> 0 \<or> a = 0" (is "?lhs = ?rhs")
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   599
proof cases
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   600
  assume "a \<noteq> 0"
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   601
  show ?thesis
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   602
  proof
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   603
    assume lhs: ?lhs
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   604
    {
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   605
      assume "0 < a"
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   606
      with lhs have "inverse a *\<^sub>R 0 \<le> inverse a *\<^sub>R (a *\<^sub>R b)"
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   607
        by (intro scaleR_mono) auto
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60307
diff changeset
   608
      hence ?rhs using \<open>0 < a\<close>
54778
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   609
        by simp
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   610
    } moreover {
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   611
      assume "0 > a"
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   612
      with lhs have "- inverse a *\<^sub>R 0 \<le> - inverse a *\<^sub>R (a *\<^sub>R b)"
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   613
        by (intro scaleR_mono) auto
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60307
diff changeset
   614
      hence ?rhs using \<open>0 > a\<close>
54778
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   615
        by simp
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60307
diff changeset
   616
    } ultimately show ?rhs using \<open>a \<noteq> 0\<close> by arith
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60307
diff changeset
   617
  qed (auto simp: not_le \<open>a \<noteq> 0\<close> intro!: split_scaleR_pos_le)
54778
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   618
qed simp
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   619
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   620
lemma scaleR_le_0_iff:
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   621
  fixes b::"'a::ordered_real_vector"
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   622
  shows "a *\<^sub>R b \<le> 0 \<longleftrightarrow> 0 < a \<and> b \<le> 0 \<or> a < 0 \<and> 0 \<le> b \<or> a = 0"
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   623
  by (insert zero_le_scaleR_iff [of "-a" b]) force
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   624
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   625
lemma scaleR_le_cancel_left:
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   626
  fixes b::"'a::ordered_real_vector"
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   627
  shows "c *\<^sub>R a \<le> c *\<^sub>R b \<longleftrightarrow> (0 < c \<longrightarrow> a \<le> b) \<and> (c < 0 \<longrightarrow> b \<le> a)"
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   628
  by (auto simp add: neq_iff scaleR_left_mono scaleR_left_mono_neg
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   629
    dest: scaleR_left_mono[where a="inverse c"] scaleR_left_mono_neg[where c="inverse c"])
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   630
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   631
lemma scaleR_le_cancel_left_pos:
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   632
  fixes b::"'a::ordered_real_vector"
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   633
  shows "0 < c \<Longrightarrow> c *\<^sub>R a \<le> c *\<^sub>R b \<longleftrightarrow> a \<le> b"
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   634
  by (auto simp: scaleR_le_cancel_left)
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   635
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   636
lemma scaleR_le_cancel_left_neg:
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   637
  fixes b::"'a::ordered_real_vector"
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   638
  shows "c < 0 \<Longrightarrow> c *\<^sub>R a \<le> c *\<^sub>R b \<longleftrightarrow> b \<le> a"
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   639
  by (auto simp: scaleR_le_cancel_left)
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   640
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   641
lemma scaleR_left_le_one_le:
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   642
  fixes x::"'a::ordered_real_vector" and a::real
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   643
  shows "0 \<le> x \<Longrightarrow> a \<le> 1 \<Longrightarrow> a *\<^sub>R x \<le> x"
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   644
  using scaleR_right_mono[of a 1 x] by simp
13f08c876899 introduced ordered real vector spaces
immler
parents: 54703
diff changeset
   645
20504
6342e872e71d formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff changeset
   646
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60307
diff changeset
   647
subsection \<open>Real normed vector spaces\<close>
20504
6342e872e71d formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff changeset
   648
51531
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
   649
class dist =
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
   650
  fixes dist :: "'a \<Rightarrow> 'a \<Rightarrow> real"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
   651
29608
564ea783ace8 no base sort in class import
haftmann
parents: 29252
diff changeset
   652
class norm =
22636
c40465deaf20 new class syntax for scaleR and norm classes
huffman
parents: 22625
diff changeset
   653
  fixes norm :: "'a \<Rightarrow> real"
20504
6342e872e71d formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff changeset
   654
24520
40b220403257 fix sgn_div_norm class
huffman
parents: 24513
diff changeset
   655
class sgn_div_norm = scaleR + norm + sgn +
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24901
diff changeset
   656
  assumes sgn_div_norm: "sgn x = x /\<^sub>R norm x"
24506
020db6ec334a final(?) iteration of sgn saga.
nipkow
parents: 23282
diff changeset
   657
31289
847f00f435d4 move dist operation to new metric_space class
huffman
parents: 31285
diff changeset
   658
class dist_norm = dist + norm + minus +
847f00f435d4 move dist operation to new metric_space class
huffman
parents: 31285
diff changeset
   659
  assumes dist_norm: "dist x y = norm (x - y)"
847f00f435d4 move dist operation to new metric_space class
huffman
parents: 31285
diff changeset
   660
51531
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
   661
class open_dist = "open" + dist +
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
   662
  assumes open_dist: "open S \<longleftrightarrow> (\<forall>x\<in>S. \<exists>e>0. \<forall>y. dist y x < e \<longrightarrow> y \<in> S)"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
   663
31492
5400beeddb55 replace 'topo' with 'open'; add extra type constraint for 'open'
huffman
parents: 31490
diff changeset
   664
class real_normed_vector = real_vector + sgn_div_norm + dist_norm + open_dist +
51002
496013a6eb38 remove unnecessary assumption from real_normed_vector
hoelzl
parents: 50999
diff changeset
   665
  assumes norm_eq_zero [simp]: "norm x = 0 \<longleftrightarrow> x = 0"
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24901
diff changeset
   666
  and norm_triangle_ineq: "norm (x + y) \<le> norm x + norm y"
31586
d4707b99e631 declare norm_scaleR [simp]; declare scaleR_cancel lemmas [simp]
huffman
parents: 31567
diff changeset
   667
  and norm_scaleR [simp]: "norm (scaleR a x) = \<bar>a\<bar> * norm x"
51002
496013a6eb38 remove unnecessary assumption from real_normed_vector
hoelzl
parents: 50999
diff changeset
   668
begin
496013a6eb38 remove unnecessary assumption from real_normed_vector
hoelzl
parents: 50999
diff changeset
   669
496013a6eb38 remove unnecessary assumption from real_normed_vector
hoelzl
parents: 50999
diff changeset
   670
lemma norm_ge_zero [simp]: "0 \<le> norm x"
496013a6eb38 remove unnecessary assumption from real_normed_vector
hoelzl
parents: 50999
diff changeset
   671
proof -
60026
41d81b4a0a21 Restored LIMSEQ_def as legacy binding. [The other changes are whitespace only.]
paulson <lp15@cam.ac.uk>
parents: 60017
diff changeset
   672
  have "0 = norm (x + -1 *\<^sub>R x)"
51002
496013a6eb38 remove unnecessary assumption from real_normed_vector
hoelzl
parents: 50999
diff changeset
   673
    using scaleR_add_left[of 1 "-1" x] norm_scaleR[of 0 x] by (simp add: scaleR_one)
496013a6eb38 remove unnecessary assumption from real_normed_vector
hoelzl
parents: 50999
diff changeset
   674
  also have "\<dots> \<le> norm x + norm (-1 *\<^sub>R x)" by (rule norm_triangle_ineq)
496013a6eb38 remove unnecessary assumption from real_normed_vector
hoelzl
parents: 50999
diff changeset
   675
  finally show ?thesis by simp
496013a6eb38 remove unnecessary assumption from real_normed_vector
hoelzl
parents: 50999
diff changeset
   676
qed
496013a6eb38 remove unnecessary assumption from real_normed_vector
hoelzl
parents: 50999
diff changeset
   677
496013a6eb38 remove unnecessary assumption from real_normed_vector
hoelzl
parents: 50999
diff changeset
   678
end
20504
6342e872e71d formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff changeset
   679
24588
ed9a1254d674 introduced classes
haftmann
parents: 24520
diff changeset
   680
class real_normed_algebra = real_algebra + real_normed_vector +
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24901
diff changeset
   681
  assumes norm_mult_ineq: "norm (x * y) \<le> norm x * norm y"
20504
6342e872e71d formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff changeset
   682
24588
ed9a1254d674 introduced classes
haftmann
parents: 24520
diff changeset
   683
class real_normed_algebra_1 = real_algebra_1 + real_normed_algebra +
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24901
diff changeset
   684
  assumes norm_one [simp]: "norm 1 = 1"
22852
2490d4b4671a clean up RealVector classes
huffman
parents: 22636
diff changeset
   685
24588
ed9a1254d674 introduced classes
haftmann
parents: 24520
diff changeset
   686
class real_normed_div_algebra = real_div_algebra + real_normed_vector +
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24901
diff changeset
   687
  assumes norm_mult: "norm (x * y) = norm x * norm y"
20504
6342e872e71d formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff changeset
   688
24588
ed9a1254d674 introduced classes
haftmann
parents: 24520
diff changeset
   689
class real_normed_field = real_field + real_normed_div_algebra
20584
60b1d52a455d added classes real_div_algebra and real_field; added lemmas
huffman
parents: 20560
diff changeset
   690
22852
2490d4b4671a clean up RealVector classes
huffman
parents: 22636
diff changeset
   691
instance real_normed_div_algebra < real_normed_algebra_1
20554
c433e78d4203 define new constant of_real for class real_algebra_1;
huffman
parents: 20551
diff changeset
   692
proof
c433e78d4203 define new constant of_real for class real_algebra_1;
huffman
parents: 20551
diff changeset
   693
  fix x y :: 'a
c433e78d4203 define new constant of_real for class real_algebra_1;
huffman
parents: 20551
diff changeset
   694
  show "norm (x * y) \<le> norm x * norm y"
c433e78d4203 define new constant of_real for class real_algebra_1;
huffman
parents: 20551
diff changeset
   695
    by (simp add: norm_mult)
22852
2490d4b4671a clean up RealVector classes
huffman
parents: 22636
diff changeset
   696
next
2490d4b4671a clean up RealVector classes
huffman
parents: 22636
diff changeset
   697
  have "norm (1 * 1::'a) = norm (1::'a) * norm (1::'a)"
2490d4b4671a clean up RealVector classes
huffman
parents: 22636
diff changeset
   698
    by (rule norm_mult)
2490d4b4671a clean up RealVector classes
huffman
parents: 22636
diff changeset
   699
  thus "norm (1::'a) = 1" by simp
20554
c433e78d4203 define new constant of_real for class real_algebra_1;
huffman
parents: 20551
diff changeset
   700
qed
c433e78d4203 define new constant of_real for class real_algebra_1;
huffman
parents: 20551
diff changeset
   701
22852
2490d4b4671a clean up RealVector classes
huffman
parents: 22636
diff changeset
   702
lemma norm_zero [simp]: "norm (0::'a::real_normed_vector) = 0"
20504
6342e872e71d formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff changeset
   703
by simp
6342e872e71d formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff changeset
   704
22852
2490d4b4671a clean up RealVector classes
huffman
parents: 22636
diff changeset
   705
lemma zero_less_norm_iff [simp]:
2490d4b4671a clean up RealVector classes
huffman
parents: 22636
diff changeset
   706
  fixes x :: "'a::real_normed_vector"
2490d4b4671a clean up RealVector classes
huffman
parents: 22636
diff changeset
   707
  shows "(0 < norm x) = (x \<noteq> 0)"
20504
6342e872e71d formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff changeset
   708
by (simp add: order_less_le)
6342e872e71d formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff changeset
   709
22852
2490d4b4671a clean up RealVector classes
huffman
parents: 22636
diff changeset
   710
lemma norm_not_less_zero [simp]:
2490d4b4671a clean up RealVector classes
huffman
parents: 22636
diff changeset
   711
  fixes x :: "'a::real_normed_vector"
2490d4b4671a clean up RealVector classes
huffman
parents: 22636
diff changeset
   712
  shows "\<not> norm x < 0"
20828
68ed2e514ca0 add lemmas norm_not_less_zero, norm_le_zero_iff
huffman
parents: 20772
diff changeset
   713
by (simp add: linorder_not_less)
68ed2e514ca0 add lemmas norm_not_less_zero, norm_le_zero_iff
huffman
parents: 20772
diff changeset
   714
22852
2490d4b4671a clean up RealVector classes
huffman
parents: 22636
diff changeset
   715
lemma norm_le_zero_iff [simp]:
2490d4b4671a clean up RealVector classes
huffman
parents: 22636
diff changeset
   716
  fixes x :: "'a::real_normed_vector"
2490d4b4671a clean up RealVector classes
huffman
parents: 22636
diff changeset
   717
  shows "(norm x \<le> 0) = (x = 0)"
20828
68ed2e514ca0 add lemmas norm_not_less_zero, norm_le_zero_iff
huffman
parents: 20772
diff changeset
   718
by (simp add: order_le_less)
68ed2e514ca0 add lemmas norm_not_less_zero, norm_le_zero_iff
huffman
parents: 20772
diff changeset
   719
20504
6342e872e71d formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff changeset
   720
lemma norm_minus_cancel [simp]:
20584
60b1d52a455d added classes real_div_algebra and real_field; added lemmas
huffman
parents: 20560
diff changeset
   721
  fixes x :: "'a::real_normed_vector"
60b1d52a455d added classes real_div_algebra and real_field; added lemmas
huffman
parents: 20560
diff changeset
   722
  shows "norm (- x) = norm x"
20504
6342e872e71d formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff changeset
   723
proof -
21809
4b93e949ac33 remove uses of scaleR infix syntax; add lemma Reals_number_of
huffman
parents: 21404
diff changeset
   724
  have "norm (- x) = norm (scaleR (- 1) x)"
20504
6342e872e71d formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff changeset
   725
    by (simp only: scaleR_minus_left scaleR_one)
20533
49442b3024bb remove conflicting norm syntax
huffman
parents: 20504
diff changeset
   726
  also have "\<dots> = \<bar>- 1\<bar> * norm x"
20504
6342e872e71d formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff changeset
   727
    by (rule norm_scaleR)
6342e872e71d formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff changeset
   728
  finally show ?thesis by simp
6342e872e71d formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff changeset
   729
qed
6342e872e71d formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff changeset
   730
6342e872e71d formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff changeset
   731
lemma norm_minus_commute:
20584
60b1d52a455d added classes real_div_algebra and real_field; added lemmas
huffman
parents: 20560
diff changeset
   732
  fixes a b :: "'a::real_normed_vector"
60b1d52a455d added classes real_div_algebra and real_field; added lemmas
huffman
parents: 20560
diff changeset
   733
  shows "norm (a - b) = norm (b - a)"
20504
6342e872e71d formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff changeset
   734
proof -
22898
38ae2815989f add lemma norm_diff_ineq; shorten other proofs
huffman
parents: 22880
diff changeset
   735
  have "norm (- (b - a)) = norm (b - a)"
38ae2815989f add lemma norm_diff_ineq; shorten other proofs
huffman
parents: 22880
diff changeset
   736
    by (rule norm_minus_cancel)
38ae2815989f add lemma norm_diff_ineq; shorten other proofs
huffman
parents: 22880
diff changeset
   737
  thus ?thesis by simp
20504
6342e872e71d formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff changeset
   738
qed
6342e872e71d formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff changeset
   739
61524
f2e51e704a96 added many small lemmas about setsum/setprod/powr/...
eberlm
parents: 61169
diff changeset
   740
lemma norm_uminus_minus: "norm (-x - y :: 'a :: real_normed_vector) = norm (x + y)"
f2e51e704a96 added many small lemmas about setsum/setprod/powr/...
eberlm
parents: 61169
diff changeset
   741
  by (subst (2) norm_minus_cancel[symmetric], subst minus_add_distrib) simp
f2e51e704a96 added many small lemmas about setsum/setprod/powr/...
eberlm
parents: 61169
diff changeset
   742
20504
6342e872e71d formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff changeset
   743
lemma norm_triangle_ineq2:
20584
60b1d52a455d added classes real_div_algebra and real_field; added lemmas
huffman
parents: 20560
diff changeset
   744
  fixes a b :: "'a::real_normed_vector"
20533
49442b3024bb remove conflicting norm syntax
huffman
parents: 20504
diff changeset
   745
  shows "norm a - norm b \<le> norm (a - b)"
20504
6342e872e71d formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff changeset
   746
proof -
20533
49442b3024bb remove conflicting norm syntax
huffman
parents: 20504
diff changeset
   747
  have "norm (a - b + b) \<le> norm (a - b) + norm b"
20504
6342e872e71d formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff changeset
   748
    by (rule norm_triangle_ineq)
22898
38ae2815989f add lemma norm_diff_ineq; shorten other proofs
huffman
parents: 22880
diff changeset
   749
  thus ?thesis by simp
20504
6342e872e71d formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff changeset
   750
qed
6342e872e71d formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff changeset
   751
20584
60b1d52a455d added classes real_div_algebra and real_field; added lemmas
huffman
parents: 20560
diff changeset
   752
lemma norm_triangle_ineq3:
60b1d52a455d added classes real_div_algebra and real_field; added lemmas
huffman
parents: 20560
diff changeset
   753
  fixes a b :: "'a::real_normed_vector"
60b1d52a455d added classes real_div_algebra and real_field; added lemmas
huffman
parents: 20560
diff changeset
   754
  shows "\<bar>norm a - norm b\<bar> \<le> norm (a - b)"
60b1d52a455d added classes real_div_algebra and real_field; added lemmas
huffman
parents: 20560
diff changeset
   755
apply (subst abs_le_iff)
60b1d52a455d added classes real_div_algebra and real_field; added lemmas
huffman
parents: 20560
diff changeset
   756
apply auto
60b1d52a455d added classes real_div_algebra and real_field; added lemmas
huffman
parents: 20560
diff changeset
   757
apply (rule norm_triangle_ineq2)
60b1d52a455d added classes real_div_algebra and real_field; added lemmas
huffman
parents: 20560
diff changeset
   758
apply (subst norm_minus_commute)
60b1d52a455d added classes real_div_algebra and real_field; added lemmas
huffman
parents: 20560
diff changeset
   759
apply (rule norm_triangle_ineq2)
60b1d52a455d added classes real_div_algebra and real_field; added lemmas
huffman
parents: 20560
diff changeset
   760
done
60b1d52a455d added classes real_div_algebra and real_field; added lemmas
huffman
parents: 20560
diff changeset
   761
20504
6342e872e71d formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff changeset
   762
lemma norm_triangle_ineq4:
20584
60b1d52a455d added classes real_div_algebra and real_field; added lemmas
huffman
parents: 20560
diff changeset
   763
  fixes a b :: "'a::real_normed_vector"
20533
49442b3024bb remove conflicting norm syntax
huffman
parents: 20504
diff changeset
   764
  shows "norm (a - b) \<le> norm a + norm b"
20504
6342e872e71d formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff changeset
   765
proof -
22898
38ae2815989f add lemma norm_diff_ineq; shorten other proofs
huffman
parents: 22880
diff changeset
   766
  have "norm (a + - b) \<le> norm a + norm (- b)"
20504
6342e872e71d formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff changeset
   767
    by (rule norm_triangle_ineq)
54230
b1d955791529 more simplification rules on unary and binary minus
haftmann
parents: 53600
diff changeset
   768
  then show ?thesis by simp
22898
38ae2815989f add lemma norm_diff_ineq; shorten other proofs
huffman
parents: 22880
diff changeset
   769
qed
38ae2815989f add lemma norm_diff_ineq; shorten other proofs
huffman
parents: 22880
diff changeset
   770
38ae2815989f add lemma norm_diff_ineq; shorten other proofs
huffman
parents: 22880
diff changeset
   771
lemma norm_diff_ineq:
38ae2815989f add lemma norm_diff_ineq; shorten other proofs
huffman
parents: 22880
diff changeset
   772
  fixes a b :: "'a::real_normed_vector"
38ae2815989f add lemma norm_diff_ineq; shorten other proofs
huffman
parents: 22880
diff changeset
   773
  shows "norm a - norm b \<le> norm (a + b)"
38ae2815989f add lemma norm_diff_ineq; shorten other proofs
huffman
parents: 22880
diff changeset
   774
proof -
38ae2815989f add lemma norm_diff_ineq; shorten other proofs
huffman
parents: 22880
diff changeset
   775
  have "norm a - norm (- b) \<le> norm (a - - b)"
38ae2815989f add lemma norm_diff_ineq; shorten other proofs
huffman
parents: 22880
diff changeset
   776
    by (rule norm_triangle_ineq2)
38ae2815989f add lemma norm_diff_ineq; shorten other proofs
huffman
parents: 22880
diff changeset
   777
  thus ?thesis by simp
20504
6342e872e71d formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff changeset
   778
qed
6342e872e71d formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff changeset
   779
20551
ba543692bfa1 add theorem norm_diff_triangle_ineq
huffman
parents: 20533
diff changeset
   780
lemma norm_diff_triangle_ineq:
ba543692bfa1 add theorem norm_diff_triangle_ineq
huffman
parents: 20533
diff changeset
   781
  fixes a b c d :: "'a::real_normed_vector"
ba543692bfa1 add theorem norm_diff_triangle_ineq
huffman
parents: 20533
diff changeset
   782
  shows "norm ((a + b) - (c + d)) \<le> norm (a - c) + norm (b - d)"
ba543692bfa1 add theorem norm_diff_triangle_ineq
huffman
parents: 20533
diff changeset
   783
proof -
ba543692bfa1 add theorem norm_diff_triangle_ineq
huffman
parents: 20533
diff changeset
   784
  have "norm ((a + b) - (c + d)) = norm ((a - c) + (b - d))"
54230
b1d955791529 more simplification rules on unary and binary minus
haftmann
parents: 53600
diff changeset
   785
    by (simp add: algebra_simps)
20551
ba543692bfa1 add theorem norm_diff_triangle_ineq
huffman
parents: 20533
diff changeset
   786
  also have "\<dots> \<le> norm (a - c) + norm (b - d)"
ba543692bfa1 add theorem norm_diff_triangle_ineq
huffman
parents: 20533
diff changeset
   787
    by (rule norm_triangle_ineq)
ba543692bfa1 add theorem norm_diff_triangle_ineq
huffman
parents: 20533
diff changeset
   788
  finally show ?thesis .
ba543692bfa1 add theorem norm_diff_triangle_ineq
huffman
parents: 20533
diff changeset
   789
qed
ba543692bfa1 add theorem norm_diff_triangle_ineq
huffman
parents: 20533
diff changeset
   790
60800
7d04351c795a New material for Cauchy's integral theorem
paulson <lp15@cam.ac.uk>
parents: 60762
diff changeset
   791
lemma norm_diff_triangle_le:
7d04351c795a New material for Cauchy's integral theorem
paulson <lp15@cam.ac.uk>
parents: 60762
diff changeset
   792
  fixes x y z :: "'a::real_normed_vector"
7d04351c795a New material for Cauchy's integral theorem
paulson <lp15@cam.ac.uk>
parents: 60762
diff changeset
   793
  assumes "norm (x - y) \<le> e1"  "norm (y - z) \<le> e2"
7d04351c795a New material for Cauchy's integral theorem
paulson <lp15@cam.ac.uk>
parents: 60762
diff changeset
   794
    shows "norm (x - z) \<le> e1 + e2"
7d04351c795a New material for Cauchy's integral theorem
paulson <lp15@cam.ac.uk>
parents: 60762
diff changeset
   795
  using norm_diff_triangle_ineq [of x y y z] assms by simp
7d04351c795a New material for Cauchy's integral theorem
paulson <lp15@cam.ac.uk>
parents: 60762
diff changeset
   796
7d04351c795a New material for Cauchy's integral theorem
paulson <lp15@cam.ac.uk>
parents: 60762
diff changeset
   797
lemma norm_diff_triangle_less:
7d04351c795a New material for Cauchy's integral theorem
paulson <lp15@cam.ac.uk>
parents: 60762
diff changeset
   798
  fixes x y z :: "'a::real_normed_vector"
7d04351c795a New material for Cauchy's integral theorem
paulson <lp15@cam.ac.uk>
parents: 60762
diff changeset
   799
  assumes "norm (x - y) < e1"  "norm (y - z) < e2"
7d04351c795a New material for Cauchy's integral theorem
paulson <lp15@cam.ac.uk>
parents: 60762
diff changeset
   800
    shows "norm (x - z) < e1 + e2"
7d04351c795a New material for Cauchy's integral theorem
paulson <lp15@cam.ac.uk>
parents: 60762
diff changeset
   801
  using norm_diff_triangle_ineq [of x y y z] assms by simp
7d04351c795a New material for Cauchy's integral theorem
paulson <lp15@cam.ac.uk>
parents: 60762
diff changeset
   802
60026
41d81b4a0a21 Restored LIMSEQ_def as legacy binding. [The other changes are whitespace only.]
paulson <lp15@cam.ac.uk>
parents: 60017
diff changeset
   803
lemma norm_triangle_mono:
55719
cdddd073bff8 Lemmas about Reals, norm, etc., and cleaner variants of existing ones
paulson <lp15@cam.ac.uk>
parents: 54890
diff changeset
   804
  fixes a b :: "'a::real_normed_vector"
cdddd073bff8 Lemmas about Reals, norm, etc., and cleaner variants of existing ones
paulson <lp15@cam.ac.uk>
parents: 54890
diff changeset
   805
  shows "\<lbrakk>norm a \<le> r; norm b \<le> s\<rbrakk> \<Longrightarrow> norm (a + b) \<le> r + s"
cdddd073bff8 Lemmas about Reals, norm, etc., and cleaner variants of existing ones
paulson <lp15@cam.ac.uk>
parents: 54890
diff changeset
   806
by (metis add_mono_thms_linordered_semiring(1) norm_triangle_ineq order.trans)
cdddd073bff8 Lemmas about Reals, norm, etc., and cleaner variants of existing ones
paulson <lp15@cam.ac.uk>
parents: 54890
diff changeset
   807
56194
9ffbb4004c81 fix HOL-NSA; move lemmas
hoelzl
parents: 55719
diff changeset
   808
lemma norm_setsum:
9ffbb4004c81 fix HOL-NSA; move lemmas
hoelzl
parents: 55719
diff changeset
   809
  fixes f :: "'a \<Rightarrow> 'b::real_normed_vector"
9ffbb4004c81 fix HOL-NSA; move lemmas
hoelzl
parents: 55719
diff changeset
   810
  shows "norm (setsum f A) \<le> (\<Sum>i\<in>A. norm (f i))"
9ffbb4004c81 fix HOL-NSA; move lemmas
hoelzl
parents: 55719
diff changeset
   811
  by (induct A rule: infinite_finite_induct) (auto intro: norm_triangle_mono)
9ffbb4004c81 fix HOL-NSA; move lemmas
hoelzl
parents: 55719
diff changeset
   812
56369
2704ca85be98 moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents: 56194
diff changeset
   813
lemma setsum_norm_le:
2704ca85be98 moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents: 56194
diff changeset
   814
  fixes f :: "'a \<Rightarrow> 'b::real_normed_vector"
2704ca85be98 moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents: 56194
diff changeset
   815
  assumes fg: "\<forall>x \<in> S. norm (f x) \<le> g x"
2704ca85be98 moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents: 56194
diff changeset
   816
  shows "norm (setsum f S) \<le> setsum g S"
2704ca85be98 moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents: 56194
diff changeset
   817
  by (rule order_trans [OF norm_setsum setsum_mono]) (simp add: fg)
2704ca85be98 moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents: 56194
diff changeset
   818
22857
cb84e886cc90 add lemma abs_norm_cancel
huffman
parents: 22852
diff changeset
   819
lemma abs_norm_cancel [simp]:
cb84e886cc90 add lemma abs_norm_cancel
huffman
parents: 22852
diff changeset
   820
  fixes a :: "'a::real_normed_vector"
cb84e886cc90 add lemma abs_norm_cancel
huffman
parents: 22852
diff changeset
   821
  shows "\<bar>norm a\<bar> = norm a"
cb84e886cc90 add lemma abs_norm_cancel
huffman
parents: 22852
diff changeset
   822
by (rule abs_of_nonneg [OF norm_ge_zero])
cb84e886cc90 add lemma abs_norm_cancel
huffman
parents: 22852
diff changeset
   823
22880
424d6fb67513 add lemmas norm_add_less, norm_mult_less
huffman
parents: 22876
diff changeset
   824
lemma norm_add_less:
424d6fb67513 add lemmas norm_add_less, norm_mult_less
huffman
parents: 22876
diff changeset
   825
  fixes x y :: "'a::real_normed_vector"
424d6fb67513 add lemmas norm_add_less, norm_mult_less
huffman
parents: 22876
diff changeset
   826
  shows "\<lbrakk>norm x < r; norm y < s\<rbrakk> \<Longrightarrow> norm (x + y) < r + s"
424d6fb67513 add lemmas norm_add_less, norm_mult_less
huffman
parents: 22876
diff changeset
   827
by (rule order_le_less_trans [OF norm_triangle_ineq add_strict_mono])
424d6fb67513 add lemmas norm_add_less, norm_mult_less
huffman
parents: 22876
diff changeset
   828
424d6fb67513 add lemmas norm_add_less, norm_mult_less
huffman
parents: 22876
diff changeset
   829
lemma norm_mult_less:
424d6fb67513 add lemmas norm_add_less, norm_mult_less
huffman
parents: 22876
diff changeset
   830
  fixes x y :: "'a::real_normed_algebra"
424d6fb67513 add lemmas norm_add_less, norm_mult_less
huffman
parents: 22876
diff changeset
   831
  shows "\<lbrakk>norm x < r; norm y < s\<rbrakk> \<Longrightarrow> norm (x * y) < r * s"
424d6fb67513 add lemmas norm_add_less, norm_mult_less
huffman
parents: 22876
diff changeset
   832
apply (rule order_le_less_trans [OF norm_mult_ineq])
424d6fb67513 add lemmas norm_add_less, norm_mult_less
huffman
parents: 22876
diff changeset
   833
apply (simp add: mult_strict_mono')
424d6fb67513 add lemmas norm_add_less, norm_mult_less
huffman
parents: 22876
diff changeset
   834
done
424d6fb67513 add lemmas norm_add_less, norm_mult_less
huffman
parents: 22876
diff changeset
   835
22857
cb84e886cc90 add lemma abs_norm_cancel
huffman
parents: 22852
diff changeset
   836
lemma norm_of_real [simp]:
cb84e886cc90 add lemma abs_norm_cancel
huffman
parents: 22852
diff changeset
   837
  "norm (of_real r :: 'a::real_normed_algebra_1) = \<bar>r\<bar>"
31586
d4707b99e631 declare norm_scaleR [simp]; declare scaleR_cancel lemmas [simp]
huffman
parents: 31567
diff changeset
   838
unfolding of_real_def by simp
20560
49996715bc6e norm_one is now proved from other class axioms
huffman
parents: 20554
diff changeset
   839
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46868
diff changeset
   840
lemma norm_numeral [simp]:
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46868
diff changeset
   841
  "norm (numeral w::'a::real_normed_algebra_1) = numeral w"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46868
diff changeset
   842
by (subst of_real_numeral [symmetric], subst norm_of_real, simp)
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46868
diff changeset
   843
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46868
diff changeset
   844
lemma norm_neg_numeral [simp]:
54489
03ff4d1e6784 eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents: 54263
diff changeset
   845
  "norm (- numeral w::'a::real_normed_algebra_1) = numeral w"
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46868
diff changeset
   846
by (subst of_real_neg_numeral [symmetric], subst norm_of_real, simp)
22876
2b4c831ceca7 add lemmas norm_number_of, norm_of_int, norm_of_nat
huffman
parents: 22857
diff changeset
   847
2b4c831ceca7 add lemmas norm_number_of, norm_of_int, norm_of_nat
huffman
parents: 22857
diff changeset
   848
lemma norm_of_int [simp]:
2b4c831ceca7 add lemmas norm_number_of, norm_of_int, norm_of_nat
huffman
parents: 22857
diff changeset
   849
  "norm (of_int z::'a::real_normed_algebra_1) = \<bar>of_int z\<bar>"
2b4c831ceca7 add lemmas norm_number_of, norm_of_int, norm_of_nat
huffman
parents: 22857
diff changeset
   850
by (subst of_real_of_int_eq [symmetric], rule norm_of_real)
2b4c831ceca7 add lemmas norm_number_of, norm_of_int, norm_of_nat
huffman
parents: 22857
diff changeset
   851
2b4c831ceca7 add lemmas norm_number_of, norm_of_int, norm_of_nat
huffman
parents: 22857
diff changeset
   852
lemma norm_of_nat [simp]:
2b4c831ceca7 add lemmas norm_number_of, norm_of_int, norm_of_nat
huffman
parents: 22857
diff changeset
   853
  "norm (of_nat n::'a::real_normed_algebra_1) = of_nat n"
2b4c831ceca7 add lemmas norm_number_of, norm_of_int, norm_of_nat
huffman
parents: 22857
diff changeset
   854
apply (subst of_real_of_nat_eq [symmetric])
2b4c831ceca7 add lemmas norm_number_of, norm_of_int, norm_of_nat
huffman
parents: 22857
diff changeset
   855
apply (subst norm_of_real, simp)
2b4c831ceca7 add lemmas norm_number_of, norm_of_int, norm_of_nat
huffman
parents: 22857
diff changeset
   856
done
2b4c831ceca7 add lemmas norm_number_of, norm_of_int, norm_of_nat
huffman
parents: 22857
diff changeset
   857
20504
6342e872e71d formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff changeset
   858
lemma nonzero_norm_inverse:
6342e872e71d formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff changeset
   859
  fixes a :: "'a::real_normed_div_algebra"
20533
49442b3024bb remove conflicting norm syntax
huffman
parents: 20504
diff changeset
   860
  shows "a \<noteq> 0 \<Longrightarrow> norm (inverse a) = inverse (norm a)"
20504
6342e872e71d formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff changeset
   861
apply (rule inverse_unique [symmetric])
6342e872e71d formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff changeset
   862
apply (simp add: norm_mult [symmetric])
6342e872e71d formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff changeset
   863
done
6342e872e71d formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff changeset
   864
6342e872e71d formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff changeset
   865
lemma norm_inverse:
59867
58043346ca64 given up separate type classes demanding `inverse 0 = 0`
haftmann
parents: 59741
diff changeset
   866
  fixes a :: "'a::{real_normed_div_algebra, division_ring}"
20533
49442b3024bb remove conflicting norm syntax
huffman
parents: 20504
diff changeset
   867
  shows "norm (inverse a) = inverse (norm a)"
20504
6342e872e71d formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff changeset
   868
apply (case_tac "a = 0", simp)
6342e872e71d formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff changeset
   869
apply (erule nonzero_norm_inverse)
6342e872e71d formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff changeset
   870
done
6342e872e71d formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff changeset
   871
20584
60b1d52a455d added classes real_div_algebra and real_field; added lemmas
huffman
parents: 20560
diff changeset
   872
lemma nonzero_norm_divide:
60b1d52a455d added classes real_div_algebra and real_field; added lemmas
huffman
parents: 20560
diff changeset
   873
  fixes a b :: "'a::real_normed_field"
60b1d52a455d added classes real_div_algebra and real_field; added lemmas
huffman
parents: 20560
diff changeset
   874
  shows "b \<noteq> 0 \<Longrightarrow> norm (a / b) = norm a / norm b"
60b1d52a455d added classes real_div_algebra and real_field; added lemmas
huffman
parents: 20560
diff changeset
   875
by (simp add: divide_inverse norm_mult nonzero_norm_inverse)
60b1d52a455d added classes real_div_algebra and real_field; added lemmas
huffman
parents: 20560
diff changeset
   876
60b1d52a455d added classes real_div_algebra and real_field; added lemmas
huffman
parents: 20560
diff changeset
   877
lemma norm_divide:
59867
58043346ca64 given up separate type classes demanding `inverse 0 = 0`
haftmann
parents: 59741
diff changeset
   878
  fixes a b :: "'a::{real_normed_field, field}"
20584
60b1d52a455d added classes real_div_algebra and real_field; added lemmas
huffman
parents: 20560
diff changeset
   879
  shows "norm (a / b) = norm a / norm b"
60b1d52a455d added classes real_div_algebra and real_field; added lemmas
huffman
parents: 20560
diff changeset
   880
by (simp add: divide_inverse norm_mult norm_inverse)
60b1d52a455d added classes real_div_algebra and real_field; added lemmas
huffman
parents: 20560
diff changeset
   881
22852
2490d4b4671a clean up RealVector classes
huffman
parents: 22636
diff changeset
   882
lemma norm_power_ineq:
31017
2c227493ea56 stripped class recpower further
haftmann
parents: 30729
diff changeset
   883
  fixes x :: "'a::{real_normed_algebra_1}"
22852
2490d4b4671a clean up RealVector classes
huffman
parents: 22636
diff changeset
   884
  shows "norm (x ^ n) \<le> norm x ^ n"
2490d4b4671a clean up RealVector classes
huffman
parents: 22636
diff changeset
   885
proof (induct n)
2490d4b4671a clean up RealVector classes
huffman
parents: 22636
diff changeset
   886
  case 0 show "norm (x ^ 0) \<le> norm x ^ 0" by simp
2490d4b4671a clean up RealVector classes
huffman
parents: 22636
diff changeset
   887
next
2490d4b4671a clean up RealVector classes
huffman
parents: 22636
diff changeset
   888
  case (Suc n)
2490d4b4671a clean up RealVector classes
huffman
parents: 22636
diff changeset
   889
  have "norm (x * x ^ n) \<le> norm x * norm (x ^ n)"
2490d4b4671a clean up RealVector classes
huffman
parents: 22636
diff changeset
   890
    by (rule norm_mult_ineq)
2490d4b4671a clean up RealVector classes
huffman
parents: 22636
diff changeset
   891
  also from Suc have "\<dots> \<le> norm x * norm x ^ n"
2490d4b4671a clean up RealVector classes
huffman
parents: 22636
diff changeset
   892
    using norm_ge_zero by (rule mult_left_mono)
2490d4b4671a clean up RealVector classes
huffman
parents: 22636
diff changeset
   893
  finally show "norm (x ^ Suc n) \<le> norm x ^ Suc n"
30273
ecd6f0ca62ea declare power_Suc [simp]; remove redundant type-specific versions of power_Suc
huffman
parents: 30242
diff changeset
   894
    by simp
22852
2490d4b4671a clean up RealVector classes
huffman
parents: 22636
diff changeset
   895
qed
2490d4b4671a clean up RealVector classes
huffman
parents: 22636
diff changeset
   896
20684
74e8b46abb97 add lemma norm_power
huffman
parents: 20584
diff changeset
   897
lemma norm_power:
31017
2c227493ea56 stripped class recpower further
haftmann
parents: 30729
diff changeset
   898
  fixes x :: "'a::{real_normed_div_algebra}"
20684
74e8b46abb97 add lemma norm_power
huffman
parents: 20584
diff changeset
   899
  shows "norm (x ^ n) = norm x ^ n"
30273
ecd6f0ca62ea declare power_Suc [simp]; remove redundant type-specific versions of power_Suc
huffman
parents: 30242
diff changeset
   900
by (induct n) (simp_all add: norm_mult)
20684
74e8b46abb97 add lemma norm_power
huffman
parents: 20584
diff changeset
   901
60762
bf0c76ccee8d new material for multivariate analysis, etc.
paulson
parents: 60758
diff changeset
   902
lemma norm_mult_numeral1 [simp]:
bf0c76ccee8d new material for multivariate analysis, etc.
paulson
parents: 60758
diff changeset
   903
  fixes a b :: "'a::{real_normed_field, field}"
bf0c76ccee8d new material for multivariate analysis, etc.
paulson
parents: 60758
diff changeset
   904
  shows "norm (numeral w * a) = numeral w * norm a"
bf0c76ccee8d new material for multivariate analysis, etc.
paulson
parents: 60758
diff changeset
   905
by (simp add: norm_mult)
bf0c76ccee8d new material for multivariate analysis, etc.
paulson
parents: 60758
diff changeset
   906
bf0c76ccee8d new material for multivariate analysis, etc.
paulson
parents: 60758
diff changeset
   907
lemma norm_mult_numeral2 [simp]:
bf0c76ccee8d new material for multivariate analysis, etc.
paulson
parents: 60758
diff changeset
   908
  fixes a b :: "'a::{real_normed_field, field}"
bf0c76ccee8d new material for multivariate analysis, etc.
paulson
parents: 60758
diff changeset
   909
  shows "norm (a * numeral w) = norm a * numeral w"
bf0c76ccee8d new material for multivariate analysis, etc.
paulson
parents: 60758
diff changeset
   910
by (simp add: norm_mult)
bf0c76ccee8d new material for multivariate analysis, etc.
paulson
parents: 60758
diff changeset
   911
bf0c76ccee8d new material for multivariate analysis, etc.
paulson
parents: 60758
diff changeset
   912
lemma norm_divide_numeral [simp]:
bf0c76ccee8d new material for multivariate analysis, etc.
paulson
parents: 60758
diff changeset
   913
  fixes a b :: "'a::{real_normed_field, field}"
bf0c76ccee8d new material for multivariate analysis, etc.
paulson
parents: 60758
diff changeset
   914
  shows "norm (a / numeral w) = norm a / numeral w"
bf0c76ccee8d new material for multivariate analysis, etc.
paulson
parents: 60758
diff changeset
   915
by (simp add: norm_divide)
bf0c76ccee8d new material for multivariate analysis, etc.
paulson
parents: 60758
diff changeset
   916
bf0c76ccee8d new material for multivariate analysis, etc.
paulson
parents: 60758
diff changeset
   917
lemma norm_of_real_diff [simp]:
bf0c76ccee8d new material for multivariate analysis, etc.
paulson
parents: 60758
diff changeset
   918
    "norm (of_real b - of_real a :: 'a::real_normed_algebra_1) \<le> \<bar>b - a\<bar>"
bf0c76ccee8d new material for multivariate analysis, etc.
paulson
parents: 60758
diff changeset
   919
  by (metis norm_of_real of_real_diff order_refl)
bf0c76ccee8d new material for multivariate analysis, etc.
paulson
parents: 60758
diff changeset
   920
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60307
diff changeset
   921
text\<open>Despite a superficial resemblance, @{text norm_eq_1} is not relevant.\<close>
59613
7103019278f0 The function frac. Various lemmas about limits, series, the exp function, etc.
paulson <lp15@cam.ac.uk>
parents: 59587
diff changeset
   922
lemma square_norm_one:
7103019278f0 The function frac. Various lemmas about limits, series, the exp function, etc.
paulson <lp15@cam.ac.uk>
parents: 59587
diff changeset
   923
  fixes x :: "'a::real_normed_div_algebra"
7103019278f0 The function frac. Various lemmas about limits, series, the exp function, etc.
paulson <lp15@cam.ac.uk>
parents: 59587
diff changeset
   924
  assumes "x^2 = 1" shows "norm x = 1"
7103019278f0 The function frac. Various lemmas about limits, series, the exp function, etc.
paulson <lp15@cam.ac.uk>
parents: 59587
diff changeset
   925
  by (metis assms norm_minus_cancel norm_one power2_eq_1_iff)
7103019278f0 The function frac. Various lemmas about limits, series, the exp function, etc.
paulson <lp15@cam.ac.uk>
parents: 59587
diff changeset
   926
59658
0cc388370041 sin, cos generalised from type real to any "'a::{real_normed_field,banach}", including complex
paulson <lp15@cam.ac.uk>
parents: 59613
diff changeset
   927
lemma norm_less_p1:
0cc388370041 sin, cos generalised from type real to any "'a::{real_normed_field,banach}", including complex
paulson <lp15@cam.ac.uk>
parents: 59613
diff changeset
   928
  fixes x :: "'a::real_normed_algebra_1"
0cc388370041 sin, cos generalised from type real to any "'a::{real_normed_field,banach}", including complex
paulson <lp15@cam.ac.uk>
parents: 59613
diff changeset
   929
  shows "norm x < norm (of_real (norm x) + 1 :: 'a)"
0cc388370041 sin, cos generalised from type real to any "'a::{real_normed_field,banach}", including complex
paulson <lp15@cam.ac.uk>
parents: 59613
diff changeset
   930
proof -
0cc388370041 sin, cos generalised from type real to any "'a::{real_normed_field,banach}", including complex
paulson <lp15@cam.ac.uk>
parents: 59613
diff changeset
   931
  have "norm x < norm (of_real (norm x + 1) :: 'a)"
0cc388370041 sin, cos generalised from type real to any "'a::{real_normed_field,banach}", including complex
paulson <lp15@cam.ac.uk>
parents: 59613
diff changeset
   932
    by (simp add: of_real_def)
0cc388370041 sin, cos generalised from type real to any "'a::{real_normed_field,banach}", including complex
paulson <lp15@cam.ac.uk>
parents: 59613
diff changeset
   933
  then show ?thesis
0cc388370041 sin, cos generalised from type real to any "'a::{real_normed_field,banach}", including complex
paulson <lp15@cam.ac.uk>
parents: 59613
diff changeset
   934
    by simp
0cc388370041 sin, cos generalised from type real to any "'a::{real_normed_field,banach}", including complex
paulson <lp15@cam.ac.uk>
parents: 59613
diff changeset
   935
qed
0cc388370041 sin, cos generalised from type real to any "'a::{real_normed_field,banach}", including complex
paulson <lp15@cam.ac.uk>
parents: 59613
diff changeset
   936
55719
cdddd073bff8 Lemmas about Reals, norm, etc., and cleaner variants of existing ones
paulson <lp15@cam.ac.uk>
parents: 54890
diff changeset
   937
lemma setprod_norm:
cdddd073bff8 Lemmas about Reals, norm, etc., and cleaner variants of existing ones
paulson <lp15@cam.ac.uk>
parents: 54890
diff changeset
   938
  fixes f :: "'a \<Rightarrow> 'b::{comm_semiring_1,real_normed_div_algebra}"
cdddd073bff8 Lemmas about Reals, norm, etc., and cleaner variants of existing ones
paulson <lp15@cam.ac.uk>
parents: 54890
diff changeset
   939
  shows "setprod (\<lambda>x. norm(f x)) A = norm (setprod f A)"
57275
0ddb5b755cdc moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents: 56889
diff changeset
   940
  by (induct A rule: infinite_finite_induct) (auto simp: norm_mult)
0ddb5b755cdc moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents: 56889
diff changeset
   941
60026
41d81b4a0a21 Restored LIMSEQ_def as legacy binding. [The other changes are whitespace only.]
paulson <lp15@cam.ac.uk>
parents: 60017
diff changeset
   942
lemma norm_setprod_le:
57275
0ddb5b755cdc moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents: 56889
diff changeset
   943
  "norm (setprod f A) \<le> (\<Prod>a\<in>A. norm (f a :: 'a :: {real_normed_algebra_1, comm_monoid_mult}))"
0ddb5b755cdc moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents: 56889
diff changeset
   944
proof (induction A rule: infinite_finite_induct)
0ddb5b755cdc moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents: 56889
diff changeset
   945
  case (insert a A)
0ddb5b755cdc moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents: 56889
diff changeset
   946
  then have "norm (setprod f (insert a A)) \<le> norm (f a) * norm (setprod f A)"
0ddb5b755cdc moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents: 56889
diff changeset
   947
    by (simp add: norm_mult_ineq)
0ddb5b755cdc moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents: 56889
diff changeset
   948
  also have "norm (setprod f A) \<le> (\<Prod>a\<in>A. norm (f a))"
0ddb5b755cdc moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents: 56889
diff changeset
   949
    by (rule insert)
0ddb5b755cdc moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents: 56889
diff changeset
   950
  finally show ?case
0ddb5b755cdc moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents: 56889
diff changeset
   951
    by (simp add: insert mult_left_mono)
0ddb5b755cdc moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents: 56889
diff changeset
   952
qed simp_all
0ddb5b755cdc moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents: 56889
diff changeset
   953
0ddb5b755cdc moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents: 56889
diff changeset
   954
lemma norm_setprod_diff:
0ddb5b755cdc moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents: 56889
diff changeset
   955
  fixes z w :: "'i \<Rightarrow> 'a::{real_normed_algebra_1, comm_monoid_mult}"
0ddb5b755cdc moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents: 56889
diff changeset
   956
  shows "(\<And>i. i \<in> I \<Longrightarrow> norm (z i) \<le> 1) \<Longrightarrow> (\<And>i. i \<in> I \<Longrightarrow> norm (w i) \<le> 1) \<Longrightarrow>
60026
41d81b4a0a21 Restored LIMSEQ_def as legacy binding. [The other changes are whitespace only.]
paulson <lp15@cam.ac.uk>
parents: 60017
diff changeset
   957
    norm ((\<Prod>i\<in>I. z i) - (\<Prod>i\<in>I. w i)) \<le> (\<Sum>i\<in>I. norm (z i - w i))"
57275
0ddb5b755cdc moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents: 56889
diff changeset
   958
proof (induction I rule: infinite_finite_induct)
0ddb5b755cdc moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents: 56889
diff changeset
   959
  case (insert i I)
0ddb5b755cdc moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents: 56889
diff changeset
   960
  note insert.hyps[simp]
0ddb5b755cdc moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents: 56889
diff changeset
   961
0ddb5b755cdc moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents: 56889
diff changeset
   962
  have "norm ((\<Prod>i\<in>insert i I. z i) - (\<Prod>i\<in>insert i I. w i)) =
0ddb5b755cdc moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents: 56889
diff changeset
   963
    norm ((\<Prod>i\<in>I. z i) * (z i - w i) + ((\<Prod>i\<in>I. z i) - (\<Prod>i\<in>I. w i)) * w i)"
0ddb5b755cdc moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents: 56889
diff changeset
   964
    (is "_ = norm (?t1 + ?t2)")
0ddb5b755cdc moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents: 56889
diff changeset
   965
    by (auto simp add: field_simps)
0ddb5b755cdc moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents: 56889
diff changeset
   966
  also have "... \<le> norm ?t1 + norm ?t2"
0ddb5b755cdc moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents: 56889
diff changeset
   967
    by (rule norm_triangle_ineq)
0ddb5b755cdc moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents: 56889
diff changeset
   968
  also have "norm ?t1 \<le> norm (\<Prod>i\<in>I. z i) * norm (z i - w i)"
0ddb5b755cdc moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents: 56889
diff changeset
   969
    by (rule norm_mult_ineq)
0ddb5b755cdc moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents: 56889
diff changeset
   970
  also have "\<dots> \<le> (\<Prod>i\<in>I. norm (z i)) * norm(z i - w i)"
0ddb5b755cdc moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents: 56889
diff changeset
   971
    by (rule mult_right_mono) (auto intro: norm_setprod_le)
0ddb5b755cdc moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents: 56889
diff changeset
   972
  also have "(\<Prod>i\<in>I. norm (z i)) \<le> (\<Prod>i\<in>I. 1)"
0ddb5b755cdc moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents: 56889
diff changeset
   973
    by (intro setprod_mono) (auto intro!: insert)
0ddb5b755cdc moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents: 56889
diff changeset
   974
  also have "norm ?t2 \<le> norm ((\<Prod>i\<in>I. z i) - (\<Prod>i\<in>I. w i)) * norm (w i)"
0ddb5b755cdc moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents: 56889
diff changeset
   975
    by (rule norm_mult_ineq)
0ddb5b755cdc moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents: 56889
diff changeset
   976
  also have "norm (w i) \<le> 1"
0ddb5b755cdc moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents: 56889
diff changeset
   977
    by (auto intro: insert)
0ddb5b755cdc moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents: 56889
diff changeset
   978
  also have "norm ((\<Prod>i\<in>I. z i) - (\<Prod>i\<in>I. w i)) \<le> (\<Sum>i\<in>I. norm (z i - w i))"
0ddb5b755cdc moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents: 56889
diff changeset
   979
    using insert by auto
0ddb5b755cdc moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents: 56889
diff changeset
   980
  finally show ?case
57514
bdc2c6b40bf2 prefer ac_simps collections over separate name bindings for add and mult
haftmann
parents: 57512
diff changeset
   981
    by (auto simp add: ac_simps mult_right_mono mult_left_mono)
57275
0ddb5b755cdc moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents: 56889
diff changeset
   982
qed simp_all
0ddb5b755cdc moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents: 56889
diff changeset
   983
60026
41d81b4a0a21 Restored LIMSEQ_def as legacy binding. [The other changes are whitespace only.]
paulson <lp15@cam.ac.uk>
parents: 60017
diff changeset
   984
lemma norm_power_diff:
57275
0ddb5b755cdc moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents: 56889
diff changeset
   985
  fixes z w :: "'a::{real_normed_algebra_1, comm_monoid_mult}"
0ddb5b755cdc moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents: 56889
diff changeset
   986
  assumes "norm z \<le> 1" "norm w \<le> 1"
0ddb5b755cdc moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents: 56889
diff changeset
   987
  shows "norm (z^m - w^m) \<le> m * norm (z - w)"
0ddb5b755cdc moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents: 56889
diff changeset
   988
proof -
0ddb5b755cdc moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents: 56889
diff changeset
   989
  have "norm (z^m - w^m) = norm ((\<Prod> i < m. z) - (\<Prod> i < m. w))"
0ddb5b755cdc moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents: 56889
diff changeset
   990
    by (simp add: setprod_constant)
0ddb5b755cdc moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents: 56889
diff changeset
   991
  also have "\<dots> \<le> (\<Sum>i<m. norm (z - w))"
0ddb5b755cdc moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents: 56889
diff changeset
   992
    by (intro norm_setprod_diff) (auto simp add: assms)
0ddb5b755cdc moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents: 56889
diff changeset
   993
  also have "\<dots> = m * norm (z - w)"
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 61531
diff changeset
   994
    by simp
57275
0ddb5b755cdc moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents: 56889
diff changeset
   995
  finally show ?thesis .
55719
cdddd073bff8 Lemmas about Reals, norm, etc., and cleaner variants of existing ones
paulson <lp15@cam.ac.uk>
parents: 54890
diff changeset
   996
qed
cdddd073bff8 Lemmas about Reals, norm, etc., and cleaner variants of existing ones
paulson <lp15@cam.ac.uk>
parents: 54890
diff changeset
   997
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60307
diff changeset
   998
subsection \<open>Metric spaces\<close>
51531
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
   999
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1000
class metric_space = open_dist +
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1001
  assumes dist_eq_0_iff [simp]: "dist x y = 0 \<longleftrightarrow> x = y"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1002
  assumes dist_triangle2: "dist x y \<le> dist x z + dist y z"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1003
begin
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1004
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1005
lemma dist_self [simp]: "dist x x = 0"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1006
by simp
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1007
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1008
lemma zero_le_dist [simp]: "0 \<le> dist x y"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1009
using dist_triangle2 [of x x y] by simp
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1010
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1011
lemma zero_less_dist_iff: "0 < dist x y \<longleftrightarrow> x \<noteq> y"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1012
by (simp add: less_le)
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1013
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1014
lemma dist_not_less_zero [simp]: "\<not> dist x y < 0"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1015
by (simp add: not_less)
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1016
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1017
lemma dist_le_zero_iff [simp]: "dist x y \<le> 0 \<longleftrightarrow> x = y"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1018
by (simp add: le_less)
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1019
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1020
lemma dist_commute: "dist x y = dist y x"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1021
proof (rule order_antisym)
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1022
  show "dist x y \<le> dist y x"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1023
    using dist_triangle2 [of x y x] by simp
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1024
  show "dist y x \<le> dist x y"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1025
    using dist_triangle2 [of y x y] by simp
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1026
qed
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1027
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1028
lemma dist_triangle: "dist x z \<le> dist x y + dist y z"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1029
using dist_triangle2 [of x z y] by (simp add: dist_commute)
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1030
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1031
lemma dist_triangle3: "dist x y \<le> dist a x + dist a y"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1032
using dist_triangle2 [of x y a] by (simp add: dist_commute)
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1033
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1034
lemma dist_triangle_alt:
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1035
  shows "dist y z <= dist x y + dist x z"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1036
by (rule dist_triangle3)
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1037
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1038
lemma dist_pos_lt:
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1039
  shows "x \<noteq> y ==> 0 < dist x y"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1040
by (simp add: zero_less_dist_iff)
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1041
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1042
lemma dist_nz:
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1043
  shows "x \<noteq> y \<longleftrightarrow> 0 < dist x y"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1044
by (simp add: zero_less_dist_iff)
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1045
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1046
lemma dist_triangle_le:
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1047
  shows "dist x z + dist y z <= e \<Longrightarrow> dist x y <= e"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1048
by (rule order_trans [OF dist_triangle2])
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1049
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1050
lemma dist_triangle_lt:
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1051
  shows "dist x z + dist y z < e ==> dist x y < e"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1052
by (rule le_less_trans [OF dist_triangle2])
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1053
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1054
lemma dist_triangle_half_l:
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1055
  shows "dist x1 y < e / 2 \<Longrightarrow> dist x2 y < e / 2 \<Longrightarrow> dist x1 x2 < e"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1056
by (rule dist_triangle_lt [where z=y], simp)
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1057
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1058
lemma dist_triangle_half_r:
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1059
  shows "dist y x1 < e / 2 \<Longrightarrow> dist y x2 < e / 2 \<Longrightarrow> dist x1 x2 < e"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1060
by (rule dist_triangle_half_l, simp_all add: dist_commute)
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1061
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1062
subclass topological_space
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1063
proof
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1064
  have "\<exists>e::real. 0 < e"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1065
    by (fast intro: zero_less_one)
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1066
  then show "open UNIV"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1067
    unfolding open_dist by simp
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1068
next
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1069
  fix S T assume "open S" "open T"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1070
  then show "open (S \<inter> T)"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1071
    unfolding open_dist
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1072
    apply clarify
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1073
    apply (drule (1) bspec)+
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1074
    apply (clarify, rename_tac r s)
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1075
    apply (rule_tac x="min r s" in exI, simp)
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1076
    done
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1077
next
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1078
  fix K assume "\<forall>S\<in>K. open S" thus "open (\<Union>K)"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1079
    unfolding open_dist by fast
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1080
qed
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1081
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1082
lemma open_ball: "open {y. dist x y < d}"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1083
proof (unfold open_dist, intro ballI)
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1084
  fix y assume *: "y \<in> {y. dist x y < d}"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1085
  then show "\<exists>e>0. \<forall>z. dist z y < e \<longrightarrow> z \<in> {y. dist x y < d}"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1086
    by (auto intro!: exI[of _ "d - dist x y"] simp: field_simps dist_triangle_lt)
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1087
qed
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1088
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1089
subclass first_countable_topology
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1090
proof
60026
41d81b4a0a21 Restored LIMSEQ_def as legacy binding. [The other changes are whitespace only.]
paulson <lp15@cam.ac.uk>
parents: 60017
diff changeset
  1091
  fix x
51531
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1092
  show "\<exists>A::nat \<Rightarrow> 'a set. (\<forall>i. x \<in> A i \<and> open (A i)) \<and> (\<forall>S. open S \<and> x \<in> S \<longrightarrow> (\<exists>i. A i \<subseteq> S))"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1093
  proof (safe intro!: exI[of _ "\<lambda>n. {y. dist x y < inverse (Suc n)}"])
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1094
    fix S assume "open S" "x \<in> S"
53374
a14d2a854c02 tuned proofs -- clarified flow of facts wrt. calculation;
wenzelm
parents: 52381
diff changeset
  1095
    then obtain e where e: "0 < e" and "{y. dist x y < e} \<subseteq> S"
51531
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1096
      by (auto simp: open_dist subset_eq dist_commute)
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1097
    moreover
53374
a14d2a854c02 tuned proofs -- clarified flow of facts wrt. calculation;
wenzelm
parents: 52381
diff changeset
  1098
    from e obtain i where "inverse (Suc i) < e"
51531
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1099
      by (auto dest!: reals_Archimedean)
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1100
    then have "{y. dist x y < inverse (Suc i)} \<subseteq> {y. dist x y < e}"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1101
      by auto
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1102
    ultimately show "\<exists>i. {y. dist x y < inverse (Suc i)} \<subseteq> S"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1103
      by blast
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1104
  qed (auto intro: open_ball)
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1105
qed
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1106
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1107
end
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1108
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1109
instance metric_space \<subseteq> t2_space
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1110
proof
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1111
  fix x y :: "'a::metric_space"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1112
  assume xy: "x \<noteq> y"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1113
  let ?U = "{y'. dist x y' < dist x y / 2}"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1114
  let ?V = "{x'. dist y x' < dist x y / 2}"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1115
  have th0: "\<And>d x y z. (d x z :: real) \<le> d x y + d y z \<Longrightarrow> d y z = d z y
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1116
               \<Longrightarrow> \<not>(d x y * 2 < d x z \<and> d z y * 2 < d x z)" by arith
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1117
  have "open ?U \<and> open ?V \<and> x \<in> ?U \<and> y \<in> ?V \<and> ?U \<inter> ?V = {}"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1118
    using dist_pos_lt[OF xy] th0[of dist, OF dist_triangle dist_commute]
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1119
    using open_ball[of _ "dist x y / 2"] by auto
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1120
  then show "\<exists>U V. open U \<and> open V \<and> x \<in> U \<and> y \<in> V \<and> U \<inter> V = {}"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1121
    by blast
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1122
qed
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1123
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60307
diff changeset
  1124
text \<open>Every normed vector space is a metric space.\<close>
31285
0a3f9ee4117c generalize dist function to class real_normed_vector
huffman
parents: 31017
diff changeset
  1125
31289
847f00f435d4 move dist operation to new metric_space class
huffman
parents: 31285
diff changeset
  1126
instance real_normed_vector < metric_space
847f00f435d4 move dist operation to new metric_space class
huffman
parents: 31285
diff changeset
  1127
proof
847f00f435d4 move dist operation to new metric_space class
huffman
parents: 31285
diff changeset
  1128
  fix x y :: 'a show "dist x y = 0 \<longleftrightarrow> x = y"
847f00f435d4 move dist operation to new metric_space class
huffman
parents: 31285
diff changeset
  1129
    unfolding dist_norm by simp
847f00f435d4 move dist operation to new metric_space class
huffman
parents: 31285
diff changeset
  1130
next
847f00f435d4 move dist operation to new metric_space class
huffman
parents: 31285
diff changeset
  1131
  fix x y z :: 'a show "dist x y \<le> dist x z + dist y z"
847f00f435d4 move dist operation to new metric_space class
huffman
parents: 31285
diff changeset
  1132
    unfolding dist_norm
847f00f435d4 move dist operation to new metric_space class
huffman
parents: 31285
diff changeset
  1133
    using norm_triangle_ineq4 [of "x - z" "y - z"] by simp
847f00f435d4 move dist operation to new metric_space class
huffman
parents: 31285
diff changeset
  1134
qed
31285
0a3f9ee4117c generalize dist function to class real_normed_vector
huffman
parents: 31017
diff changeset
  1135
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60307
diff changeset
  1136
subsection \<open>Class instances for real numbers\<close>
31564
d2abf6f6f619 subsection for real instances; new lemmas for open sets of reals
huffman
parents: 31494
diff changeset
  1137
d2abf6f6f619 subsection for real instances; new lemmas for open sets of reals
huffman
parents: 31494
diff changeset
  1138
instantiation real :: real_normed_field
d2abf6f6f619 subsection for real instances; new lemmas for open sets of reals
huffman
parents: 31494
diff changeset
  1139
begin
d2abf6f6f619 subsection for real instances; new lemmas for open sets of reals
huffman
parents: 31494
diff changeset
  1140
51531
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1141
definition dist_real_def:
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1142
  "dist x y = \<bar>x - y\<bar>"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1143
52381
63eec9cea2c7 pragmatic executability for instance real :: open
haftmann
parents: 51775
diff changeset
  1144
definition open_real_def [code del]:
51531
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1145
  "open (S :: real set) \<longleftrightarrow> (\<forall>x\<in>S. \<exists>e>0. \<forall>y. dist y x < e \<longrightarrow> y \<in> S)"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1146
31564
d2abf6f6f619 subsection for real instances; new lemmas for open sets of reals
huffman
parents: 31494
diff changeset
  1147
definition real_norm_def [simp]:
d2abf6f6f619 subsection for real instances; new lemmas for open sets of reals
huffman
parents: 31494
diff changeset
  1148
  "norm r = \<bar>r\<bar>"
d2abf6f6f619 subsection for real instances; new lemmas for open sets of reals
huffman
parents: 31494
diff changeset
  1149
d2abf6f6f619 subsection for real instances; new lemmas for open sets of reals
huffman
parents: 31494
diff changeset
  1150
instance
d2abf6f6f619 subsection for real instances; new lemmas for open sets of reals
huffman
parents: 31494
diff changeset
  1151
apply (intro_classes, unfold real_norm_def real_scaleR_def)
d2abf6f6f619 subsection for real instances; new lemmas for open sets of reals
huffman
parents: 31494
diff changeset
  1152
apply (rule dist_real_def)
51531
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1153
apply (rule open_real_def)
36795
e05e1283c550 new construction of real numbers using Cauchy sequences
huffman
parents: 36409
diff changeset
  1154
apply (simp add: sgn_real_def)
31564
d2abf6f6f619 subsection for real instances; new lemmas for open sets of reals
huffman
parents: 31494
diff changeset
  1155
apply (rule abs_eq_0)
d2abf6f6f619 subsection for real instances; new lemmas for open sets of reals
huffman
parents: 31494
diff changeset
  1156
apply (rule abs_triangle_ineq)
d2abf6f6f619 subsection for real instances; new lemmas for open sets of reals
huffman
parents: 31494
diff changeset
  1157
apply (rule abs_mult)
d2abf6f6f619 subsection for real instances; new lemmas for open sets of reals
huffman
parents: 31494
diff changeset
  1158
apply (rule abs_mult)
d2abf6f6f619 subsection for real instances; new lemmas for open sets of reals
huffman
parents: 31494
diff changeset
  1159
done
d2abf6f6f619 subsection for real instances; new lemmas for open sets of reals
huffman
parents: 31494
diff changeset
  1160
d2abf6f6f619 subsection for real instances; new lemmas for open sets of reals
huffman
parents: 31494
diff changeset
  1161
end
d2abf6f6f619 subsection for real instances; new lemmas for open sets of reals
huffman
parents: 31494
diff changeset
  1162
60800
7d04351c795a New material for Cauchy's integral theorem
paulson <lp15@cam.ac.uk>
parents: 60762
diff changeset
  1163
lemma dist_of_real [simp]:
7d04351c795a New material for Cauchy's integral theorem
paulson <lp15@cam.ac.uk>
parents: 60762
diff changeset
  1164
  fixes a :: "'a::real_normed_div_algebra"
7d04351c795a New material for Cauchy's integral theorem
paulson <lp15@cam.ac.uk>
parents: 60762
diff changeset
  1165
  shows "dist (of_real x :: 'a) (of_real y) = dist x y"
7d04351c795a New material for Cauchy's integral theorem
paulson <lp15@cam.ac.uk>
parents: 60762
diff changeset
  1166
by (metis dist_norm norm_of_real of_real_diff real_norm_def)
7d04351c795a New material for Cauchy's integral theorem
paulson <lp15@cam.ac.uk>
parents: 60762
diff changeset
  1167
54890
cb892d835803 fundamental treatment of undefined vs. universally partial replaces code_abort
haftmann
parents: 54863
diff changeset
  1168
declare [[code abort: "open :: real set \<Rightarrow> bool"]]
52381
63eec9cea2c7 pragmatic executability for instance real :: open
haftmann
parents: 51775
diff changeset
  1169
51531
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1170
instance real :: linorder_topology
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1171
proof
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1172
  show "(open :: real set \<Rightarrow> bool) = generate_topology (range lessThan \<union> range greaterThan)"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1173
  proof (rule ext, safe)
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1174
    fix S :: "real set" assume "open S"
53381
355a4cac5440 tuned proofs -- less guessing;
wenzelm
parents: 53374
diff changeset
  1175
    then obtain f where "\<forall>x\<in>S. 0 < f x \<and> (\<forall>y. dist y x < f x \<longrightarrow> y \<in> S)"
355a4cac5440 tuned proofs -- less guessing;
wenzelm
parents: 53374
diff changeset
  1176
      unfolding open_real_def bchoice_iff ..
51531
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1177
    then have *: "S = (\<Union>x\<in>S. {x - f x <..} \<inter> {..< x + f x})"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1178
      by (fastforce simp: dist_real_def)
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1179
    show "generate_topology (range lessThan \<union> range greaterThan) S"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1180
      apply (subst *)
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1181
      apply (intro generate_topology_Union generate_topology.Int)
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1182
      apply (auto intro: generate_topology.Basis)
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1183
      done
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1184
  next
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1185
    fix S :: "real set" assume "generate_topology (range lessThan \<union> range greaterThan) S"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1186
    moreover have "\<And>a::real. open {..<a}"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1187
      unfolding open_real_def dist_real_def
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1188
    proof clarify
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1189
      fix x a :: real assume "x < a"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1190
      hence "0 < a - x \<and> (\<forall>y. \<bar>y - x\<bar> < a - x \<longrightarrow> y \<in> {..<a})" by auto
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1191
      thus "\<exists>e>0. \<forall>y. \<bar>y - x\<bar> < e \<longrightarrow> y \<in> {..<a}" ..
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1192
    qed
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1193
    moreover have "\<And>a::real. open {a <..}"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1194
      unfolding open_real_def dist_real_def
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1195
    proof clarify
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1196
      fix x a :: real assume "a < x"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1197
      hence "0 < x - a \<and> (\<forall>y. \<bar>y - x\<bar> < x - a \<longrightarrow> y \<in> {a<..})" by auto
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1198
      thus "\<exists>e>0. \<forall>y. \<bar>y - x\<bar> < e \<longrightarrow> y \<in> {a<..}" ..
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1199
    qed
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1200
    ultimately show "open S"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1201
      by induct auto
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1202
  qed
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1203
qed
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1204
51775
408d937c9486 revert #916271d52466; add non-topological linear_continuum type class; show linear_continuum_topology is a perfect_space
hoelzl
parents: 51774
diff changeset
  1205
instance real :: linear_continuum_topology ..
51518
6a56b7088a6a separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents: 51481
diff changeset
  1206
51531
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1207
lemmas open_real_greaterThan = open_greaterThan[where 'a=real]
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1208
lemmas open_real_lessThan = open_lessThan[where 'a=real]
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1209
lemmas open_real_greaterThanLessThan = open_greaterThanLessThan[where 'a=real]
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1210
lemmas closed_real_atMost = closed_atMost[where 'a=real]
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1211
lemmas closed_real_atLeast = closed_atLeast[where 'a=real]
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1212
lemmas closed_real_atLeastAtMost = closed_atLeastAtMost[where 'a=real]
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1213
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60307
diff changeset
  1214
subsection \<open>Extra type constraints\<close>
31446
2d91b2416de8 add extra type constraints for dist, norm
huffman
parents: 31419
diff changeset
  1215
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60307
diff changeset
  1216
text \<open>Only allow @{term "open"} in class @{text topological_space}.\<close>
31492
5400beeddb55 replace 'topo' with 'open'; add extra type constraint for 'open'
huffman
parents: 31490
diff changeset
  1217
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60307
diff changeset
  1218
setup \<open>Sign.add_const_constraint
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60307
diff changeset
  1219
  (@{const_name "open"}, SOME @{typ "'a::topological_space set \<Rightarrow> bool"})\<close>
31492
5400beeddb55 replace 'topo' with 'open'; add extra type constraint for 'open'
huffman
parents: 31490
diff changeset
  1220
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60307
diff changeset
  1221
text \<open>Only allow @{term dist} in class @{text metric_space}.\<close>
31446
2d91b2416de8 add extra type constraints for dist, norm
huffman
parents: 31419
diff changeset
  1222
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60307
diff changeset
  1223
setup \<open>Sign.add_const_constraint
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60307
diff changeset
  1224
  (@{const_name dist}, SOME @{typ "'a::metric_space \<Rightarrow> 'a \<Rightarrow> real"})\<close>
31446
2d91b2416de8 add extra type constraints for dist, norm
huffman
parents: 31419
diff changeset
  1225
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60307
diff changeset
  1226
text \<open>Only allow @{term norm} in class @{text real_normed_vector}.\<close>
31446
2d91b2416de8 add extra type constraints for dist, norm
huffman
parents: 31419
diff changeset
  1227
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60307
diff changeset
  1228
setup \<open>Sign.add_const_constraint
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60307
diff changeset
  1229
  (@{const_name norm}, SOME @{typ "'a::real_normed_vector \<Rightarrow> real"})\<close>
31446
2d91b2416de8 add extra type constraints for dist, norm
huffman
parents: 31419
diff changeset
  1230
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60307
diff changeset
  1231
subsection \<open>Sign function\<close>
22972
3e96b98d37c6 generalized sgn function to work on any real normed vector space
huffman
parents: 22942
diff changeset
  1232
24506
020db6ec334a final(?) iteration of sgn saga.
nipkow
parents: 23282
diff changeset
  1233
lemma norm_sgn:
020db6ec334a final(?) iteration of sgn saga.
nipkow
parents: 23282
diff changeset
  1234
  "norm (sgn(x::'a::real_normed_vector)) = (if x = 0 then 0 else 1)"
31586
d4707b99e631 declare norm_scaleR [simp]; declare scaleR_cancel lemmas [simp]
huffman
parents: 31567
diff changeset
  1235
by (simp add: sgn_div_norm)
22972
3e96b98d37c6 generalized sgn function to work on any real normed vector space
huffman
parents: 22942
diff changeset
  1236
24506
020db6ec334a final(?) iteration of sgn saga.
nipkow
parents: 23282
diff changeset
  1237
lemma sgn_zero [simp]: "sgn(0::'a::real_normed_vector) = 0"
020db6ec334a final(?) iteration of sgn saga.
nipkow
parents: 23282
diff changeset
  1238
by (simp add: sgn_div_norm)
22972
3e96b98d37c6 generalized sgn function to work on any real normed vector space
huffman
parents: 22942
diff changeset
  1239
24506
020db6ec334a final(?) iteration of sgn saga.
nipkow
parents: 23282
diff changeset
  1240
lemma sgn_zero_iff: "(sgn(x::'a::real_normed_vector) = 0) = (x = 0)"
020db6ec334a final(?) iteration of sgn saga.
nipkow
parents: 23282
diff changeset
  1241
by (simp add: sgn_div_norm)
22972
3e96b98d37c6 generalized sgn function to work on any real normed vector space
huffman
parents: 22942
diff changeset
  1242
24506
020db6ec334a final(?) iteration of sgn saga.
nipkow
parents: 23282
diff changeset
  1243
lemma sgn_minus: "sgn (- x) = - sgn(x::'a::real_normed_vector)"
020db6ec334a final(?) iteration of sgn saga.
nipkow
parents: 23282
diff changeset
  1244
by (simp add: sgn_div_norm)
22972
3e96b98d37c6 generalized sgn function to work on any real normed vector space
huffman
parents: 22942
diff changeset
  1245
24506
020db6ec334a final(?) iteration of sgn saga.
nipkow
parents: 23282
diff changeset
  1246
lemma sgn_scaleR:
020db6ec334a final(?) iteration of sgn saga.
nipkow
parents: 23282
diff changeset
  1247
  "sgn (scaleR r x) = scaleR (sgn r) (sgn(x::'a::real_normed_vector))"
57514
bdc2c6b40bf2 prefer ac_simps collections over separate name bindings for add and mult
haftmann
parents: 57512
diff changeset
  1248
by (simp add: sgn_div_norm ac_simps)
22973
64d300e16370 add lemma sgn_mult; declare real_scaleR_def and scaleR_eq_0_iff as simp rules
huffman
parents: 22972
diff changeset
  1249
22972
3e96b98d37c6 generalized sgn function to work on any real normed vector space
huffman
parents: 22942
diff changeset
  1250
lemma sgn_one [simp]: "sgn (1::'a::real_normed_algebra_1) = 1"
24506
020db6ec334a final(?) iteration of sgn saga.
nipkow
parents: 23282
diff changeset
  1251
by (simp add: sgn_div_norm)
22972
3e96b98d37c6 generalized sgn function to work on any real normed vector space
huffman
parents: 22942
diff changeset
  1252
3e96b98d37c6 generalized sgn function to work on any real normed vector space
huffman
parents: 22942
diff changeset
  1253
lemma sgn_of_real:
3e96b98d37c6 generalized sgn function to work on any real normed vector space
huffman
parents: 22942
diff changeset
  1254
  "sgn (of_real r::'a::real_normed_algebra_1) = of_real (sgn r)"
3e96b98d37c6 generalized sgn function to work on any real normed vector space
huffman
parents: 22942
diff changeset
  1255
unfolding of_real_def by (simp only: sgn_scaleR sgn_one)
3e96b98d37c6 generalized sgn function to work on any real normed vector space
huffman
parents: 22942
diff changeset
  1256
22973
64d300e16370 add lemma sgn_mult; declare real_scaleR_def and scaleR_eq_0_iff as simp rules
huffman
parents: 22972
diff changeset
  1257
lemma sgn_mult:
64d300e16370 add lemma sgn_mult; declare real_scaleR_def and scaleR_eq_0_iff as simp rules
huffman
parents: 22972
diff changeset
  1258
  fixes x y :: "'a::real_normed_div_algebra"
64d300e16370 add lemma sgn_mult; declare real_scaleR_def and scaleR_eq_0_iff as simp rules
huffman
parents: 22972
diff changeset
  1259
  shows "sgn (x * y) = sgn x * sgn y"
57512
cc97b347b301 reduced name variants for assoc and commute on plus and mult
haftmann
parents: 57448
diff changeset
  1260
by (simp add: sgn_div_norm norm_mult mult.commute)
22973
64d300e16370 add lemma sgn_mult; declare real_scaleR_def and scaleR_eq_0_iff as simp rules
huffman
parents: 22972
diff changeset
  1261
22972
3e96b98d37c6 generalized sgn function to work on any real normed vector space
huffman
parents: 22942
diff changeset
  1262
lemma real_sgn_eq: "sgn (x::real) = x / \<bar>x\<bar>"
24506
020db6ec334a final(?) iteration of sgn saga.
nipkow
parents: 23282
diff changeset
  1263
by (simp add: sgn_div_norm divide_inverse)
22972
3e96b98d37c6 generalized sgn function to work on any real normed vector space
huffman
parents: 22942
diff changeset
  1264
3e96b98d37c6 generalized sgn function to work on any real normed vector space
huffman
parents: 22942
diff changeset
  1265
lemma real_sgn_pos: "0 < (x::real) \<Longrightarrow> sgn x = 1"
56479
91958d4b30f7 revert c1bbd3e22226, a14831ac3023, and 36489d77c484: divide_minus_left/right are again simp rules
hoelzl
parents: 56409
diff changeset
  1266
unfolding real_sgn_eq by simp
22972
3e96b98d37c6 generalized sgn function to work on any real normed vector space
huffman
parents: 22942
diff changeset
  1267
3e96b98d37c6 generalized sgn function to work on any real normed vector space
huffman
parents: 22942
diff changeset
  1268
lemma real_sgn_neg: "(x::real) < 0 \<Longrightarrow> sgn x = -1"
56479
91958d4b30f7 revert c1bbd3e22226, a14831ac3023, and 36489d77c484: divide_minus_left/right are again simp rules
hoelzl
parents: 56409
diff changeset
  1269
unfolding real_sgn_eq by simp
22972
3e96b98d37c6 generalized sgn function to work on any real normed vector space
huffman
parents: 22942
diff changeset
  1270
56889
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56479
diff changeset
  1271
lemma zero_le_sgn_iff [simp]: "0 \<le> sgn x \<longleftrightarrow> 0 \<le> (x::real)"
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56479
diff changeset
  1272
  by (cases "0::real" x rule: linorder_cases) simp_all
60026
41d81b4a0a21 Restored LIMSEQ_def as legacy binding. [The other changes are whitespace only.]
paulson <lp15@cam.ac.uk>
parents: 60017
diff changeset
  1273
56889
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56479
diff changeset
  1274
lemma zero_less_sgn_iff [simp]: "0 < sgn x \<longleftrightarrow> 0 < (x::real)"
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56479
diff changeset
  1275
  by (cases "0::real" x rule: linorder_cases) simp_all
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56479
diff changeset
  1276
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56479
diff changeset
  1277
lemma sgn_le_0_iff [simp]: "sgn x \<le> 0 \<longleftrightarrow> (x::real) \<le> 0"
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56479
diff changeset
  1278
  by (cases "0::real" x rule: linorder_cases) simp_all
60026
41d81b4a0a21 Restored LIMSEQ_def as legacy binding. [The other changes are whitespace only.]
paulson <lp15@cam.ac.uk>
parents: 60017
diff changeset
  1279
56889
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56479
diff changeset
  1280
lemma sgn_less_0_iff [simp]: "sgn x < 0 \<longleftrightarrow> (x::real) < 0"
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56479
diff changeset
  1281
  by (cases "0::real" x rule: linorder_cases) simp_all
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56479
diff changeset
  1282
51474
1e9e68247ad1 generalize Bfun and Bseq to metric spaces; Bseq is an abbreviation for Bfun
hoelzl
parents: 51472
diff changeset
  1283
lemma norm_conv_dist: "norm x = dist x 0"
1e9e68247ad1 generalize Bfun and Bseq to metric spaces; Bseq is an abbreviation for Bfun
hoelzl
parents: 51472
diff changeset
  1284
  unfolding dist_norm by simp
22972
3e96b98d37c6 generalized sgn function to work on any real normed vector space
huffman
parents: 22942
diff changeset
  1285
60307
75e1aa7a450e Convex hulls: theorems about interior, etc. And a few simple lemmas.
paulson <lp15@cam.ac.uk>
parents: 60303
diff changeset
  1286
lemma dist_diff [simp]: "dist a (a - b) = norm b"  "dist (a - b) a = norm b"
75e1aa7a450e Convex hulls: theorems about interior, etc. And a few simple lemmas.
paulson <lp15@cam.ac.uk>
parents: 60303
diff changeset
  1287
  by (simp_all add: dist_norm)
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 61531
diff changeset
  1288
61524
f2e51e704a96 added many small lemmas about setsum/setprod/powr/...
eberlm
parents: 61169
diff changeset
  1289
lemma dist_of_int: "dist (of_int m) (of_int n :: 'a :: real_normed_algebra_1) = of_int \<bar>m - n\<bar>"
f2e51e704a96 added many small lemmas about setsum/setprod/powr/...
eberlm
parents: 61169
diff changeset
  1290
proof -
f2e51e704a96 added many small lemmas about setsum/setprod/powr/...
eberlm
parents: 61169
diff changeset
  1291
  have "dist (of_int m) (of_int n :: 'a) = dist (of_int m :: 'a) (of_int m - (of_int (m - n)))"
f2e51e704a96 added many small lemmas about setsum/setprod/powr/...
eberlm
parents: 61169
diff changeset
  1292
    by simp
f2e51e704a96 added many small lemmas about setsum/setprod/powr/...
eberlm
parents: 61169
diff changeset
  1293
  also have "\<dots> = of_int \<bar>m - n\<bar>" by (subst dist_diff, subst norm_of_int) simp
f2e51e704a96 added many small lemmas about setsum/setprod/powr/...
eberlm
parents: 61169
diff changeset
  1294
  finally show ?thesis .
f2e51e704a96 added many small lemmas about setsum/setprod/powr/...
eberlm
parents: 61169
diff changeset
  1295
qed
f2e51e704a96 added many small lemmas about setsum/setprod/powr/...
eberlm
parents: 61169
diff changeset
  1296
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 61531
diff changeset
  1297
lemma dist_of_nat:
61524
f2e51e704a96 added many small lemmas about setsum/setprod/powr/...
eberlm
parents: 61169
diff changeset
  1298
  "dist (of_nat m) (of_nat n :: 'a :: real_normed_algebra_1) = of_int \<bar>int m - int n\<bar>"
f2e51e704a96 added many small lemmas about setsum/setprod/powr/...
eberlm
parents: 61169
diff changeset
  1299
  by (subst (1 2) of_int_of_nat_eq [symmetric]) (rule dist_of_int)
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 61531
diff changeset
  1300
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60307
diff changeset
  1301
subsection \<open>Bounded Linear and Bilinear Operators\<close>
22442
15d9ed9b5051 move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents: 21809
diff changeset
  1302
53600
8fda7ad57466 make 'linear' into a sublocale of 'bounded_linear';
huffman
parents: 53381
diff changeset
  1303
locale linear = additive f for f :: "'a::real_vector \<Rightarrow> 'b::real_vector" +
22442
15d9ed9b5051 move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents: 21809
diff changeset
  1304
  assumes scaleR: "f (scaleR r x) = scaleR r (f x)"
53600
8fda7ad57466 make 'linear' into a sublocale of 'bounded_linear';
huffman
parents: 53381
diff changeset
  1305
60800
7d04351c795a New material for Cauchy's integral theorem
paulson <lp15@cam.ac.uk>
parents: 60762
diff changeset
  1306
lemma linear_imp_scaleR:
7d04351c795a New material for Cauchy's integral theorem
paulson <lp15@cam.ac.uk>
parents: 60762
diff changeset
  1307
  assumes "linear D" obtains d where "D = (\<lambda>x. x *\<^sub>R d)"
7d04351c795a New material for Cauchy's integral theorem
paulson <lp15@cam.ac.uk>
parents: 60762
diff changeset
  1308
  by (metis assms linear.scaleR mult.commute mult.left_neutral real_scaleR_def)
7d04351c795a New material for Cauchy's integral theorem
paulson <lp15@cam.ac.uk>
parents: 60762
diff changeset
  1309
53600
8fda7ad57466 make 'linear' into a sublocale of 'bounded_linear';
huffman
parents: 53381
diff changeset
  1310
lemma linearI:
8fda7ad57466 make 'linear' into a sublocale of 'bounded_linear';
huffman
parents: 53381
diff changeset
  1311
  assumes "\<And>x y. f (x + y) = f x + f y"
8fda7ad57466 make 'linear' into a sublocale of 'bounded_linear';
huffman
parents: 53381
diff changeset
  1312
  assumes "\<And>c x. f (c *\<^sub>R x) = c *\<^sub>R f x"
8fda7ad57466 make 'linear' into a sublocale of 'bounded_linear';
huffman
parents: 53381
diff changeset
  1313
  shows "linear f"
61169
4de9ff3ea29a tuned proofs -- less legacy;
wenzelm
parents: 61070
diff changeset
  1314
  by standard (rule assms)+
53600
8fda7ad57466 make 'linear' into a sublocale of 'bounded_linear';
huffman
parents: 53381
diff changeset
  1315
8fda7ad57466 make 'linear' into a sublocale of 'bounded_linear';
huffman
parents: 53381
diff changeset
  1316
locale bounded_linear = linear f for f :: "'a::real_normed_vector \<Rightarrow> 'b::real_normed_vector" +
22442
15d9ed9b5051 move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents: 21809
diff changeset
  1317
  assumes bounded: "\<exists>K. \<forall>x. norm (f x) \<le> norm x * K"
27443
22b6281d6719 use begin and end for proofs in locales
huffman
parents: 27435
diff changeset
  1318
begin
22442
15d9ed9b5051 move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents: 21809
diff changeset
  1319
27443
22b6281d6719 use begin and end for proofs in locales
huffman
parents: 27435
diff changeset
  1320
lemma pos_bounded:
22442
15d9ed9b5051 move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents: 21809
diff changeset
  1321
  "\<exists>K>0. \<forall>x. norm (f x) \<le> norm x * K"
15d9ed9b5051 move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents: 21809
diff changeset
  1322
proof -
15d9ed9b5051 move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents: 21809
diff changeset
  1323
  obtain K where K: "\<And>x. norm (f x) \<le> norm x * K"
15d9ed9b5051 move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents: 21809
diff changeset
  1324
    using bounded by fast
15d9ed9b5051 move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents: 21809
diff changeset
  1325
  show ?thesis
15d9ed9b5051 move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents: 21809
diff changeset
  1326
  proof (intro exI impI conjI allI)
15d9ed9b5051 move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents: 21809
diff changeset
  1327
    show "0 < max 1 K"
54863
82acc20ded73 prefer more canonical names for lemmas on min/max
haftmann
parents: 54785
diff changeset
  1328
      by (rule order_less_le_trans [OF zero_less_one max.cobounded1])
22442
15d9ed9b5051 move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents: 21809
diff changeset
  1329
  next
15d9ed9b5051 move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents: 21809
diff changeset
  1330
    fix x
15d9ed9b5051 move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents: 21809
diff changeset
  1331
    have "norm (f x) \<le> norm x * K" using K .
15d9ed9b5051 move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents: 21809
diff changeset
  1332
    also have "\<dots> \<le> norm x * max 1 K"
54863
82acc20ded73 prefer more canonical names for lemmas on min/max
haftmann
parents: 54785
diff changeset
  1333
      by (rule mult_left_mono [OF max.cobounded2 norm_ge_zero])
22442
15d9ed9b5051 move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents: 21809
diff changeset
  1334
    finally show "norm (f x) \<le> norm x * max 1 K" .
15d9ed9b5051 move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents: 21809
diff changeset
  1335
  qed
15d9ed9b5051 move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents: 21809
diff changeset
  1336
qed
15d9ed9b5051 move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents: 21809
diff changeset
  1337
27443
22b6281d6719 use begin and end for proofs in locales
huffman
parents: 27435
diff changeset
  1338
lemma nonneg_bounded:
22442
15d9ed9b5051 move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents: 21809
diff changeset
  1339
  "\<exists>K\<ge>0. \<forall>x. norm (f x) \<le> norm x * K"
15d9ed9b5051 move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents: 21809
diff changeset
  1340
proof -
15d9ed9b5051 move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents: 21809
diff changeset
  1341
  from pos_bounded
15d9ed9b5051 move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents: 21809
diff changeset
  1342
  show ?thesis by (auto intro: order_less_imp_le)
15d9ed9b5051 move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents: 21809
diff changeset
  1343
qed
15d9ed9b5051 move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents: 21809
diff changeset
  1344
56369
2704ca85be98 moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents: 56194
diff changeset
  1345
lemma linear: "linear f" ..
2704ca85be98 moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents: 56194
diff changeset
  1346
27443
22b6281d6719 use begin and end for proofs in locales
huffman
parents: 27435
diff changeset
  1347
end
22b6281d6719 use begin and end for proofs in locales
huffman
parents: 27435
diff changeset
  1348
44127
7b57b9295d98 lemma bounded_linear_intro
huffman
parents: 41969
diff changeset
  1349
lemma bounded_linear_intro:
7b57b9295d98 lemma bounded_linear_intro
huffman
parents: 41969
diff changeset
  1350
  assumes "\<And>x y. f (x + y) = f x + f y"
7b57b9295d98 lemma bounded_linear_intro
huffman
parents: 41969
diff changeset
  1351
  assumes "\<And>r x. f (scaleR r x) = scaleR r (f x)"
7b57b9295d98 lemma bounded_linear_intro
huffman
parents: 41969
diff changeset
  1352
  assumes "\<And>x. norm (f x) \<le> norm x * K"
7b57b9295d98 lemma bounded_linear_intro
huffman
parents: 41969
diff changeset
  1353
  shows "bounded_linear f"
61169
4de9ff3ea29a tuned proofs -- less legacy;
wenzelm
parents: 61070
diff changeset
  1354
  by standard (fast intro: assms)+
44127
7b57b9295d98 lemma bounded_linear_intro
huffman
parents: 41969
diff changeset
  1355
22442
15d9ed9b5051 move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents: 21809
diff changeset
  1356
locale bounded_bilinear =
15d9ed9b5051 move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents: 21809
diff changeset
  1357
  fixes prod :: "['a::real_normed_vector, 'b::real_normed_vector]
15d9ed9b5051 move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents: 21809
diff changeset
  1358
                 \<Rightarrow> 'c::real_normed_vector"
15d9ed9b5051 move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents: 21809
diff changeset
  1359
    (infixl "**" 70)
15d9ed9b5051 move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents: 21809
diff changeset
  1360
  assumes add_left: "prod (a + a') b = prod a b + prod a' b"
15d9ed9b5051 move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents: 21809
diff changeset
  1361
  assumes add_right: "prod a (b + b') = prod a b + prod a b'"
15d9ed9b5051 move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents: 21809
diff changeset
  1362
  assumes scaleR_left: "prod (scaleR r a) b = scaleR r (prod a b)"
15d9ed9b5051 move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents: 21809
diff changeset
  1363
  assumes scaleR_right: "prod a (scaleR r b) = scaleR r (prod a b)"
15d9ed9b5051 move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents: 21809
diff changeset
  1364
  assumes bounded: "\<exists>K. \<forall>a b. norm (prod a b) \<le> norm a * norm b * K"
27443
22b6281d6719 use begin and end for proofs in locales
huffman
parents: 27435
diff changeset
  1365
begin
22442
15d9ed9b5051 move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents: 21809
diff changeset
  1366
27443
22b6281d6719 use begin and end for proofs in locales
huffman
parents: 27435
diff changeset
  1367
lemma pos_bounded:
22442
15d9ed9b5051 move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents: 21809
diff changeset
  1368
  "\<exists>K>0. \<forall>a b. norm (a ** b) \<le> norm a * norm b * K"
15d9ed9b5051 move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents: 21809
diff changeset
  1369
apply (cut_tac bounded, erule exE)
15d9ed9b5051 move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents: 21809
diff changeset
  1370
apply (rule_tac x="max 1 K" in exI, safe)
54863
82acc20ded73 prefer more canonical names for lemmas on min/max
haftmann
parents: 54785
diff changeset
  1371
apply (rule order_less_le_trans [OF zero_less_one max.cobounded1])
22442
15d9ed9b5051 move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents: 21809
diff changeset
  1372
apply (drule spec, drule spec, erule order_trans)
54863
82acc20ded73 prefer more canonical names for lemmas on min/max
haftmann
parents: 54785
diff changeset
  1373
apply (rule mult_left_mono [OF max.cobounded2])
22442
15d9ed9b5051 move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents: 21809
diff changeset
  1374
apply (intro mult_nonneg_nonneg norm_ge_zero)
15d9ed9b5051 move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents: 21809
diff changeset
  1375
done
15d9ed9b5051 move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents: 21809
diff changeset
  1376
27443
22b6281d6719 use begin and end for proofs in locales
huffman
parents: 27435
diff changeset
  1377
lemma nonneg_bounded:
22442
15d9ed9b5051 move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents: 21809
diff changeset
  1378
  "\<exists>K\<ge>0. \<forall>a b. norm (a ** b) \<le> norm a * norm b * K"
15d9ed9b5051 move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents: 21809
diff changeset
  1379
proof -
15d9ed9b5051 move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents: 21809
diff changeset
  1380
  from pos_bounded
15d9ed9b5051 move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents: 21809
diff changeset
  1381
  show ?thesis by (auto intro: order_less_imp_le)
15d9ed9b5051 move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents: 21809
diff changeset
  1382
qed
15d9ed9b5051 move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents: 21809
diff changeset
  1383
27443
22b6281d6719 use begin and end for proofs in locales
huffman
parents: 27435
diff changeset
  1384
lemma additive_right: "additive (\<lambda>b. prod a b)"
22442
15d9ed9b5051 move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents: 21809
diff changeset
  1385
by (rule additive.intro, rule add_right)
15d9ed9b5051 move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents: 21809
diff changeset
  1386
27443
22b6281d6719 use begin and end for proofs in locales
huffman
parents: 27435
diff changeset
  1387
lemma additive_left: "additive (\<lambda>a. prod a b)"
22442
15d9ed9b5051 move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents: 21809
diff changeset
  1388
by (rule additive.intro, rule add_left)
15d9ed9b5051 move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents: 21809
diff changeset
  1389
27443
22b6281d6719 use begin and end for proofs in locales
huffman
parents: 27435
diff changeset
  1390
lemma zero_left: "prod 0 b = 0"
22442
15d9ed9b5051 move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents: 21809
diff changeset
  1391
by (rule additive.zero [OF additive_left])
15d9ed9b5051 move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents: 21809
diff changeset
  1392
27443
22b6281d6719 use begin and end for proofs in locales
huffman
parents: 27435
diff changeset
  1393
lemma zero_right: "prod a 0 = 0"
22442
15d9ed9b5051 move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents: 21809
diff changeset
  1394
by (rule additive.zero [OF additive_right])
15d9ed9b5051 move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents: 21809
diff changeset
  1395
27443
22b6281d6719 use begin and end for proofs in locales
huffman
parents: 27435
diff changeset
  1396
lemma minus_left: "prod (- a) b = - prod a b"
22442
15d9ed9b5051 move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents: 21809
diff changeset
  1397
by (rule additive.minus [OF additive_left])
15d9ed9b5051 move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents: 21809
diff changeset
  1398
27443
22b6281d6719 use begin and end for proofs in locales
huffman
parents: 27435
diff changeset
  1399
lemma minus_right: "prod a (- b) = - prod a b"
22442
15d9ed9b5051 move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents: 21809
diff changeset
  1400
by (rule additive.minus [OF additive_right])
15d9ed9b5051 move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents: 21809
diff changeset
  1401
27443
22b6281d6719 use begin and end for proofs in locales
huffman
parents: 27435
diff changeset
  1402
lemma diff_left:
22442
15d9ed9b5051 move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents: 21809
diff changeset
  1403
  "prod (a - a') b = prod a b - prod a' b"
15d9ed9b5051 move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents: 21809
diff changeset
  1404
by (rule additive.diff [OF additive_left])
15d9ed9b5051 move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents: 21809
diff changeset
  1405
27443
22b6281d6719 use begin and end for proofs in locales
huffman
parents: 27435
diff changeset
  1406
lemma diff_right:
22442
15d9ed9b5051 move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents: 21809
diff changeset
  1407
  "prod a (b - b') = prod a b - prod a b'"
15d9ed9b5051 move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents: 21809
diff changeset
  1408
by (rule additive.diff [OF additive_right])
15d9ed9b5051 move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents: 21809
diff changeset
  1409
27443
22b6281d6719 use begin and end for proofs in locales
huffman
parents: 27435
diff changeset
  1410
lemma bounded_linear_left:
22442
15d9ed9b5051 move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents: 21809
diff changeset
  1411
  "bounded_linear (\<lambda>a. a ** b)"
44127
7b57b9295d98 lemma bounded_linear_intro
huffman
parents: 41969
diff changeset
  1412
apply (cut_tac bounded, safe)
7b57b9295d98 lemma bounded_linear_intro
huffman
parents: 41969
diff changeset
  1413
apply (rule_tac K="norm b * K" in bounded_linear_intro)
22442
15d9ed9b5051 move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents: 21809
diff changeset
  1414
apply (rule add_left)
15d9ed9b5051 move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents: 21809
diff changeset
  1415
apply (rule scaleR_left)
57514
bdc2c6b40bf2 prefer ac_simps collections over separate name bindings for add and mult
haftmann
parents: 57512
diff changeset
  1416
apply (simp add: ac_simps)
22442
15d9ed9b5051 move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents: 21809
diff changeset
  1417
done
15d9ed9b5051 move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents: 21809
diff changeset
  1418
27443
22b6281d6719 use begin and end for proofs in locales
huffman
parents: 27435
diff changeset
  1419
lemma bounded_linear_right:
22442
15d9ed9b5051 move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents: 21809
diff changeset
  1420
  "bounded_linear (\<lambda>b. a ** b)"
44127
7b57b9295d98 lemma bounded_linear_intro
huffman
parents: 41969
diff changeset
  1421
apply (cut_tac bounded, safe)
7b57b9295d98 lemma bounded_linear_intro
huffman
parents: 41969
diff changeset
  1422
apply (rule_tac K="norm a * K" in bounded_linear_intro)
22442
15d9ed9b5051 move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents: 21809
diff changeset
  1423
apply (rule add_right)
15d9ed9b5051 move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents: 21809
diff changeset
  1424
apply (rule scaleR_right)
57514
bdc2c6b40bf2 prefer ac_simps collections over separate name bindings for add and mult
haftmann
parents: 57512
diff changeset
  1425
apply (simp add: ac_simps)
22442
15d9ed9b5051 move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents: 21809
diff changeset
  1426
done
15d9ed9b5051 move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents: 21809
diff changeset
  1427
27443
22b6281d6719 use begin and end for proofs in locales
huffman
parents: 27435
diff changeset
  1428
lemma prod_diff_prod:
22442
15d9ed9b5051 move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents: 21809
diff changeset
  1429
  "(x ** y - a ** b) = (x - a) ** (y - b) + (x - a) ** b + a ** (y - b)"
15d9ed9b5051 move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents: 21809
diff changeset
  1430
by (simp add: diff_left diff_right)
15d9ed9b5051 move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents: 21809
diff changeset
  1431
27443
22b6281d6719 use begin and end for proofs in locales
huffman
parents: 27435
diff changeset
  1432
end
22b6281d6719 use begin and end for proofs in locales
huffman
parents: 27435
diff changeset
  1433
51642
400ec5ae7f8f move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents: 51641
diff changeset
  1434
lemma bounded_linear_ident[simp]: "bounded_linear (\<lambda>x. x)"
61169
4de9ff3ea29a tuned proofs -- less legacy;
wenzelm
parents: 61070
diff changeset
  1435
  by standard (auto intro!: exI[of _ 1])
51642
400ec5ae7f8f move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents: 51641
diff changeset
  1436
400ec5ae7f8f move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents: 51641
diff changeset
  1437
lemma bounded_linear_zero[simp]: "bounded_linear (\<lambda>x. 0)"
61169
4de9ff3ea29a tuned proofs -- less legacy;
wenzelm
parents: 61070
diff changeset
  1438
  by standard (auto intro!: exI[of _ 1])
51642
400ec5ae7f8f move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents: 51641
diff changeset
  1439
400ec5ae7f8f move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents: 51641
diff changeset
  1440
lemma bounded_linear_add:
400ec5ae7f8f move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents: 51641
diff changeset
  1441
  assumes "bounded_linear f"
400ec5ae7f8f move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents: 51641
diff changeset
  1442
  assumes "bounded_linear g"
400ec5ae7f8f move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents: 51641
diff changeset
  1443
  shows "bounded_linear (\<lambda>x. f x + g x)"
400ec5ae7f8f move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents: 51641
diff changeset
  1444
proof -
400ec5ae7f8f move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents: 51641
diff changeset
  1445
  interpret f: bounded_linear f by fact
400ec5ae7f8f move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents: 51641
diff changeset
  1446
  interpret g: bounded_linear g by fact
400ec5ae7f8f move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents: 51641
diff changeset
  1447
  show ?thesis
400ec5ae7f8f move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents: 51641
diff changeset
  1448
  proof
400ec5ae7f8f move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents: 51641
diff changeset
  1449
    from f.bounded obtain Kf where Kf: "\<And>x. norm (f x) \<le> norm x * Kf" by blast
400ec5ae7f8f move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents: 51641
diff changeset
  1450
    from g.bounded obtain Kg where Kg: "\<And>x. norm (g x) \<le> norm x * Kg" by blast
400ec5ae7f8f move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents: 51641
diff changeset
  1451
    show "\<exists>K. \<forall>x. norm (f x + g x) \<le> norm x * K"
400ec5ae7f8f move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents: 51641
diff changeset
  1452
      using add_mono[OF Kf Kg]
400ec5ae7f8f move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents: 51641
diff changeset
  1453
      by (intro exI[of _ "Kf + Kg"]) (auto simp: field_simps intro: norm_triangle_ineq order_trans)
400ec5ae7f8f move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents: 51641
diff changeset
  1454
  qed (simp_all add: f.add g.add f.scaleR g.scaleR scaleR_right_distrib)
400ec5ae7f8f move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents: 51641
diff changeset
  1455
qed
400ec5ae7f8f move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents: 51641
diff changeset
  1456
400ec5ae7f8f move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents: 51641
diff changeset
  1457
lemma bounded_linear_minus:
400ec5ae7f8f move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents: 51641
diff changeset
  1458
  assumes "bounded_linear f"
400ec5ae7f8f move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents: 51641
diff changeset
  1459
  shows "bounded_linear (\<lambda>x. - f x)"
400ec5ae7f8f move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents: 51641
diff changeset
  1460
proof -
400ec5ae7f8f move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents: 51641
diff changeset
  1461
  interpret f: bounded_linear f by fact
400ec5ae7f8f move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents: 51641
diff changeset
  1462
  show ?thesis apply (unfold_locales)
400ec5ae7f8f move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents: 51641
diff changeset
  1463
    apply (simp add: f.add)
400ec5ae7f8f move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents: 51641
diff changeset
  1464
    apply (simp add: f.scaleR)
400ec5ae7f8f move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents: 51641
diff changeset
  1465
    apply (simp add: f.bounded)
400ec5ae7f8f move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents: 51641
diff changeset
  1466
    done
400ec5ae7f8f move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents: 51641
diff changeset
  1467
qed
400ec5ae7f8f move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents: 51641
diff changeset
  1468
400ec5ae7f8f move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents: 51641
diff changeset
  1469
lemma bounded_linear_compose:
400ec5ae7f8f move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents: 51641
diff changeset
  1470
  assumes "bounded_linear f"
400ec5ae7f8f move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents: 51641
diff changeset
  1471
  assumes "bounded_linear g"
400ec5ae7f8f move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents: 51641
diff changeset
  1472
  shows "bounded_linear (\<lambda>x. f (g x))"
400ec5ae7f8f move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents: 51641
diff changeset
  1473
proof -
400ec5ae7f8f move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents: 51641
diff changeset
  1474
  interpret f: bounded_linear f by fact
400ec5ae7f8f move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents: 51641
diff changeset
  1475
  interpret g: bounded_linear g by fact
400ec5ae7f8f move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents: 51641
diff changeset
  1476
  show ?thesis proof (unfold_locales)
400ec5ae7f8f move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents: 51641
diff changeset
  1477
    fix x y show "f (g (x + y)) = f (g x) + f (g y)"
400ec5ae7f8f move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents: 51641
diff changeset
  1478
      by (simp only: f.add g.add)
400ec5ae7f8f move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents: 51641
diff changeset
  1479
  next
400ec5ae7f8f move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents: 51641
diff changeset
  1480
    fix r x show "f (g (scaleR r x)) = scaleR r (f (g x))"
400ec5ae7f8f move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents: 51641
diff changeset
  1481
      by (simp only: f.scaleR g.scaleR)
400ec5ae7f8f move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents: 51641
diff changeset
  1482
  next
400ec5ae7f8f move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents: 51641
diff changeset
  1483
    from f.pos_bounded
400ec5ae7f8f move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents: 51641
diff changeset
  1484
    obtain Kf where f: "\<And>x. norm (f x) \<le> norm x * Kf" and Kf: "0 < Kf" by fast
400ec5ae7f8f move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents: 51641
diff changeset
  1485
    from g.pos_bounded
400ec5ae7f8f move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents: 51641
diff changeset
  1486
    obtain Kg where g: "\<And>x. norm (g x) \<le> norm x * Kg" by fast
400ec5ae7f8f move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents: 51641
diff changeset
  1487
    show "\<exists>K. \<forall>x. norm (f (g x)) \<le> norm x * K"
400ec5ae7f8f move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents: 51641
diff changeset
  1488
    proof (intro exI allI)
400ec5ae7f8f move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents: 51641
diff changeset
  1489
      fix x
400ec5ae7f8f move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents: 51641
diff changeset
  1490
      have "norm (f (g x)) \<le> norm (g x) * Kf"
400ec5ae7f8f move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents: 51641
diff changeset
  1491
        using f .
400ec5ae7f8f move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents: 51641
diff changeset
  1492
      also have "\<dots> \<le> (norm x * Kg) * Kf"
400ec5ae7f8f move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents: 51641
diff changeset
  1493
        using g Kf [THEN order_less_imp_le] by (rule mult_right_mono)
400ec5ae7f8f move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents: 51641
diff changeset
  1494
      also have "(norm x * Kg) * Kf = norm x * (Kg * Kf)"
57512
cc97b347b301 reduced name variants for assoc and commute on plus and mult
haftmann
parents: 57448
diff changeset
  1495
        by (rule mult.assoc)
51642
400ec5ae7f8f move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents: 51641
diff changeset
  1496
      finally show "norm (f (g x)) \<le> norm x * (Kg * Kf)" .
400ec5ae7f8f move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents: 51641
diff changeset
  1497
    qed
400ec5ae7f8f move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents: 51641
diff changeset
  1498
  qed
400ec5ae7f8f move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents: 51641
diff changeset
  1499
qed
400ec5ae7f8f move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents: 51641
diff changeset
  1500
44282
f0de18b62d63 remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents: 44127
diff changeset
  1501
lemma bounded_bilinear_mult:
f0de18b62d63 remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents: 44127
diff changeset
  1502
  "bounded_bilinear (op * :: 'a \<Rightarrow> 'a \<Rightarrow> 'a::real_normed_algebra)"
22442
15d9ed9b5051 move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents: 21809
diff changeset
  1503
apply (rule bounded_bilinear.intro)
49962
a8cc904a6820 Renamed {left,right}_distrib to distrib_{right,left}.
webertj
parents: 47108
diff changeset
  1504
apply (rule distrib_right)
a8cc904a6820 Renamed {left,right}_distrib to distrib_{right,left}.
webertj
parents: 47108
diff changeset
  1505
apply (rule distrib_left)
22442
15d9ed9b5051 move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents: 21809
diff changeset
  1506
apply (rule mult_scaleR_left)
15d9ed9b5051 move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents: 21809
diff changeset
  1507
apply (rule mult_scaleR_right)
15d9ed9b5051 move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents: 21809
diff changeset
  1508
apply (rule_tac x="1" in exI)
15d9ed9b5051 move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents: 21809
diff changeset
  1509
apply (simp add: norm_mult_ineq)
15d9ed9b5051 move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents: 21809
diff changeset
  1510
done
15d9ed9b5051 move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents: 21809
diff changeset
  1511
44282
f0de18b62d63 remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents: 44127
diff changeset
  1512
lemma bounded_linear_mult_left:
f0de18b62d63 remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents: 44127
diff changeset
  1513
  "bounded_linear (\<lambda>x::'a::real_normed_algebra. x * y)"
f0de18b62d63 remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents: 44127
diff changeset
  1514
  using bounded_bilinear_mult
f0de18b62d63 remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents: 44127
diff changeset
  1515
  by (rule bounded_bilinear.bounded_linear_left)
22442
15d9ed9b5051 move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents: 21809
diff changeset
  1516
44282
f0de18b62d63 remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents: 44127
diff changeset
  1517
lemma bounded_linear_mult_right:
f0de18b62d63 remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents: 44127
diff changeset
  1518
  "bounded_linear (\<lambda>y::'a::real_normed_algebra. x * y)"
f0de18b62d63 remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents: 44127
diff changeset
  1519
  using bounded_bilinear_mult
f0de18b62d63 remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents: 44127
diff changeset
  1520
  by (rule bounded_bilinear.bounded_linear_right)
23127
56ee8105c002 simplify names of locale interpretations
huffman
parents: 23120
diff changeset
  1521
51642
400ec5ae7f8f move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents: 51641
diff changeset
  1522
lemmas bounded_linear_mult_const =
400ec5ae7f8f move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents: 51641
diff changeset
  1523
  bounded_linear_mult_left [THEN bounded_linear_compose]
400ec5ae7f8f move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents: 51641
diff changeset
  1524
400ec5ae7f8f move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents: 51641
diff changeset
  1525
lemmas bounded_linear_const_mult =
400ec5ae7f8f move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents: 51641
diff changeset
  1526
  bounded_linear_mult_right [THEN bounded_linear_compose]
400ec5ae7f8f move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents: 51641
diff changeset
  1527
44282
f0de18b62d63 remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents: 44127
diff changeset
  1528
lemma bounded_linear_divide:
f0de18b62d63 remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents: 44127
diff changeset
  1529
  "bounded_linear (\<lambda>x::'a::real_normed_field. x / y)"
f0de18b62d63 remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents: 44127
diff changeset
  1530
  unfolding divide_inverse by (rule bounded_linear_mult_left)
23120
a34f204e9c88 interpretation bounded_linear_divide
huffman
parents: 23113
diff changeset
  1531
44282
f0de18b62d63 remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents: 44127
diff changeset
  1532
lemma bounded_bilinear_scaleR: "bounded_bilinear scaleR"
22442
15d9ed9b5051 move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents: 21809
diff changeset
  1533
apply (rule bounded_bilinear.intro)
15d9ed9b5051 move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents: 21809
diff changeset
  1534
apply (rule scaleR_left_distrib)
15d9ed9b5051 move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents: 21809
diff changeset
  1535
apply (rule scaleR_right_distrib)
22973
64d300e16370 add lemma sgn_mult; declare real_scaleR_def and scaleR_eq_0_iff as simp rules
huffman
parents: 22972
diff changeset
  1536
apply simp
22442
15d9ed9b5051 move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents: 21809
diff changeset
  1537
apply (rule scaleR_left_commute)
31586
d4707b99e631 declare norm_scaleR [simp]; declare scaleR_cancel lemmas [simp]
huffman
parents: 31567
diff changeset
  1538
apply (rule_tac x="1" in exI, simp)
22442
15d9ed9b5051 move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents: 21809
diff changeset
  1539
done
15d9ed9b5051 move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents: 21809
diff changeset
  1540
44282
f0de18b62d63 remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents: 44127
diff changeset
  1541
lemma bounded_linear_scaleR_left: "bounded_linear (\<lambda>r. scaleR r x)"
f0de18b62d63 remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents: 44127
diff changeset
  1542
  using bounded_bilinear_scaleR
f0de18b62d63 remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents: 44127
diff changeset
  1543
  by (rule bounded_bilinear.bounded_linear_left)
23127
56ee8105c002 simplify names of locale interpretations
huffman
parents: 23120
diff changeset
  1544
44282
f0de18b62d63 remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents: 44127
diff changeset
  1545
lemma bounded_linear_scaleR_right: "bounded_linear (\<lambda>x. scaleR r x)"
f0de18b62d63 remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents: 44127
diff changeset
  1546
  using bounded_bilinear_scaleR
f0de18b62d63 remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents: 44127
diff changeset
  1547
  by (rule bounded_bilinear.bounded_linear_right)
23127
56ee8105c002 simplify names of locale interpretations
huffman
parents: 23120
diff changeset
  1548
44282
f0de18b62d63 remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents: 44127
diff changeset
  1549
lemma bounded_linear_of_real: "bounded_linear (\<lambda>r. of_real r)"
f0de18b62d63 remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents: 44127
diff changeset
  1550
  unfolding of_real_def by (rule bounded_linear_scaleR_left)
22625
a2967023d674 interpretation bounded_linear_of_real
huffman
parents: 22442
diff changeset
  1551
51642
400ec5ae7f8f move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents: 51641
diff changeset
  1552
lemma real_bounded_linear:
400ec5ae7f8f move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents: 51641
diff changeset
  1553
  fixes f :: "real \<Rightarrow> real"
400ec5ae7f8f move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents: 51641
diff changeset
  1554
  shows "bounded_linear f \<longleftrightarrow> (\<exists>c::real. f = (\<lambda>x. x * c))"
400ec5ae7f8f move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents: 51641
diff changeset
  1555
proof -
400ec5ae7f8f move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents: 51641
diff changeset
  1556
  { fix x assume "bounded_linear f"
400ec5ae7f8f move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents: 51641
diff changeset
  1557
    then interpret bounded_linear f .
400ec5ae7f8f move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents: 51641
diff changeset
  1558
    from scaleR[of x 1] have "f x = x * f 1"
400ec5ae7f8f move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents: 51641
diff changeset
  1559
      by simp }
400ec5ae7f8f move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents: 51641
diff changeset
  1560
  then show ?thesis
400ec5ae7f8f move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents: 51641
diff changeset
  1561
    by (auto intro: exI[of _ "f 1"] bounded_linear_mult_left)
400ec5ae7f8f move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents: 51641
diff changeset
  1562
qed
400ec5ae7f8f move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents: 51641
diff changeset
  1563
60800
7d04351c795a New material for Cauchy's integral theorem
paulson <lp15@cam.ac.uk>
parents: 60762
diff changeset
  1564
lemma bij_linear_imp_inv_linear:
7d04351c795a New material for Cauchy's integral theorem
paulson <lp15@cam.ac.uk>
parents: 60762
diff changeset
  1565
  assumes "linear f" "bij f" shows "linear (inv f)"
7d04351c795a New material for Cauchy's integral theorem
paulson <lp15@cam.ac.uk>
parents: 60762
diff changeset
  1566
  using assms unfolding linear_def linear_axioms_def additive_def
7d04351c795a New material for Cauchy's integral theorem
paulson <lp15@cam.ac.uk>
parents: 60762
diff changeset
  1567
  by (auto simp: bij_is_surj bij_is_inj surj_f_inv_f intro!:  Hilbert_Choice.inv_f_eq)
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 61531
diff changeset
  1568
44571
bd91b77c4cd6 move class perfect_space into RealVector.thy;
huffman
parents: 44282
diff changeset
  1569
instance real_normed_algebra_1 \<subseteq> perfect_space
bd91b77c4cd6 move class perfect_space into RealVector.thy;
huffman
parents: 44282
diff changeset
  1570
proof
bd91b77c4cd6 move class perfect_space into RealVector.thy;
huffman
parents: 44282
diff changeset
  1571
  fix x::'a
bd91b77c4cd6 move class perfect_space into RealVector.thy;
huffman
parents: 44282
diff changeset
  1572
  show "\<not> open {x}"
bd91b77c4cd6 move class perfect_space into RealVector.thy;
huffman
parents: 44282
diff changeset
  1573
    unfolding open_dist dist_norm
bd91b77c4cd6 move class perfect_space into RealVector.thy;
huffman
parents: 44282
diff changeset
  1574
    by (clarsimp, rule_tac x="x + of_real (e/2)" in exI, simp)
bd91b77c4cd6 move class perfect_space into RealVector.thy;
huffman
parents: 44282
diff changeset
  1575
qed
bd91b77c4cd6 move class perfect_space into RealVector.thy;
huffman
parents: 44282
diff changeset
  1576
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60307
diff changeset
  1577
subsection \<open>Filters and Limits on Metric Space\<close>
51531
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1578
57448
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57418
diff changeset
  1579
lemma (in metric_space) nhds_metric: "nhds x = (INF e:{0 <..}. principal {y. dist y x < e})"
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57418
diff changeset
  1580
  unfolding nhds_def
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57418
diff changeset
  1581
proof (safe intro!: INF_eq)
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57418
diff changeset
  1582
  fix S assume "open S" "x \<in> S"
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57418
diff changeset
  1583
  then obtain e where "{y. dist y x < e} \<subseteq> S" "0 < e"
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57418
diff changeset
  1584
    by (auto simp: open_dist subset_eq)
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57418
diff changeset
  1585
  then show "\<exists>e\<in>{0<..}. principal {y. dist y x < e} \<le> principal S"
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57418
diff changeset
  1586
    by auto
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57418
diff changeset
  1587
qed (auto intro!: exI[of _ "{y. dist x y < e}" for e] open_ball simp: dist_commute)
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57418
diff changeset
  1588
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57418
diff changeset
  1589
lemma (in metric_space) tendsto_iff:
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57418
diff changeset
  1590
  "(f ---> l) F \<longleftrightarrow> (\<forall>e>0. eventually (\<lambda>x. dist (f x) l < e) F)"
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57418
diff changeset
  1591
  unfolding nhds_metric filterlim_INF filterlim_principal by auto
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57418
diff changeset
  1592
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57418
diff changeset
  1593
lemma (in metric_space) tendstoI: "(\<And>e. 0 < e \<Longrightarrow> eventually (\<lambda>x. dist (f x) l < e) F) \<Longrightarrow> (f ---> l) F"
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57418
diff changeset
  1594
  by (auto simp: tendsto_iff)
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57418
diff changeset
  1595
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57418
diff changeset
  1596
lemma (in metric_space) tendstoD: "(f ---> l) F \<Longrightarrow> 0 < e \<Longrightarrow> eventually (\<lambda>x. dist (f x) l < e) F"
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57418
diff changeset
  1597
  by (auto simp: tendsto_iff)
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57418
diff changeset
  1598
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57418
diff changeset
  1599
lemma (in metric_space) eventually_nhds_metric:
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57418
diff changeset
  1600
  "eventually P (nhds a) \<longleftrightarrow> (\<exists>d>0. \<forall>x. dist x a < d \<longrightarrow> P x)"
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57418
diff changeset
  1601
  unfolding nhds_metric
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57418
diff changeset
  1602
  by (subst eventually_INF_base)
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57418
diff changeset
  1603
     (auto simp: eventually_principal Bex_def subset_eq intro: exI[of _ "min a b" for a b])
51531
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1604
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1605
lemma eventually_at:
51641
cd05e9fcc63d remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents: 51531
diff changeset
  1606
  fixes a :: "'a :: metric_space"
cd05e9fcc63d remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents: 51531
diff changeset
  1607
  shows "eventually P (at a within S) \<longleftrightarrow> (\<exists>d>0. \<forall>x\<in>S. x \<noteq> a \<and> dist x a < d \<longrightarrow> P x)"
cd05e9fcc63d remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents: 51531
diff changeset
  1608
  unfolding eventually_at_filter eventually_nhds_metric by (auto simp: dist_nz)
51531
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1609
51641
cd05e9fcc63d remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents: 51531
diff changeset
  1610
lemma eventually_at_le:
cd05e9fcc63d remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents: 51531
diff changeset
  1611
  fixes a :: "'a::metric_space"
cd05e9fcc63d remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents: 51531
diff changeset
  1612
  shows "eventually P (at a within S) \<longleftrightarrow> (\<exists>d>0. \<forall>x\<in>S. x \<noteq> a \<and> dist x a \<le> d \<longrightarrow> P x)"
cd05e9fcc63d remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents: 51531
diff changeset
  1613
  unfolding eventually_at_filter eventually_nhds_metric
cd05e9fcc63d remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents: 51531
diff changeset
  1614
  apply auto
cd05e9fcc63d remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents: 51531
diff changeset
  1615
  apply (rule_tac x="d / 2" in exI)
cd05e9fcc63d remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents: 51531
diff changeset
  1616
  apply auto
cd05e9fcc63d remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents: 51531
diff changeset
  1617
  done
51531
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1618
61531
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61524
diff changeset
  1619
lemma eventually_at_left_real: "a > (b :: real) \<Longrightarrow> eventually (\<lambda>x. x \<in> {b<..<a}) (at_left a)"
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61524
diff changeset
  1620
  by (subst eventually_at, rule exI[of _ "a - b"]) (force simp: dist_real_def)
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61524
diff changeset
  1621
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61524
diff changeset
  1622
lemma eventually_at_right_real: "a < (b :: real) \<Longrightarrow> eventually (\<lambda>x. x \<in> {a<..<b}) (at_right a)"
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61524
diff changeset
  1623
  by (subst eventually_at, rule exI[of _ "b - a"]) (force simp: dist_real_def)
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61524
diff changeset
  1624
51531
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1625
lemma metric_tendsto_imp_tendsto:
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1626
  fixes a :: "'a :: metric_space" and b :: "'b :: metric_space"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1627
  assumes f: "(f ---> a) F"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1628
  assumes le: "eventually (\<lambda>x. dist (g x) b \<le> dist (f x) a) F"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1629
  shows "(g ---> b) F"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1630
proof (rule tendstoI)
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1631
  fix e :: real assume "0 < e"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1632
  with f have "eventually (\<lambda>x. dist (f x) a < e) F" by (rule tendstoD)
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1633
  with le show "eventually (\<lambda>x. dist (g x) b < e) F"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1634
    using le_less_trans by (rule eventually_elim2)
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1635
qed
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1636
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1637
lemma filterlim_real_sequentially: "LIM x sequentially. real x :> at_top"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1638
  unfolding filterlim_at_top
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1639
  apply (intro allI)
59587
8ea7b22525cb Removed the obsolete functions "natfloor" and "natceiling"
nipkow
parents: 58889
diff changeset
  1640
  apply (rule_tac c="nat(ceiling (Z + 1))" in eventually_sequentiallyI)
8ea7b22525cb Removed the obsolete functions "natfloor" and "natceiling"
nipkow
parents: 58889
diff changeset
  1641
  by linarith
51531
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1642
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60307
diff changeset
  1643
subsubsection \<open>Limits of Sequences\<close>
51531
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1644
60017
b785d6d06430 Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
paulson <lp15@cam.ac.uk>
parents: 59867
diff changeset
  1645
lemma lim_sequentially: "X ----> (L::'a::metric_space) \<longleftrightarrow> (\<forall>r>0. \<exists>no. \<forall>n\<ge>no. dist (X n) L < r)"
51531
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1646
  unfolding tendsto_iff eventually_sequentially ..
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1647
60026
41d81b4a0a21 Restored LIMSEQ_def as legacy binding. [The other changes are whitespace only.]
paulson <lp15@cam.ac.uk>
parents: 60017
diff changeset
  1648
lemmas LIMSEQ_def = lim_sequentially  (*legacy binding*)
41d81b4a0a21 Restored LIMSEQ_def as legacy binding. [The other changes are whitespace only.]
paulson <lp15@cam.ac.uk>
parents: 60017
diff changeset
  1649
51531
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1650
lemma LIMSEQ_iff_nz: "X ----> (L::'a::metric_space) = (\<forall>r>0. \<exists>no>0. \<forall>n\<ge>no. dist (X n) L < r)"
60017
b785d6d06430 Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
paulson <lp15@cam.ac.uk>
parents: 59867
diff changeset
  1651
  unfolding lim_sequentially by (metis Suc_leD zero_less_Suc)
51531
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1652
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1653
lemma metric_LIMSEQ_I:
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1654
  "(\<And>r. 0 < r \<Longrightarrow> \<exists>no. \<forall>n\<ge>no. dist (X n) L < r) \<Longrightarrow> X ----> (L::'a::metric_space)"
60017
b785d6d06430 Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
paulson <lp15@cam.ac.uk>
parents: 59867
diff changeset
  1655
by (simp add: lim_sequentially)
51531
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1656
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1657
lemma metric_LIMSEQ_D:
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1658
  "\<lbrakk>X ----> (L::'a::metric_space); 0 < r\<rbrakk> \<Longrightarrow> \<exists>no. \<forall>n\<ge>no. dist (X n) L < r"
60017
b785d6d06430 Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
paulson <lp15@cam.ac.uk>
parents: 59867
diff changeset
  1659
by (simp add: lim_sequentially)
51531
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1660
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1661
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60307
diff changeset
  1662
subsubsection \<open>Limits of Functions\<close>
51531
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1663
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1664
lemma LIM_def: "f -- (a::'a::metric_space) --> (L::'b::metric_space) =
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1665
     (\<forall>r > 0. \<exists>s > 0. \<forall>x. x \<noteq> a & dist x a < s
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1666
        --> dist (f x) L < r)"
51641
cd05e9fcc63d remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents: 51531
diff changeset
  1667
  unfolding tendsto_iff eventually_at by simp
51531
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1668
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1669
lemma metric_LIM_I:
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1670
  "(\<And>r. 0 < r \<Longrightarrow> \<exists>s>0. \<forall>x. x \<noteq> a \<and> dist x a < s \<longrightarrow> dist (f x) L < r)
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1671
    \<Longrightarrow> f -- (a::'a::metric_space) --> (L::'b::metric_space)"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1672
by (simp add: LIM_def)
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1673
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1674
lemma metric_LIM_D:
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1675
  "\<lbrakk>f -- (a::'a::metric_space) --> (L::'b::metric_space); 0 < r\<rbrakk>
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1676
    \<Longrightarrow> \<exists>s>0. \<forall>x. x \<noteq> a \<and> dist x a < s \<longrightarrow> dist (f x) L < r"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1677
by (simp add: LIM_def)
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1678
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1679
lemma metric_LIM_imp_LIM:
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1680
  assumes f: "f -- a --> (l::'a::metric_space)"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1681
  assumes le: "\<And>x. x \<noteq> a \<Longrightarrow> dist (g x) m \<le> dist (f x) l"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1682
  shows "g -- a --> (m::'b::metric_space)"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1683
  by (rule metric_tendsto_imp_tendsto [OF f]) (auto simp add: eventually_at_topological le)
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1684
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1685
lemma metric_LIM_equal2:
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1686
  assumes 1: "0 < R"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1687
  assumes 2: "\<And>x. \<lbrakk>x \<noteq> a; dist x a < R\<rbrakk> \<Longrightarrow> f x = g x"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1688
  shows "g -- a --> l \<Longrightarrow> f -- (a::'a::metric_space) --> l"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1689
apply (rule topological_tendstoI)
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1690
apply (drule (2) topological_tendstoD)
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1691
apply (simp add: eventually_at, safe)
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1692
apply (rule_tac x="min d R" in exI, safe)
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1693
apply (simp add: 1)
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1694
apply (simp add: 2)
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1695
done
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1696
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1697
lemma metric_LIM_compose2:
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1698
  assumes f: "f -- (a::'a::metric_space) --> b"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1699
  assumes g: "g -- b --> c"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1700
  assumes inj: "\<exists>d>0. \<forall>x. x \<noteq> a \<and> dist x a < d \<longrightarrow> f x \<noteq> b"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1701
  shows "(\<lambda>x. g (f x)) -- a --> c"
51641
cd05e9fcc63d remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents: 51531
diff changeset
  1702
  using inj
cd05e9fcc63d remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents: 51531
diff changeset
  1703
  by (intro tendsto_compose_eventually[OF g f]) (auto simp: eventually_at)
51531
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1704
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1705
lemma metric_isCont_LIM_compose2:
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1706
  fixes f :: "'a :: metric_space \<Rightarrow> _"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1707
  assumes f [unfolded isCont_def]: "isCont f a"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1708
  assumes g: "g -- f a --> l"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1709
  assumes inj: "\<exists>d>0. \<forall>x. x \<noteq> a \<and> dist x a < d \<longrightarrow> f x \<noteq> f a"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1710
  shows "(\<lambda>x. g (f x)) -- a --> l"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1711
by (rule metric_LIM_compose2 [OF f g inj])
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1712
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60307
diff changeset
  1713
subsection \<open>Complete metric spaces\<close>
51531
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1714
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60307
diff changeset
  1715
subsection \<open>Cauchy sequences\<close>
51531
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1716
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1717
definition (in metric_space) Cauchy :: "(nat \<Rightarrow> 'a) \<Rightarrow> bool" where
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1718
  "Cauchy X = (\<forall>e>0. \<exists>M. \<forall>m \<ge> M. \<forall>n \<ge> M. dist (X m) (X n) < e)"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1719
61531
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61524
diff changeset
  1720
lemma Cauchy_altdef:
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61524
diff changeset
  1721
  "Cauchy f = (\<forall>e>0. \<exists>M. \<forall>m\<ge>M. \<forall>n>m. dist (f m) (f n) < e)"
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61524
diff changeset
  1722
proof
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61524
diff changeset
  1723
  assume A: "\<forall>e>0. \<exists>M. \<forall>m\<ge>M. \<forall>n>m. dist (f m) (f n) < e"
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61524
diff changeset
  1724
  show "Cauchy f" unfolding Cauchy_def
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61524
diff changeset
  1725
  proof (intro allI impI)
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61524
diff changeset
  1726
    fix e :: real assume e: "e > 0"
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61524
diff changeset
  1727
    with A obtain M where M: "\<And>m n. m \<ge> M \<Longrightarrow> n > m \<Longrightarrow> dist (f m) (f n) < e" by blast
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61524
diff changeset
  1728
    have "dist (f m) (f n) < e" if "m \<ge> M" "n \<ge> M" for m n
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61524
diff changeset
  1729
      using M[of m n] M[of n m] e that by (cases m n rule: linorder_cases) (auto simp: dist_commute)
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61524
diff changeset
  1730
    thus "\<exists>M. \<forall>m\<ge>M. \<forall>n\<ge>M. dist (f m) (f n) < e" by blast
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61524
diff changeset
  1731
  qed
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61524
diff changeset
  1732
next
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61524
diff changeset
  1733
  assume "Cauchy f"
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 61531
diff changeset
  1734
  show "\<forall>e>0. \<exists>M. \<forall>m\<ge>M. \<forall>n>m. dist (f m) (f n) < e"
61531
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61524
diff changeset
  1735
  proof (intro allI impI)
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61524
diff changeset
  1736
    fix e :: real assume e: "e > 0"
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61524
diff changeset
  1737
    with `Cauchy f` obtain M where "\<And>m n. m \<ge> M \<Longrightarrow> n \<ge> M \<Longrightarrow> dist (f m) (f n) < e"
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61524
diff changeset
  1738
      unfolding Cauchy_def by fast
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61524
diff changeset
  1739
    thus "\<exists>M. \<forall>m\<ge>M. \<forall>n>m. dist (f m) (f n) < e" by (intro exI[of _ M]) force
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61524
diff changeset
  1740
  qed
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61524
diff changeset
  1741
qed
51531
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1742
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1743
lemma metric_CauchyI:
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1744
  "(\<And>e. 0 < e \<Longrightarrow> \<exists>M. \<forall>m\<ge>M. \<forall>n\<ge>M. dist (X m) (X n) < e) \<Longrightarrow> Cauchy X"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1745
  by (simp add: Cauchy_def)
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1746
61531
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61524
diff changeset
  1747
lemma CauchyI': "(\<And>e. 0 < e \<Longrightarrow> \<exists>M. \<forall>m\<ge>M. \<forall>n>m. dist (X m) (X n) < e) \<Longrightarrow> Cauchy X"
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61524
diff changeset
  1748
  unfolding Cauchy_altdef by blast
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61524
diff changeset
  1749
51531
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1750
lemma metric_CauchyD:
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1751
  "Cauchy X \<Longrightarrow> 0 < e \<Longrightarrow> \<exists>M. \<forall>m\<ge>M. \<forall>n\<ge>M. dist (X m) (X n) < e"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1752
  by (simp add: Cauchy_def)
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1753
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1754
lemma metric_Cauchy_iff2:
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1755
  "Cauchy X = (\<forall>j. (\<exists>M. \<forall>m \<ge> M. \<forall>n \<ge> M. dist (X m) (X n) < inverse(real (Suc j))))"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1756
apply (simp add: Cauchy_def, auto)
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1757
apply (drule reals_Archimedean, safe)
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1758
apply (drule_tac x = n in spec, auto)
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1759
apply (rule_tac x = M in exI, auto)
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1760
apply (drule_tac x = m in spec, simp)
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1761
apply (drule_tac x = na in spec, auto)
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1762
done
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1763
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1764
lemma Cauchy_iff2:
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1765
  "Cauchy X = (\<forall>j. (\<exists>M. \<forall>m \<ge> M. \<forall>n \<ge> M. \<bar>X m - X n\<bar> < inverse(real (Suc j))))"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1766
  unfolding metric_Cauchy_iff2 dist_real_def ..
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1767
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1768
lemma Cauchy_subseq_Cauchy:
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1769
  "\<lbrakk> Cauchy X; subseq f \<rbrakk> \<Longrightarrow> Cauchy (X o f)"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1770
apply (auto simp add: Cauchy_def)
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1771
apply (drule_tac x=e in spec, clarify)
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1772
apply (rule_tac x=M in exI, clarify)
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1773
apply (blast intro: le_trans [OF _ seq_suble] dest!: spec)
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1774
done
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1775
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1776
theorem LIMSEQ_imp_Cauchy:
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1777
  assumes X: "X ----> a" shows "Cauchy X"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1778
proof (rule metric_CauchyI)
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1779
  fix e::real assume "0 < e"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1780
  hence "0 < e/2" by simp
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1781
  with X have "\<exists>N. \<forall>n\<ge>N. dist (X n) a < e/2" by (rule metric_LIMSEQ_D)
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1782
  then obtain N where N: "\<forall>n\<ge>N. dist (X n) a < e/2" ..
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1783
  show "\<exists>N. \<forall>m\<ge>N. \<forall>n\<ge>N. dist (X m) (X n) < e"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1784
  proof (intro exI allI impI)
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1785
    fix m assume "N \<le> m"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1786
    hence m: "dist (X m) a < e/2" using N by fast
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1787
    fix n assume "N \<le> n"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1788
    hence n: "dist (X n) a < e/2" using N by fast
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1789
    have "dist (X m) (X n) \<le> dist (X m) a + dist (X n) a"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1790
      by (rule dist_triangle2)
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1791
    also from m n have "\<dots> < e" by simp
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1792
    finally show "dist (X m) (X n) < e" .
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1793
  qed
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1794
qed
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1795
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1796
lemma convergent_Cauchy: "convergent X \<Longrightarrow> Cauchy X"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1797
unfolding convergent_def
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1798
by (erule exE, erule LIMSEQ_imp_Cauchy)
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1799
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60307
diff changeset
  1800
subsubsection \<open>Cauchy Sequences are Convergent\<close>
51531
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1801
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1802
class complete_space = metric_space +
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1803
  assumes Cauchy_convergent: "Cauchy X \<Longrightarrow> convergent X"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1804
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1805
lemma Cauchy_convergent_iff:
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1806
  fixes X :: "nat \<Rightarrow> 'a::complete_space"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1807
  shows "Cauchy X = convergent X"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1808
by (fast intro: Cauchy_convergent convergent_Cauchy)
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1809
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60307
diff changeset
  1810
subsection \<open>The set of real numbers is a complete metric space\<close>
51531
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1811
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60307
diff changeset
  1812
text \<open>
51531
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1813
Proof that Cauchy sequences converge based on the one from
54703
499f92dc6e45 more antiquotations;
wenzelm
parents: 54489
diff changeset
  1814
@{url "http://pirate.shu.edu/~wachsmut/ira/numseq/proofs/cauconv.html"}
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60307
diff changeset
  1815
\<close>
51531
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1816
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60307
diff changeset
  1817
text \<open>
51531
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1818
  If sequence @{term "X"} is Cauchy, then its limit is the lub of
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1819
  @{term "{r::real. \<exists>N. \<forall>n\<ge>N. r < X n}"}
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60307
diff changeset
  1820
\<close>
51531
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1821
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1822
lemma increasing_LIMSEQ:
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1823
  fixes f :: "nat \<Rightarrow> real"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1824
  assumes inc: "\<And>n. f n \<le> f (Suc n)"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1825
      and bdd: "\<And>n. f n \<le> l"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1826
      and en: "\<And>e. 0 < e \<Longrightarrow> \<exists>n. l \<le> f n + e"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1827
  shows "f ----> l"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1828
proof (rule increasing_tendsto)
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1829
  fix x assume "x < l"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1830
  with dense[of 0 "l - x"] obtain e where "0 < e" "e < l - x"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1831
    by auto
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60307
diff changeset
  1832
  from en[OF \<open>0 < e\<close>] obtain n where "l - e \<le> f n"
51531
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1833
    by (auto simp: field_simps)
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60307
diff changeset
  1834
  with \<open>e < l - x\<close> \<open>0 < e\<close> have "x < f n" by simp
51531
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1835
  with incseq_SucI[of f, OF inc] show "eventually (\<lambda>n. x < f n) sequentially"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1836
    by (auto simp: eventually_sequentially incseq_def intro: less_le_trans)
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1837
qed (insert bdd, auto)
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1838
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1839
lemma real_Cauchy_convergent:
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1840
  fixes X :: "nat \<Rightarrow> real"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1841
  assumes X: "Cauchy X"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1842
  shows "convergent X"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1843
proof -
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1844
  def S \<equiv> "{x::real. \<exists>N. \<forall>n\<ge>N. x < X n}"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1845
  then have mem_S: "\<And>N x. \<forall>n\<ge>N. x < X n \<Longrightarrow> x \<in> S" by auto
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1846
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1847
  { fix N x assume N: "\<forall>n\<ge>N. X n < x"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1848
  fix y::real assume "y \<in> S"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1849
  hence "\<exists>M. \<forall>n\<ge>M. y < X n"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1850
    by (simp add: S_def)
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1851
  then obtain M where "\<forall>n\<ge>M. y < X n" ..
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1852
  hence "y < X (max M N)" by simp
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1853
  also have "\<dots> < x" using N by simp
54263
c4159fe6fa46 move Lubs from HOL to HOL-Library (replaced by conditionally complete lattices)
hoelzl
parents: 54230
diff changeset
  1854
  finally have "y \<le> x"
c4159fe6fa46 move Lubs from HOL to HOL-Library (replaced by conditionally complete lattices)
hoelzl
parents: 54230
diff changeset
  1855
    by (rule order_less_imp_le) }
60026
41d81b4a0a21 Restored LIMSEQ_def as legacy binding. [The other changes are whitespace only.]
paulson <lp15@cam.ac.uk>
parents: 60017
diff changeset
  1856
  note bound_isUb = this
51531
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1857
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1858
  obtain N where "\<forall>m\<ge>N. \<forall>n\<ge>N. dist (X m) (X n) < 1"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1859
    using X[THEN metric_CauchyD, OF zero_less_one] by auto
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1860
  hence N: "\<forall>n\<ge>N. dist (X n) (X N) < 1" by simp
54263
c4159fe6fa46 move Lubs from HOL to HOL-Library (replaced by conditionally complete lattices)
hoelzl
parents: 54230
diff changeset
  1861
  have [simp]: "S \<noteq> {}"
c4159fe6fa46 move Lubs from HOL to HOL-Library (replaced by conditionally complete lattices)
hoelzl
parents: 54230
diff changeset
  1862
  proof (intro exI ex_in_conv[THEN iffD1])
51531
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1863
    from N have "\<forall>n\<ge>N. X N - 1 < X n"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1864
      by (simp add: abs_diff_less_iff dist_real_def)
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1865
    thus "X N - 1 \<in> S" by (rule mem_S)
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1866
  qed
54263
c4159fe6fa46 move Lubs from HOL to HOL-Library (replaced by conditionally complete lattices)
hoelzl
parents: 54230
diff changeset
  1867
  have [simp]: "bdd_above S"
51531
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1868
  proof
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1869
    from N have "\<forall>n\<ge>N. X n < X N + 1"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1870
      by (simp add: abs_diff_less_iff dist_real_def)
54263
c4159fe6fa46 move Lubs from HOL to HOL-Library (replaced by conditionally complete lattices)
hoelzl
parents: 54230
diff changeset
  1871
    thus "\<And>s. s \<in> S \<Longrightarrow>  s \<le> X N + 1"
51531
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1872
      by (rule bound_isUb)
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1873
  qed
54263
c4159fe6fa46 move Lubs from HOL to HOL-Library (replaced by conditionally complete lattices)
hoelzl
parents: 54230
diff changeset
  1874
  have "X ----> Sup S"
51531
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1875
  proof (rule metric_LIMSEQ_I)
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1876
  fix r::real assume "0 < r"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1877
  hence r: "0 < r/2" by simp
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1878
  obtain N where "\<forall>n\<ge>N. \<forall>m\<ge>N. dist (X n) (X m) < r/2"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1879
    using metric_CauchyD [OF X r] by auto
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1880
  hence "\<forall>n\<ge>N. dist (X n) (X N) < r/2" by simp
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1881
  hence N: "\<forall>n\<ge>N. X N - r/2 < X n \<and> X n < X N + r/2"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1882
    by (simp only: dist_real_def abs_diff_less_iff)
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1883
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1884
  from N have "\<forall>n\<ge>N. X N - r/2 < X n" by fast
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1885
  hence "X N - r/2 \<in> S" by (rule mem_S)
54263
c4159fe6fa46 move Lubs from HOL to HOL-Library (replaced by conditionally complete lattices)
hoelzl
parents: 54230
diff changeset
  1886
  hence 1: "X N - r/2 \<le> Sup S" by (simp add: cSup_upper)
51531
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1887
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1888
  from N have "\<forall>n\<ge>N. X n < X N + r/2" by fast
54263
c4159fe6fa46 move Lubs from HOL to HOL-Library (replaced by conditionally complete lattices)
hoelzl
parents: 54230
diff changeset
  1889
  from bound_isUb[OF this]
c4159fe6fa46 move Lubs from HOL to HOL-Library (replaced by conditionally complete lattices)
hoelzl
parents: 54230
diff changeset
  1890
  have 2: "Sup S \<le> X N + r/2"
c4159fe6fa46 move Lubs from HOL to HOL-Library (replaced by conditionally complete lattices)
hoelzl
parents: 54230
diff changeset
  1891
    by (intro cSup_least) simp_all
51531
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1892
54263
c4159fe6fa46 move Lubs from HOL to HOL-Library (replaced by conditionally complete lattices)
hoelzl
parents: 54230
diff changeset
  1893
  show "\<exists>N. \<forall>n\<ge>N. dist (X n) (Sup S) < r"
51531
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1894
  proof (intro exI allI impI)
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1895
    fix n assume n: "N \<le> n"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1896
    from N n have "X n < X N + r/2" and "X N - r/2 < X n" by simp+
54263
c4159fe6fa46 move Lubs from HOL to HOL-Library (replaced by conditionally complete lattices)
hoelzl
parents: 54230
diff changeset
  1897
    thus "dist (X n) (Sup S) < r" using 1 2
51531
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1898
      by (simp add: abs_diff_less_iff dist_real_def)
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1899
  qed
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1900
  qed
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1901
  then show ?thesis unfolding convergent_def by auto
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1902
qed
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1903
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1904
instance real :: complete_space
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1905
  by intro_classes (rule real_Cauchy_convergent)
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1906
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1907
class banach = real_normed_vector + complete_space
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1908
61169
4de9ff3ea29a tuned proofs -- less legacy;
wenzelm
parents: 61070
diff changeset
  1909
instance real :: banach ..
51531
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1910
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1911
lemma tendsto_at_topI_sequentially:
57275
0ddb5b755cdc moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents: 56889
diff changeset
  1912
  fixes f :: "real \<Rightarrow> 'b::first_countable_topology"
0ddb5b755cdc moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents: 56889
diff changeset
  1913
  assumes *: "\<And>X. filterlim X at_top sequentially \<Longrightarrow> (\<lambda>n. f (X n)) ----> y"
0ddb5b755cdc moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents: 56889
diff changeset
  1914
  shows "(f ---> y) at_top"
57448
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57418
diff changeset
  1915
proof -
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57418
diff changeset
  1916
  from nhds_countable[of y] guess A . note A = this
57275
0ddb5b755cdc moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents: 56889
diff changeset
  1917
57448
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57418
diff changeset
  1918
  have "\<forall>m. \<exists>k. \<forall>x\<ge>k. f x \<in> A m"
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57418
diff changeset
  1919
  proof (rule ccontr)
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57418
diff changeset
  1920
    assume "\<not> (\<forall>m. \<exists>k. \<forall>x\<ge>k. f x \<in> A m)"
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57418
diff changeset
  1921
    then obtain m where "\<And>k. \<exists>x\<ge>k. f x \<notin> A m"
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57418
diff changeset
  1922
      by auto
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57418
diff changeset
  1923
    then have "\<exists>X. \<forall>n. (f (X n) \<notin> A m) \<and> max n (X n) + 1 \<le> X (Suc n)"
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57418
diff changeset
  1924
      by (intro dependent_nat_choice) (auto simp del: max.bounded_iff)
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57418
diff changeset
  1925
    then obtain X where X: "\<And>n. f (X n) \<notin> A m" "\<And>n. max n (X n) + 1 \<le> X (Suc n)"
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57418
diff changeset
  1926
      by auto
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57418
diff changeset
  1927
    { fix n have "1 \<le> n \<longrightarrow> real n \<le> X n"
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57418
diff changeset
  1928
        using X[of "n - 1"] by auto }
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57418
diff changeset
  1929
    then have "filterlim X at_top sequentially"
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57418
diff changeset
  1930
      by (force intro!: filterlim_at_top_mono[OF filterlim_real_sequentially]
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57418
diff changeset
  1931
                simp: eventually_sequentially)
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57418
diff changeset
  1932
    from topological_tendstoD[OF *[OF this] A(2, 3), of m] X(1) show False
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57418
diff changeset
  1933
      by auto
57275
0ddb5b755cdc moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents: 56889
diff changeset
  1934
  qed
57448
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57418
diff changeset
  1935
  then obtain k where "\<And>m x. k m \<le> x \<Longrightarrow> f x \<in> A m"
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57418
diff changeset
  1936
    by metis
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57418
diff changeset
  1937
  then show ?thesis
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57418
diff changeset
  1938
    unfolding at_top_def A
159e45728ceb more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents: 57418
diff changeset
  1939
    by (intro filterlim_base[where i=k]) auto
57275
0ddb5b755cdc moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents: 56889
diff changeset
  1940
qed
0ddb5b755cdc moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents: 56889
diff changeset
  1941
0ddb5b755cdc moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents: 56889
diff changeset
  1942
lemma tendsto_at_topI_sequentially_real:
51531
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1943
  fixes f :: "real \<Rightarrow> real"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1944
  assumes mono: "mono f"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1945
  assumes limseq: "(\<lambda>n. f (real n)) ----> y"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1946
  shows "(f ---> y) at_top"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1947
proof (rule tendstoI)
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1948
  fix e :: real assume "0 < e"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1949
  with limseq obtain N :: nat where N: "\<And>n. N \<le> n \<Longrightarrow> \<bar>f (real n) - y\<bar> < e"
60017
b785d6d06430 Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
paulson <lp15@cam.ac.uk>
parents: 59867
diff changeset
  1950
    by (auto simp: lim_sequentially dist_real_def)
51531
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1951
  { fix x :: real
53381
355a4cac5440 tuned proofs -- less guessing;
wenzelm
parents: 53374
diff changeset
  1952
    obtain n where "x \<le> real_of_nat n"
355a4cac5440 tuned proofs -- less guessing;
wenzelm
parents: 53374
diff changeset
  1953
      using ex_le_of_nat[of x] ..
51531
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1954
    note monoD[OF mono this]
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1955
    also have "f (real_of_nat n) \<le> y"
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 61531
diff changeset
  1956
      by (rule LIMSEQ_le_const[OF limseq]) (auto intro: exI[of _ n] monoD[OF mono])
51531
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1957
    finally have "f x \<le> y" . }
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1958
  note le = this
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1959
  have "eventually (\<lambda>x. real N \<le> x) at_top"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1960
    by (rule eventually_ge_at_top)
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1961
  then show "eventually (\<lambda>x. dist (f x) y < e) at_top"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1962
  proof eventually_elim
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1963
    fix x assume N': "real N \<le> x"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1964
    with N[of N] le have "y - f (real N) < e" by auto
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1965
    moreover note monoD[OF mono N']
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1966
    ultimately show "dist (f x) y < e"
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1967
      using le[of x] by (auto simp: dist_real_def field_simps)
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1968
  qed
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1969
qed
f415febf4234 remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents: 51524
diff changeset
  1970
20504
6342e872e71d formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff changeset
  1971
end
57276
49c51eeaa623 filters are easier to define with INF on filters.
hoelzl
parents: 57275
diff changeset
  1972