| author | wenzelm |
| Thu, 08 Nov 2007 14:51:28 +0100 | |
| changeset 25343 | 31c55418de5a |
| parent 25062 | af5ef0d4d655 |
| child 25571 | c9e39eafc7a0 |
| permissions | -rw-r--r-- |
|
20504
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
1 |
(* Title : RealVector.thy |
|
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
2 |
ID: $Id$ |
|
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
3 |
Author : Brian Huffman |
|
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 |
|
|
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
6 |
header {* Vector Spaces and Algebras over the Reals *}
|
|
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
7 |
|
|
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
8 |
theory RealVector |
| 20684 | 9 |
imports RealPow |
|
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 |
|
|
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
12 |
subsection {* Locale for additive functions *}
|
|
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" |
|
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
17 |
|
|
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
18 |
lemma (in additive) zero: "f 0 = 0" |
|
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
19 |
proof - |
|
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
20 |
have "f 0 = f (0 + 0)" by simp |
|
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
21 |
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
|
22 |
finally show "f 0 = 0" by simp |
|
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
23 |
qed |
|
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
24 |
|
|
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
25 |
lemma (in additive) minus: "f (- x) = - f x" |
|
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
26 |
proof - |
|
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
27 |
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
|
28 |
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
|
29 |
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
|
30 |
qed |
|
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
31 |
|
|
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
32 |
lemma (in additive) diff: "f (x - y) = f x - f y" |
|
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
33 |
by (simp add: diff_def add minus) |
|
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
34 |
|
| 22942 | 35 |
lemma (in additive) setsum: "f (setsum g A) = (\<Sum>x\<in>A. f (g x))" |
36 |
apply (cases "finite A") |
|
37 |
apply (induct set: finite) |
|
38 |
apply (simp add: zero) |
|
39 |
apply (simp add: add) |
|
40 |
apply (simp add: zero) |
|
41 |
done |
|
42 |
||
|
20504
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
43 |
|
|
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
44 |
subsection {* Real vector spaces *}
|
|
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
45 |
|
| 22636 | 46 |
class scaleR = type + |
| 25062 | 47 |
fixes scaleR :: "real \<Rightarrow> 'a \<Rightarrow> 'a" (infixr "*\<^sub>R" 75) |
| 24748 | 48 |
begin |
|
20504
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
49 |
|
| 20763 | 50 |
abbreviation |
| 25062 | 51 |
divideR :: "'a \<Rightarrow> real \<Rightarrow> 'a" (infixl "'/\<^sub>R" 70) |
| 24748 | 52 |
where |
| 25062 | 53 |
"x /\<^sub>R r == scaleR (inverse r) x" |
| 24748 | 54 |
|
55 |
end |
|
56 |
||
| 22636 | 57 |
instance real :: scaleR |
|
22973
64d300e16370
add lemma sgn_mult; declare real_scaleR_def and scaleR_eq_0_iff as simp rules
huffman
parents:
22972
diff
changeset
|
58 |
real_scaleR_def [simp]: "scaleR a x \<equiv> a * x" .. |
|
20554
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
59 |
|
| 24588 | 60 |
class real_vector = scaleR + ab_group_add + |
| 25062 | 61 |
assumes scaleR_right_distrib: "scaleR a (x + y) = scaleR a x + scaleR a y" |
62 |
and scaleR_left_distrib: "scaleR (a + b) x = scaleR a x + scaleR b x" |
|
| 24588 | 63 |
and scaleR_scaleR [simp]: "scaleR a (scaleR b x) = scaleR (a * b) x" |
64 |
and scaleR_one [simp]: "scaleR 1 x = x" |
|
|
20504
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
65 |
|
| 24588 | 66 |
class real_algebra = real_vector + ring + |
| 25062 | 67 |
assumes mult_scaleR_left [simp]: "scaleR a x * y = scaleR a (x * y)" |
68 |
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
|
69 |
|
| 24588 | 70 |
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
|
71 |
|
| 24588 | 72 |
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
|
73 |
|
| 24588 | 74 |
class real_field = real_div_algebra + field |
|
20584
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
75 |
|
|
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
76 |
instance real :: real_field |
|
20554
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
77 |
apply (intro_classes, unfold real_scaleR_def) |
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
78 |
apply (rule right_distrib) |
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
79 |
apply (rule left_distrib) |
| 20763 | 80 |
apply (rule mult_assoc [symmetric]) |
|
20554
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
81 |
apply (rule mult_1_left) |
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
82 |
apply (rule mult_assoc) |
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
83 |
apply (rule mult_left_commute) |
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
84 |
done |
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
85 |
|
|
20504
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
86 |
lemma scaleR_left_commute: |
|
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
87 |
fixes x :: "'a::real_vector" |
|
21809
4b93e949ac33
remove uses of scaleR infix syntax; add lemma Reals_number_of
huffman
parents:
21404
diff
changeset
|
88 |
shows "scaleR a (scaleR b x) = scaleR b (scaleR a x)" |
| 20763 | 89 |
by (simp add: mult_commute) |
|
20504
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
90 |
|
| 23127 | 91 |
interpretation scaleR_left: additive ["(\<lambda>a. scaleR a x::'a::real_vector)"] |
92 |
by unfold_locales (rule scaleR_left_distrib) |
|
|
20504
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
93 |
|
| 23127 | 94 |
interpretation scaleR_right: additive ["(\<lambda>x. scaleR a x::'a::real_vector)"] |
95 |
by unfold_locales (rule scaleR_right_distrib) |
|
|
20504
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
96 |
|
| 23127 | 97 |
lemmas scaleR_zero_left [simp] = scaleR_left.zero |
|
20504
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
98 |
|
| 23127 | 99 |
lemmas scaleR_zero_right [simp] = scaleR_right.zero |
|
20504
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
100 |
|
| 23127 | 101 |
lemmas scaleR_minus_left [simp] = scaleR_left.minus |
|
23113
d5cdaa3b7517
interpretations additive_scaleR_left, additive_scaleR_right
huffman
parents:
22973
diff
changeset
|
102 |
|
| 23127 | 103 |
lemmas scaleR_minus_right [simp] = scaleR_right.minus |
|
20504
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
104 |
|
| 23127 | 105 |
lemmas scaleR_left_diff_distrib = scaleR_left.diff |
|
20504
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
106 |
|
| 23127 | 107 |
lemmas scaleR_right_diff_distrib = scaleR_right.diff |
|
20504
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
108 |
|
|
22973
64d300e16370
add lemma sgn_mult; declare real_scaleR_def and scaleR_eq_0_iff as simp rules
huffman
parents:
22972
diff
changeset
|
109 |
lemma scaleR_eq_0_iff [simp]: |
|
20554
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
110 |
fixes x :: "'a::real_vector" |
|
21809
4b93e949ac33
remove uses of scaleR infix syntax; add lemma Reals_number_of
huffman
parents:
21404
diff
changeset
|
111 |
shows "(scaleR a x = 0) = (a = 0 \<or> x = 0)" |
|
20554
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
112 |
proof cases |
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
113 |
assume "a = 0" thus ?thesis by simp |
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
114 |
next |
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
115 |
assume anz [simp]: "a \<noteq> 0" |
|
21809
4b93e949ac33
remove uses of scaleR infix syntax; add lemma Reals_number_of
huffman
parents:
21404
diff
changeset
|
116 |
{ assume "scaleR a x = 0"
|
|
4b93e949ac33
remove uses of scaleR infix syntax; add lemma Reals_number_of
huffman
parents:
21404
diff
changeset
|
117 |
hence "scaleR (inverse a) (scaleR a x) = 0" by simp |
| 20763 | 118 |
hence "x = 0" by simp } |
|
20554
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
119 |
thus ?thesis by force |
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
120 |
qed |
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
121 |
|
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
122 |
lemma scaleR_left_imp_eq: |
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
123 |
fixes x y :: "'a::real_vector" |
|
21809
4b93e949ac33
remove uses of scaleR infix syntax; add lemma Reals_number_of
huffman
parents:
21404
diff
changeset
|
124 |
shows "\<lbrakk>a \<noteq> 0; scaleR a x = scaleR a y\<rbrakk> \<Longrightarrow> x = y" |
|
20554
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
125 |
proof - |
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
126 |
assume nonzero: "a \<noteq> 0" |
|
21809
4b93e949ac33
remove uses of scaleR infix syntax; add lemma Reals_number_of
huffman
parents:
21404
diff
changeset
|
127 |
assume "scaleR a x = scaleR a y" |
|
4b93e949ac33
remove uses of scaleR infix syntax; add lemma Reals_number_of
huffman
parents:
21404
diff
changeset
|
128 |
hence "scaleR a (x - y) = 0" |
|
20554
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
129 |
by (simp add: scaleR_right_diff_distrib) |
|
22973
64d300e16370
add lemma sgn_mult; declare real_scaleR_def and scaleR_eq_0_iff as simp rules
huffman
parents:
22972
diff
changeset
|
130 |
hence "x - y = 0" by (simp add: nonzero) |
|
20554
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
131 |
thus "x = y" by simp |
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
132 |
qed |
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
133 |
|
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
134 |
lemma scaleR_right_imp_eq: |
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
135 |
fixes x y :: "'a::real_vector" |
|
21809
4b93e949ac33
remove uses of scaleR infix syntax; add lemma Reals_number_of
huffman
parents:
21404
diff
changeset
|
136 |
shows "\<lbrakk>x \<noteq> 0; scaleR a x = scaleR b x\<rbrakk> \<Longrightarrow> a = b" |
|
20554
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
137 |
proof - |
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
138 |
assume nonzero: "x \<noteq> 0" |
|
21809
4b93e949ac33
remove uses of scaleR infix syntax; add lemma Reals_number_of
huffman
parents:
21404
diff
changeset
|
139 |
assume "scaleR a x = scaleR b x" |
|
4b93e949ac33
remove uses of scaleR infix syntax; add lemma Reals_number_of
huffman
parents:
21404
diff
changeset
|
140 |
hence "scaleR (a - b) x = 0" |
|
20554
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
141 |
by (simp add: scaleR_left_diff_distrib) |
|
22973
64d300e16370
add lemma sgn_mult; declare real_scaleR_def and scaleR_eq_0_iff as simp rules
huffman
parents:
22972
diff
changeset
|
142 |
hence "a - b = 0" by (simp add: nonzero) |
|
20554
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
143 |
thus "a = b" by simp |
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
144 |
qed |
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
145 |
|
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
146 |
lemma scaleR_cancel_left: |
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
147 |
fixes x y :: "'a::real_vector" |
|
21809
4b93e949ac33
remove uses of scaleR infix syntax; add lemma Reals_number_of
huffman
parents:
21404
diff
changeset
|
148 |
shows "(scaleR a x = scaleR a y) = (x = y \<or> a = 0)" |
|
20554
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
149 |
by (auto intro: scaleR_left_imp_eq) |
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
150 |
|
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
151 |
lemma scaleR_cancel_right: |
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
152 |
fixes x y :: "'a::real_vector" |
|
21809
4b93e949ac33
remove uses of scaleR infix syntax; add lemma Reals_number_of
huffman
parents:
21404
diff
changeset
|
153 |
shows "(scaleR a x = scaleR b x) = (a = b \<or> x = 0)" |
|
20554
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
154 |
by (auto intro: scaleR_right_imp_eq) |
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
155 |
|
|
20584
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
156 |
lemma nonzero_inverse_scaleR_distrib: |
|
21809
4b93e949ac33
remove uses of scaleR infix syntax; add lemma Reals_number_of
huffman
parents:
21404
diff
changeset
|
157 |
fixes x :: "'a::real_div_algebra" shows |
|
4b93e949ac33
remove uses of scaleR infix syntax; add lemma Reals_number_of
huffman
parents:
21404
diff
changeset
|
158 |
"\<lbrakk>a \<noteq> 0; x \<noteq> 0\<rbrakk> \<Longrightarrow> inverse (scaleR a x) = scaleR (inverse a) (inverse x)" |
| 20763 | 159 |
by (rule inverse_unique, simp) |
|
20584
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
160 |
|
|
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
161 |
lemma inverse_scaleR_distrib: |
|
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
162 |
fixes x :: "'a::{real_div_algebra,division_by_zero}"
|
|
21809
4b93e949ac33
remove uses of scaleR infix syntax; add lemma Reals_number_of
huffman
parents:
21404
diff
changeset
|
163 |
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
|
164 |
apply (case_tac "a = 0", simp) |
|
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
165 |
apply (case_tac "x = 0", simp) |
|
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
166 |
apply (erule (1) nonzero_inverse_scaleR_distrib) |
|
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
167 |
done |
|
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
168 |
|
|
20554
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
169 |
|
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
170 |
subsection {* Embedding of the Reals into any @{text real_algebra_1}:
|
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
171 |
@{term of_real} *}
|
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
172 |
|
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
173 |
definition |
|
21404
eb85850d3eb7
more robust syntax for definition/abbreviation/notation;
wenzelm
parents:
21210
diff
changeset
|
174 |
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
|
175 |
"of_real r = scaleR r 1" |
|
20554
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
176 |
|
|
21809
4b93e949ac33
remove uses of scaleR infix syntax; add lemma Reals_number_of
huffman
parents:
21404
diff
changeset
|
177 |
lemma scaleR_conv_of_real: "scaleR r x = of_real r * x" |
| 20763 | 178 |
by (simp add: of_real_def) |
179 |
||
|
20554
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
180 |
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
|
181 |
by (simp add: of_real_def) |
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
182 |
|
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
183 |
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
|
184 |
by (simp add: of_real_def) |
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
185 |
|
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
186 |
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
|
187 |
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
|
188 |
|
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
189 |
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
|
190 |
by (simp add: of_real_def) |
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
191 |
|
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
192 |
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
|
193 |
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
|
194 |
|
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
195 |
lemma of_real_mult [simp]: "of_real (x * y) = of_real x * of_real y" |
| 20763 | 196 |
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
|
197 |
|
|
20584
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
198 |
lemma nonzero_of_real_inverse: |
|
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
199 |
"x \<noteq> 0 \<Longrightarrow> of_real (inverse x) = |
|
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
200 |
inverse (of_real x :: 'a::real_div_algebra)" |
|
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
201 |
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
|
202 |
|
|
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
203 |
lemma of_real_inverse [simp]: |
|
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
204 |
"of_real (inverse x) = |
|
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
205 |
inverse (of_real x :: 'a::{real_div_algebra,division_by_zero})"
|
|
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
206 |
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
|
207 |
|
|
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
208 |
lemma nonzero_of_real_divide: |
|
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
209 |
"y \<noteq> 0 \<Longrightarrow> of_real (x / y) = |
|
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
210 |
(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
|
211 |
by (simp add: divide_inverse nonzero_of_real_inverse) |
| 20722 | 212 |
|
213 |
lemma of_real_divide [simp]: |
|
|
20584
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
214 |
"of_real (x / y) = |
|
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
215 |
(of_real x / of_real y :: 'a::{real_field,division_by_zero})"
|
|
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
216 |
by (simp add: divide_inverse) |
|
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
217 |
|
| 20722 | 218 |
lemma of_real_power [simp]: |
219 |
"of_real (x ^ n) = (of_real x :: 'a::{real_algebra_1,recpower}) ^ n"
|
|
| 20772 | 220 |
by (induct n) (simp_all add: power_Suc) |
| 20722 | 221 |
|
|
20554
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
222 |
lemma of_real_eq_iff [simp]: "(of_real x = of_real y) = (x = y)" |
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
223 |
by (simp add: of_real_def scaleR_cancel_right) |
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
224 |
|
|
20584
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
225 |
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
|
226 |
|
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
227 |
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
|
228 |
proof |
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
229 |
fix r |
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
230 |
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
|
231 |
by (simp add: of_real_def) |
|
20554
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
232 |
qed |
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
233 |
|
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
234 |
text{*Collapse nested embeddings*}
|
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
235 |
lemma of_real_of_nat_eq [simp]: "of_real (of_nat n) = of_nat n" |
| 20772 | 236 |
by (induct n) auto |
|
20554
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
237 |
|
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
238 |
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
|
239 |
by (cases z rule: int_diff_cases, simp) |
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
240 |
|
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
241 |
lemma of_real_number_of_eq: |
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
242 |
"of_real (number_of w) = (number_of w :: 'a::{number_ring,real_algebra_1})"
|
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
243 |
by (simp add: number_of_eq) |
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
244 |
|
| 22912 | 245 |
text{*Every real algebra has characteristic zero*}
|
246 |
instance real_algebra_1 < ring_char_0 |
|
247 |
proof |
|
|
23282
dfc459989d24
add axclass semiring_char_0 for types where of_nat is injective
huffman
parents:
23127
diff
changeset
|
248 |
fix m n :: nat |
|
dfc459989d24
add axclass semiring_char_0 for types where of_nat is injective
huffman
parents:
23127
diff
changeset
|
249 |
have "(of_real (of_nat m) = (of_real (of_nat n)::'a)) = (m = n)" |
|
dfc459989d24
add axclass semiring_char_0 for types where of_nat is injective
huffman
parents:
23127
diff
changeset
|
250 |
by (simp only: of_real_eq_iff of_nat_eq_iff) |
|
dfc459989d24
add axclass semiring_char_0 for types where of_nat is injective
huffman
parents:
23127
diff
changeset
|
251 |
thus "(of_nat m = (of_nat n::'a)) = (m = n)" |
|
dfc459989d24
add axclass semiring_char_0 for types where of_nat is injective
huffman
parents:
23127
diff
changeset
|
252 |
by (simp only: of_real_of_nat_eq) |
| 22912 | 253 |
qed |
254 |
||
|
20554
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
255 |
|
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
256 |
subsection {* The Set of Real Numbers *}
|
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
257 |
|
| 20772 | 258 |
definition |
|
21404
eb85850d3eb7
more robust syntax for definition/abbreviation/notation;
wenzelm
parents:
21210
diff
changeset
|
259 |
Reals :: "'a::real_algebra_1 set" where |
| 20772 | 260 |
"Reals \<equiv> range of_real" |
|
20554
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
261 |
|
| 21210 | 262 |
notation (xsymbols) |
|
20554
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
263 |
Reals ("\<real>")
|
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
264 |
|
|
21809
4b93e949ac33
remove uses of scaleR infix syntax; add lemma Reals_number_of
huffman
parents:
21404
diff
changeset
|
265 |
lemma Reals_of_real [simp]: "of_real r \<in> Reals" |
|
20554
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
266 |
by (simp add: Reals_def) |
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
267 |
|
|
21809
4b93e949ac33
remove uses of scaleR infix syntax; add lemma Reals_number_of
huffman
parents:
21404
diff
changeset
|
268 |
lemma Reals_of_int [simp]: "of_int z \<in> Reals" |
|
4b93e949ac33
remove uses of scaleR infix syntax; add lemma Reals_number_of
huffman
parents:
21404
diff
changeset
|
269 |
by (subst of_real_of_int_eq [symmetric], rule Reals_of_real) |
| 20718 | 270 |
|
|
21809
4b93e949ac33
remove uses of scaleR infix syntax; add lemma Reals_number_of
huffman
parents:
21404
diff
changeset
|
271 |
lemma Reals_of_nat [simp]: "of_nat n \<in> Reals" |
|
4b93e949ac33
remove uses of scaleR infix syntax; add lemma Reals_number_of
huffman
parents:
21404
diff
changeset
|
272 |
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
|
273 |
|
|
4b93e949ac33
remove uses of scaleR infix syntax; add lemma Reals_number_of
huffman
parents:
21404
diff
changeset
|
274 |
lemma Reals_number_of [simp]: |
|
4b93e949ac33
remove uses of scaleR infix syntax; add lemma Reals_number_of
huffman
parents:
21404
diff
changeset
|
275 |
"(number_of w::'a::{number_ring,real_algebra_1}) \<in> Reals"
|
|
4b93e949ac33
remove uses of scaleR infix syntax; add lemma Reals_number_of
huffman
parents:
21404
diff
changeset
|
276 |
by (subst of_real_number_of_eq [symmetric], rule Reals_of_real) |
| 20718 | 277 |
|
|
20554
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
278 |
lemma Reals_0 [simp]: "0 \<in> Reals" |
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
279 |
apply (unfold Reals_def) |
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
280 |
apply (rule range_eqI) |
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
281 |
apply (rule of_real_0 [symmetric]) |
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
282 |
done |
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
283 |
|
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
284 |
lemma Reals_1 [simp]: "1 \<in> Reals" |
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
285 |
apply (unfold Reals_def) |
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
286 |
apply (rule range_eqI) |
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
287 |
apply (rule of_real_1 [symmetric]) |
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
288 |
done |
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
289 |
|
|
20584
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
290 |
lemma Reals_add [simp]: "\<lbrakk>a \<in> Reals; b \<in> Reals\<rbrakk> \<Longrightarrow> a + b \<in> Reals" |
|
20554
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
291 |
apply (auto simp add: Reals_def) |
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
292 |
apply (rule range_eqI) |
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
293 |
apply (rule of_real_add [symmetric]) |
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
294 |
done |
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
295 |
|
|
20584
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
296 |
lemma Reals_minus [simp]: "a \<in> Reals \<Longrightarrow> - a \<in> Reals" |
|
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
297 |
apply (auto simp add: Reals_def) |
|
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
298 |
apply (rule range_eqI) |
|
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
299 |
apply (rule of_real_minus [symmetric]) |
|
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
300 |
done |
|
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 Reals_diff [simp]: "\<lbrakk>a \<in> Reals; b \<in> Reals\<rbrakk> \<Longrightarrow> a - b \<in> Reals" |
|
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
303 |
apply (auto simp add: Reals_def) |
|
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
304 |
apply (rule range_eqI) |
|
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
305 |
apply (rule of_real_diff [symmetric]) |
|
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
306 |
done |
|
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
307 |
|
|
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
308 |
lemma Reals_mult [simp]: "\<lbrakk>a \<in> Reals; b \<in> Reals\<rbrakk> \<Longrightarrow> a * b \<in> Reals" |
|
20554
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
309 |
apply (auto simp add: Reals_def) |
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
310 |
apply (rule range_eqI) |
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
311 |
apply (rule of_real_mult [symmetric]) |
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
312 |
done |
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
313 |
|
|
20584
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
314 |
lemma nonzero_Reals_inverse: |
|
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
315 |
fixes a :: "'a::real_div_algebra" |
|
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
316 |
shows "\<lbrakk>a \<in> Reals; a \<noteq> 0\<rbrakk> \<Longrightarrow> inverse a \<in> Reals" |
|
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
317 |
apply (auto simp add: Reals_def) |
|
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
318 |
apply (rule range_eqI) |
|
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
319 |
apply (erule nonzero_of_real_inverse [symmetric]) |
|
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
320 |
done |
|
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
321 |
|
|
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
322 |
lemma Reals_inverse [simp]: |
|
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
323 |
fixes a :: "'a::{real_div_algebra,division_by_zero}"
|
|
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
324 |
shows "a \<in> Reals \<Longrightarrow> inverse a \<in> Reals" |
|
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
325 |
apply (auto simp add: Reals_def) |
|
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
326 |
apply (rule range_eqI) |
|
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
327 |
apply (rule of_real_inverse [symmetric]) |
|
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
328 |
done |
|
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
329 |
|
|
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
330 |
lemma nonzero_Reals_divide: |
|
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
331 |
fixes a b :: "'a::real_field" |
|
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
332 |
shows "\<lbrakk>a \<in> Reals; b \<in> Reals; b \<noteq> 0\<rbrakk> \<Longrightarrow> a / b \<in> Reals" |
|
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
333 |
apply (auto simp add: Reals_def) |
|
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
334 |
apply (rule range_eqI) |
|
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
335 |
apply (erule nonzero_of_real_divide [symmetric]) |
|
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
336 |
done |
|
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
337 |
|
|
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
338 |
lemma Reals_divide [simp]: |
|
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
339 |
fixes a b :: "'a::{real_field,division_by_zero}"
|
|
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
340 |
shows "\<lbrakk>a \<in> Reals; b \<in> Reals\<rbrakk> \<Longrightarrow> a / b \<in> Reals" |
|
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
341 |
apply (auto simp add: Reals_def) |
|
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
342 |
apply (rule range_eqI) |
|
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
343 |
apply (rule of_real_divide [symmetric]) |
|
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
344 |
done |
|
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
345 |
|
| 20722 | 346 |
lemma Reals_power [simp]: |
347 |
fixes a :: "'a::{real_algebra_1,recpower}"
|
|
348 |
shows "a \<in> Reals \<Longrightarrow> a ^ n \<in> Reals" |
|
349 |
apply (auto simp add: Reals_def) |
|
350 |
apply (rule range_eqI) |
|
351 |
apply (rule of_real_power [symmetric]) |
|
352 |
done |
|
353 |
||
|
20554
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
354 |
lemma Reals_cases [cases set: Reals]: |
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
355 |
assumes "q \<in> \<real>" |
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
356 |
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
|
357 |
unfolding Reals_def |
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
358 |
proof - |
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
359 |
from `q \<in> \<real>` have "q \<in> range of_real" unfolding Reals_def . |
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
360 |
then obtain r where "q = of_real r" .. |
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
361 |
then show thesis .. |
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
362 |
qed |
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
363 |
|
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
364 |
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
|
365 |
"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
|
366 |
by (rule Reals_cases) auto |
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
367 |
|
|
20504
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
368 |
|
|
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
369 |
subsection {* Real normed vector spaces *}
|
|
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
370 |
|
| 22636 | 371 |
class norm = type + |
372 |
fixes norm :: "'a \<Rightarrow> real" |
|
|
20504
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
373 |
|
| 22636 | 374 |
instance real :: norm |
375 |
real_norm_def [simp]: "norm r \<equiv> \<bar>r\<bar>" .. |
|
|
20554
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
376 |
|
| 24520 | 377 |
class sgn_div_norm = scaleR + norm + sgn + |
| 25062 | 378 |
assumes sgn_div_norm: "sgn x = x /\<^sub>R norm x" |
| 24506 | 379 |
|
| 24588 | 380 |
class real_normed_vector = real_vector + sgn_div_norm + |
381 |
assumes norm_ge_zero [simp]: "0 \<le> norm x" |
|
| 25062 | 382 |
and norm_eq_zero [simp]: "norm x = 0 \<longleftrightarrow> x = 0" |
383 |
and norm_triangle_ineq: "norm (x + y) \<le> norm x + norm y" |
|
| 24588 | 384 |
and norm_scaleR: "norm (scaleR a x) = \<bar>a\<bar> * norm x" |
|
20504
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
385 |
|
| 24588 | 386 |
class real_normed_algebra = real_algebra + real_normed_vector + |
| 25062 | 387 |
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
|
388 |
|
| 24588 | 389 |
class real_normed_algebra_1 = real_algebra_1 + real_normed_algebra + |
| 25062 | 390 |
assumes norm_one [simp]: "norm 1 = 1" |
| 22852 | 391 |
|
| 24588 | 392 |
class real_normed_div_algebra = real_div_algebra + real_normed_vector + |
| 25062 | 393 |
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
|
394 |
|
| 24588 | 395 |
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
|
396 |
|
| 22852 | 397 |
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
|
398 |
proof |
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
399 |
fix x y :: 'a |
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
400 |
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
|
401 |
by (simp add: norm_mult) |
| 22852 | 402 |
next |
403 |
have "norm (1 * 1::'a) = norm (1::'a) * norm (1::'a)" |
|
404 |
by (rule norm_mult) |
|
405 |
thus "norm (1::'a) = 1" by simp |
|
|
20554
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
406 |
qed |
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
407 |
|
|
20584
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
408 |
instance real :: real_normed_field |
| 22852 | 409 |
apply (intro_classes, unfold real_norm_def real_scaleR_def) |
| 24506 | 410 |
apply (simp add: real_sgn_def) |
|
20554
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
411 |
apply (rule abs_ge_zero) |
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
412 |
apply (rule abs_eq_0) |
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
413 |
apply (rule abs_triangle_ineq) |
| 22852 | 414 |
apply (rule abs_mult) |
|
20554
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
415 |
apply (rule abs_mult) |
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
416 |
done |
|
20504
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
417 |
|
| 22852 | 418 |
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
|
419 |
by simp |
|
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
420 |
|
| 22852 | 421 |
lemma zero_less_norm_iff [simp]: |
422 |
fixes x :: "'a::real_normed_vector" |
|
423 |
shows "(0 < norm x) = (x \<noteq> 0)" |
|
|
20504
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
424 |
by (simp add: order_less_le) |
|
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
425 |
|
| 22852 | 426 |
lemma norm_not_less_zero [simp]: |
427 |
fixes x :: "'a::real_normed_vector" |
|
428 |
shows "\<not> norm x < 0" |
|
| 20828 | 429 |
by (simp add: linorder_not_less) |
430 |
||
| 22852 | 431 |
lemma norm_le_zero_iff [simp]: |
432 |
fixes x :: "'a::real_normed_vector" |
|
433 |
shows "(norm x \<le> 0) = (x = 0)" |
|
| 20828 | 434 |
by (simp add: order_le_less) |
435 |
||
|
20504
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
436 |
lemma norm_minus_cancel [simp]: |
|
20584
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
437 |
fixes x :: "'a::real_normed_vector" |
|
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
438 |
shows "norm (- x) = norm x" |
|
20504
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
439 |
proof - |
|
21809
4b93e949ac33
remove uses of scaleR infix syntax; add lemma Reals_number_of
huffman
parents:
21404
diff
changeset
|
440 |
have "norm (- x) = norm (scaleR (- 1) x)" |
|
20504
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
441 |
by (simp only: scaleR_minus_left scaleR_one) |
| 20533 | 442 |
also have "\<dots> = \<bar>- 1\<bar> * norm x" |
|
20504
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
443 |
by (rule norm_scaleR) |
|
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
444 |
finally show ?thesis by simp |
|
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
445 |
qed |
|
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
446 |
|
|
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
447 |
lemma norm_minus_commute: |
|
20584
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
448 |
fixes a b :: "'a::real_normed_vector" |
|
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
449 |
shows "norm (a - b) = norm (b - a)" |
|
20504
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
450 |
proof - |
| 22898 | 451 |
have "norm (- (b - a)) = norm (b - a)" |
452 |
by (rule norm_minus_cancel) |
|
453 |
thus ?thesis by simp |
|
|
20504
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
454 |
qed |
|
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
455 |
|
|
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
456 |
lemma norm_triangle_ineq2: |
|
20584
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
457 |
fixes a b :: "'a::real_normed_vector" |
| 20533 | 458 |
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
|
459 |
proof - |
| 20533 | 460 |
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
|
461 |
by (rule norm_triangle_ineq) |
| 22898 | 462 |
thus ?thesis by simp |
|
20504
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
463 |
qed |
|
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
464 |
|
|
20584
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
465 |
lemma norm_triangle_ineq3: |
|
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
466 |
fixes a b :: "'a::real_normed_vector" |
|
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
467 |
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
|
468 |
apply (subst abs_le_iff) |
|
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
469 |
apply auto |
|
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
470 |
apply (rule norm_triangle_ineq2) |
|
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
471 |
apply (subst norm_minus_commute) |
|
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
472 |
apply (rule norm_triangle_ineq2) |
|
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
473 |
done |
|
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
474 |
|
|
20504
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
475 |
lemma norm_triangle_ineq4: |
|
20584
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
476 |
fixes a b :: "'a::real_normed_vector" |
| 20533 | 477 |
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
|
478 |
proof - |
| 22898 | 479 |
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
|
480 |
by (rule norm_triangle_ineq) |
| 22898 | 481 |
thus ?thesis |
482 |
by (simp only: diff_minus norm_minus_cancel) |
|
483 |
qed |
|
484 |
||
485 |
lemma norm_diff_ineq: |
|
486 |
fixes a b :: "'a::real_normed_vector" |
|
487 |
shows "norm a - norm b \<le> norm (a + b)" |
|
488 |
proof - |
|
489 |
have "norm a - norm (- b) \<le> norm (a - - b)" |
|
490 |
by (rule norm_triangle_ineq2) |
|
491 |
thus ?thesis by simp |
|
|
20504
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
492 |
qed |
|
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
493 |
|
| 20551 | 494 |
lemma norm_diff_triangle_ineq: |
495 |
fixes a b c d :: "'a::real_normed_vector" |
|
496 |
shows "norm ((a + b) - (c + d)) \<le> norm (a - c) + norm (b - d)" |
|
497 |
proof - |
|
498 |
have "norm ((a + b) - (c + d)) = norm ((a - c) + (b - d))" |
|
499 |
by (simp add: diff_minus add_ac) |
|
500 |
also have "\<dots> \<le> norm (a - c) + norm (b - d)" |
|
501 |
by (rule norm_triangle_ineq) |
|
502 |
finally show ?thesis . |
|
503 |
qed |
|
504 |
||
| 22857 | 505 |
lemma abs_norm_cancel [simp]: |
506 |
fixes a :: "'a::real_normed_vector" |
|
507 |
shows "\<bar>norm a\<bar> = norm a" |
|
508 |
by (rule abs_of_nonneg [OF norm_ge_zero]) |
|
509 |
||
| 22880 | 510 |
lemma norm_add_less: |
511 |
fixes x y :: "'a::real_normed_vector" |
|
512 |
shows "\<lbrakk>norm x < r; norm y < s\<rbrakk> \<Longrightarrow> norm (x + y) < r + s" |
|
513 |
by (rule order_le_less_trans [OF norm_triangle_ineq add_strict_mono]) |
|
514 |
||
515 |
lemma norm_mult_less: |
|
516 |
fixes x y :: "'a::real_normed_algebra" |
|
517 |
shows "\<lbrakk>norm x < r; norm y < s\<rbrakk> \<Longrightarrow> norm (x * y) < r * s" |
|
518 |
apply (rule order_le_less_trans [OF norm_mult_ineq]) |
|
519 |
apply (simp add: mult_strict_mono') |
|
520 |
done |
|
521 |
||
| 22857 | 522 |
lemma norm_of_real [simp]: |
523 |
"norm (of_real r :: 'a::real_normed_algebra_1) = \<bar>r\<bar>" |
|
| 22852 | 524 |
unfolding of_real_def by (simp add: norm_scaleR) |
| 20560 | 525 |
|
|
22876
2b4c831ceca7
add lemmas norm_number_of, norm_of_int, norm_of_nat
huffman
parents:
22857
diff
changeset
|
526 |
lemma norm_number_of [simp]: |
|
2b4c831ceca7
add lemmas norm_number_of, norm_of_int, norm_of_nat
huffman
parents:
22857
diff
changeset
|
527 |
"norm (number_of w::'a::{number_ring,real_normed_algebra_1})
|
|
2b4c831ceca7
add lemmas norm_number_of, norm_of_int, norm_of_nat
huffman
parents:
22857
diff
changeset
|
528 |
= \<bar>number_of w\<bar>" |
|
2b4c831ceca7
add lemmas norm_number_of, norm_of_int, norm_of_nat
huffman
parents:
22857
diff
changeset
|
529 |
by (subst of_real_number_of_eq [symmetric], rule norm_of_real) |
|
2b4c831ceca7
add lemmas norm_number_of, norm_of_int, norm_of_nat
huffman
parents:
22857
diff
changeset
|
530 |
|
|
2b4c831ceca7
add lemmas norm_number_of, norm_of_int, norm_of_nat
huffman
parents:
22857
diff
changeset
|
531 |
lemma norm_of_int [simp]: |
|
2b4c831ceca7
add lemmas norm_number_of, norm_of_int, norm_of_nat
huffman
parents:
22857
diff
changeset
|
532 |
"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
|
533 |
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
|
534 |
|
|
2b4c831ceca7
add lemmas norm_number_of, norm_of_int, norm_of_nat
huffman
parents:
22857
diff
changeset
|
535 |
lemma norm_of_nat [simp]: |
|
2b4c831ceca7
add lemmas norm_number_of, norm_of_int, norm_of_nat
huffman
parents:
22857
diff
changeset
|
536 |
"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
|
537 |
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
|
538 |
apply (subst norm_of_real, simp) |
|
2b4c831ceca7
add lemmas norm_number_of, norm_of_int, norm_of_nat
huffman
parents:
22857
diff
changeset
|
539 |
done |
|
2b4c831ceca7
add lemmas norm_number_of, norm_of_int, norm_of_nat
huffman
parents:
22857
diff
changeset
|
540 |
|
|
20504
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
541 |
lemma nonzero_norm_inverse: |
|
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
542 |
fixes a :: "'a::real_normed_div_algebra" |
| 20533 | 543 |
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
|
544 |
apply (rule inverse_unique [symmetric]) |
|
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
545 |
apply (simp add: norm_mult [symmetric]) |
|
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
546 |
done |
|
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
547 |
|
|
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
548 |
lemma norm_inverse: |
|
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
549 |
fixes a :: "'a::{real_normed_div_algebra,division_by_zero}"
|
| 20533 | 550 |
shows "norm (inverse a) = inverse (norm a)" |
|
20504
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
551 |
apply (case_tac "a = 0", simp) |
|
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
552 |
apply (erule nonzero_norm_inverse) |
|
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
553 |
done |
|
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
554 |
|
|
20584
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
555 |
lemma nonzero_norm_divide: |
|
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
556 |
fixes a b :: "'a::real_normed_field" |
|
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
557 |
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
|
558 |
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
|
559 |
|
|
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
560 |
lemma norm_divide: |
|
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
561 |
fixes a b :: "'a::{real_normed_field,division_by_zero}"
|
|
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
562 |
shows "norm (a / b) = norm a / norm b" |
|
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
563 |
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
|
564 |
|
| 22852 | 565 |
lemma norm_power_ineq: |
566 |
fixes x :: "'a::{real_normed_algebra_1,recpower}"
|
|
567 |
shows "norm (x ^ n) \<le> norm x ^ n" |
|
568 |
proof (induct n) |
|
569 |
case 0 show "norm (x ^ 0) \<le> norm x ^ 0" by simp |
|
570 |
next |
|
571 |
case (Suc n) |
|
572 |
have "norm (x * x ^ n) \<le> norm x * norm (x ^ n)" |
|
573 |
by (rule norm_mult_ineq) |
|
574 |
also from Suc have "\<dots> \<le> norm x * norm x ^ n" |
|
575 |
using norm_ge_zero by (rule mult_left_mono) |
|
576 |
finally show "norm (x ^ Suc n) \<le> norm x ^ Suc n" |
|
577 |
by (simp add: power_Suc) |
|
578 |
qed |
|
579 |
||
| 20684 | 580 |
lemma norm_power: |
581 |
fixes x :: "'a::{real_normed_div_algebra,recpower}"
|
|
582 |
shows "norm (x ^ n) = norm x ^ n" |
|
| 20772 | 583 |
by (induct n) (simp_all add: power_Suc norm_mult) |
| 20684 | 584 |
|
|
22442
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
585 |
|
|
22972
3e96b98d37c6
generalized sgn function to work on any real normed vector space
huffman
parents:
22942
diff
changeset
|
586 |
subsection {* Sign function *}
|
|
3e96b98d37c6
generalized sgn function to work on any real normed vector space
huffman
parents:
22942
diff
changeset
|
587 |
|
| 24506 | 588 |
lemma norm_sgn: |
589 |
"norm (sgn(x::'a::real_normed_vector)) = (if x = 0 then 0 else 1)" |
|
590 |
by (simp add: sgn_div_norm norm_scaleR) |
|
|
22972
3e96b98d37c6
generalized sgn function to work on any real normed vector space
huffman
parents:
22942
diff
changeset
|
591 |
|
| 24506 | 592 |
lemma sgn_zero [simp]: "sgn(0::'a::real_normed_vector) = 0" |
593 |
by (simp add: sgn_div_norm) |
|
|
22972
3e96b98d37c6
generalized sgn function to work on any real normed vector space
huffman
parents:
22942
diff
changeset
|
594 |
|
| 24506 | 595 |
lemma sgn_zero_iff: "(sgn(x::'a::real_normed_vector) = 0) = (x = 0)" |
596 |
by (simp add: sgn_div_norm) |
|
|
22972
3e96b98d37c6
generalized sgn function to work on any real normed vector space
huffman
parents:
22942
diff
changeset
|
597 |
|
| 24506 | 598 |
lemma sgn_minus: "sgn (- x) = - sgn(x::'a::real_normed_vector)" |
599 |
by (simp add: sgn_div_norm) |
|
|
22972
3e96b98d37c6
generalized sgn function to work on any real normed vector space
huffman
parents:
22942
diff
changeset
|
600 |
|
| 24506 | 601 |
lemma sgn_scaleR: |
602 |
"sgn (scaleR r x) = scaleR (sgn r) (sgn(x::'a::real_normed_vector))" |
|
603 |
by (simp add: sgn_div_norm norm_scaleR mult_ac) |
|
|
22973
64d300e16370
add lemma sgn_mult; declare real_scaleR_def and scaleR_eq_0_iff as simp rules
huffman
parents:
22972
diff
changeset
|
604 |
|
|
22972
3e96b98d37c6
generalized sgn function to work on any real normed vector space
huffman
parents:
22942
diff
changeset
|
605 |
lemma sgn_one [simp]: "sgn (1::'a::real_normed_algebra_1) = 1" |
| 24506 | 606 |
by (simp add: sgn_div_norm) |
|
22972
3e96b98d37c6
generalized sgn function to work on any real normed vector space
huffman
parents:
22942
diff
changeset
|
607 |
|
|
3e96b98d37c6
generalized sgn function to work on any real normed vector space
huffman
parents:
22942
diff
changeset
|
608 |
lemma sgn_of_real: |
|
3e96b98d37c6
generalized sgn function to work on any real normed vector space
huffman
parents:
22942
diff
changeset
|
609 |
"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
|
610 |
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
|
611 |
|
|
22973
64d300e16370
add lemma sgn_mult; declare real_scaleR_def and scaleR_eq_0_iff as simp rules
huffman
parents:
22972
diff
changeset
|
612 |
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
|
613 |
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
|
614 |
shows "sgn (x * y) = sgn x * sgn y" |
| 24506 | 615 |
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
|
616 |
|
|
22972
3e96b98d37c6
generalized sgn function to work on any real normed vector space
huffman
parents:
22942
diff
changeset
|
617 |
lemma real_sgn_eq: "sgn (x::real) = x / \<bar>x\<bar>" |
| 24506 | 618 |
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
|
619 |
|
|
3e96b98d37c6
generalized sgn function to work on any real normed vector space
huffman
parents:
22942
diff
changeset
|
620 |
lemma real_sgn_pos: "0 < (x::real) \<Longrightarrow> sgn x = 1" |
|
3e96b98d37c6
generalized sgn function to work on any real normed vector space
huffman
parents:
22942
diff
changeset
|
621 |
unfolding real_sgn_eq by simp |
|
3e96b98d37c6
generalized sgn function to work on any real normed vector space
huffman
parents:
22942
diff
changeset
|
622 |
|
|
3e96b98d37c6
generalized sgn function to work on any real normed vector space
huffman
parents:
22942
diff
changeset
|
623 |
lemma real_sgn_neg: "(x::real) < 0 \<Longrightarrow> sgn x = -1" |
|
3e96b98d37c6
generalized sgn function to work on any real normed vector space
huffman
parents:
22942
diff
changeset
|
624 |
unfolding real_sgn_eq by simp |
|
3e96b98d37c6
generalized sgn function to work on any real normed vector space
huffman
parents:
22942
diff
changeset
|
625 |
|
|
3e96b98d37c6
generalized sgn function to work on any real normed vector space
huffman
parents:
22942
diff
changeset
|
626 |
|
|
22442
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
627 |
subsection {* Bounded Linear and Bilinear Operators *}
|
|
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
628 |
|
|
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
629 |
locale bounded_linear = additive + |
|
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
630 |
constrains f :: "'a::real_normed_vector \<Rightarrow> 'b::real_normed_vector" |
|
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
631 |
assumes scaleR: "f (scaleR r x) = scaleR r (f x)" |
|
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
632 |
assumes bounded: "\<exists>K. \<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
|
633 |
|
|
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
634 |
lemma (in bounded_linear) pos_bounded: |
|
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
635 |
"\<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
|
636 |
proof - |
|
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
637 |
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
|
638 |
using bounded by fast |
|
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
639 |
show ?thesis |
|
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
640 |
proof (intro exI impI conjI allI) |
|
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
641 |
show "0 < max 1 K" |
|
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
642 |
by (rule order_less_le_trans [OF zero_less_one le_maxI1]) |
|
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
643 |
next |
|
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
644 |
fix x |
|
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
645 |
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
|
646 |
also have "\<dots> \<le> norm x * max 1 K" |
|
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
647 |
by (rule mult_left_mono [OF le_maxI2 norm_ge_zero]) |
|
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
648 |
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
|
649 |
qed |
|
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
650 |
qed |
|
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
651 |
|
|
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
652 |
lemma (in bounded_linear) nonneg_bounded: |
|
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
653 |
"\<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
|
654 |
proof - |
|
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
655 |
from pos_bounded |
|
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
656 |
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
|
657 |
qed |
|
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
658 |
|
|
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
659 |
locale bounded_bilinear = |
|
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
660 |
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
|
661 |
\<Rightarrow> 'c::real_normed_vector" |
|
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
662 |
(infixl "**" 70) |
|
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
663 |
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
|
664 |
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
|
665 |
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
|
666 |
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
|
667 |
assumes bounded: "\<exists>K. \<forall>a b. norm (prod 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
|
668 |
|
|
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
669 |
lemma (in bounded_bilinear) pos_bounded: |
|
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
670 |
"\<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
|
671 |
apply (cut_tac bounded, erule exE) |
|
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
672 |
apply (rule_tac x="max 1 K" in exI, safe) |
|
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
673 |
apply (rule order_less_le_trans [OF zero_less_one le_maxI1]) |
|
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
674 |
apply (drule spec, drule spec, erule order_trans) |
|
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
675 |
apply (rule mult_left_mono [OF le_maxI2]) |
|
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
676 |
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
|
677 |
done |
|
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
678 |
|
|
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
679 |
lemma (in bounded_bilinear) nonneg_bounded: |
|
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
680 |
"\<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
|
681 |
proof - |
|
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
682 |
from pos_bounded |
|
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
683 |
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
|
684 |
qed |
|
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
685 |
|
|
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
686 |
lemma (in bounded_bilinear) additive_right: "additive (\<lambda>b. prod a b)" |
|
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
687 |
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
|
688 |
|
|
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
689 |
lemma (in bounded_bilinear) additive_left: "additive (\<lambda>a. prod a b)" |
|
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
690 |
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
|
691 |
|
|
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
692 |
lemma (in bounded_bilinear) zero_left: "prod 0 b = 0" |
|
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
693 |
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
|
694 |
|
|
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
695 |
lemma (in bounded_bilinear) zero_right: "prod a 0 = 0" |
|
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
696 |
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
|
697 |
|
|
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
698 |
lemma (in bounded_bilinear) minus_left: "prod (- a) b = - prod a b" |
|
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
699 |
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
|
700 |
|
|
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
701 |
lemma (in bounded_bilinear) minus_right: "prod a (- b) = - prod a b" |
|
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
702 |
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
|
703 |
|
|
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
704 |
lemma (in bounded_bilinear) diff_left: |
|
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
705 |
"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
|
706 |
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
|
707 |
|
|
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
708 |
lemma (in bounded_bilinear) diff_right: |
|
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
709 |
"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
|
710 |
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
|
711 |
|
|
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
712 |
lemma (in bounded_bilinear) bounded_linear_left: |
|
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
713 |
"bounded_linear (\<lambda>a. a ** b)" |
|
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
714 |
apply (unfold_locales) |
|
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
715 |
apply (rule add_left) |
|
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
716 |
apply (rule scaleR_left) |
|
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
717 |
apply (cut_tac bounded, safe) |
|
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
718 |
apply (rule_tac x="norm b * K" in exI) |
|
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
719 |
apply (simp add: mult_ac) |
|
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
720 |
done |
|
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
721 |
|
|
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
722 |
lemma (in bounded_bilinear) bounded_linear_right: |
|
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
723 |
"bounded_linear (\<lambda>b. a ** b)" |
|
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
724 |
apply (unfold_locales) |
|
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
725 |
apply (rule add_right) |
|
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
726 |
apply (rule scaleR_right) |
|
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
727 |
apply (cut_tac bounded, safe) |
|
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
728 |
apply (rule_tac x="norm a * K" in exI) |
|
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
729 |
apply (simp add: mult_ac) |
|
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
730 |
done |
|
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
731 |
|
|
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
732 |
lemma (in bounded_bilinear) prod_diff_prod: |
|
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
733 |
"(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
|
734 |
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
|
735 |
|
| 23127 | 736 |
interpretation mult: |
|
22442
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
737 |
bounded_bilinear ["op * :: 'a \<Rightarrow> 'a \<Rightarrow> 'a::real_normed_algebra"] |
|
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
738 |
apply (rule bounded_bilinear.intro) |
|
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
739 |
apply (rule left_distrib) |
|
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
740 |
apply (rule right_distrib) |
|
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
741 |
apply (rule mult_scaleR_left) |
|
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
742 |
apply (rule mult_scaleR_right) |
|
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
743 |
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
|
744 |
apply (simp add: norm_mult_ineq) |
|
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
745 |
done |
|
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
746 |
|
| 23127 | 747 |
interpretation mult_left: |
|
22442
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
748 |
bounded_linear ["(\<lambda>x::'a::real_normed_algebra. x * y)"] |
| 23127 | 749 |
by (rule mult.bounded_linear_left) |
|
22442
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
750 |
|
| 23127 | 751 |
interpretation mult_right: |
752 |
bounded_linear ["(\<lambda>y::'a::real_normed_algebra. x * y)"] |
|
753 |
by (rule mult.bounded_linear_right) |
|
754 |
||
755 |
interpretation divide: |
|
| 23120 | 756 |
bounded_linear ["(\<lambda>x::'a::real_normed_field. x / y)"] |
| 23127 | 757 |
unfolding divide_inverse by (rule mult.bounded_linear_left) |
| 23120 | 758 |
|
| 23127 | 759 |
interpretation scaleR: bounded_bilinear ["scaleR"] |
|
22442
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
760 |
apply (rule bounded_bilinear.intro) |
|
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
761 |
apply (rule scaleR_left_distrib) |
|
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
762 |
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
|
763 |
apply simp |
|
22442
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
764 |
apply (rule scaleR_left_commute) |
|
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
765 |
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
|
766 |
apply (simp add: norm_scaleR) |
|
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
767 |
done |
|
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
768 |
|
| 23127 | 769 |
interpretation scaleR_left: bounded_linear ["\<lambda>r. scaleR r x"] |
770 |
by (rule scaleR.bounded_linear_left) |
|
771 |
||
772 |
interpretation scaleR_right: bounded_linear ["\<lambda>x. scaleR r x"] |
|
773 |
by (rule scaleR.bounded_linear_right) |
|
774 |
||
775 |
interpretation of_real: bounded_linear ["\<lambda>r. of_real r"] |
|
776 |
unfolding of_real_def by (rule scaleR.bounded_linear_left) |
|
| 22625 | 777 |
|
|
20504
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
778 |
end |