| author | wenzelm |
| Thu, 21 Sep 2006 19:04:43 +0200 | |
| changeset 20667 | 953b68f4a9f3 |
| parent 20563 | 44eda2314aab |
| child 20730 | da903f59e9ba |
| permissions | -rw-r--r-- |
| 10751 | 1 |
(* Title : Star.thy |
2 |
Author : Jacques D. Fleuriot |
|
3 |
Copyright : 1998 University of Cambridge |
|
| 14468 | 4 |
Conversion to Isar and new proofs by Lawrence C Paulson, 2003/4 |
| 14370 | 5 |
*) |
| 10751 | 6 |
|
| 14370 | 7 |
header{*Star-Transforms in Non-Standard Analysis*}
|
8 |
||
| 15131 | 9 |
theory Star |
| 15140 | 10 |
imports NSA |
| 15131 | 11 |
begin |
| 10751 | 12 |
|
| 19765 | 13 |
definition |
| 10751 | 14 |
(* internal sets *) |
| 19765 | 15 |
starset_n :: "(nat => 'a set) => 'a star set" ("*sn* _" [80] 80)
|
16 |
"*sn* As = Iset (star_n As)" |
|
| 14370 | 17 |
|
| 19765 | 18 |
InternalSets :: "'a star set set" |
19 |
"InternalSets = {X. \<exists>As. X = *sn* As}"
|
|
| 10751 | 20 |
|
| 19765 | 21 |
(* nonstandard extension of function *) |
22 |
is_starext :: "['a star => 'a star, 'a => 'a] => bool" |
|
23 |
"is_starext F f = (\<forall>x y. \<exists>X \<in> Rep_star(x). \<exists>Y \<in> Rep_star(y). |
|
| 10751 | 24 |
((y = (F x)) = ({n. Y n = f(X n)} : FreeUltrafilterNat)))"
|
| 19765 | 25 |
(* internal functions *) |
26 |
starfun_n :: "(nat => ('a => 'b)) => 'a star => 'b star" ("*fn* _" [80] 80)
|
|
27 |
"*fn* F = Ifun (star_n F)" |
|
| 10751 | 28 |
|
| 19765 | 29 |
InternalFuns :: "('a star => 'b star) set"
|
30 |
"InternalFuns = {X. \<exists>F. X = *fn* F}"
|
|
| 10751 | 31 |
|
32 |
||
| 14370 | 33 |
(*-------------------------------------------------------- |
34 |
Preamble - Pulling "EX" over "ALL" |
|
35 |
---------------------------------------------------------*) |
|
36 |
||
37 |
(* This proof does not need AC and was suggested by the |
|
38 |
referee for the JCM Paper: let f(x) be least y such |
|
39 |
that Q(x,y) |
|
40 |
*) |
|
|
20552
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
huffman
parents:
19765
diff
changeset
|
41 |
lemma no_choice: "\<forall>x. \<exists>y. Q x y ==> \<exists>(f :: 'a => nat). \<forall>x. Q x (f x)" |
| 14370 | 42 |
apply (rule_tac x = "%x. LEAST y. Q x y" in exI) |
43 |
apply (blast intro: LeastI) |
|
44 |
done |
|
45 |
||
| 15169 | 46 |
subsection{*Properties of the Star-transform Applied to Sets of Reals*}
|
| 14370 | 47 |
|
|
17429
e8d6ed3aacfe
merged Transfer.thy and StarType.thy into StarDef.thy; renamed Ifun2_of to starfun2; cleaned up
huffman
parents:
17318
diff
changeset
|
48 |
lemma STAR_UNIV_set: "*s*(UNIV::'a set) = (UNIV::'a star set)" |
|
17318
bc1c75855f3d
starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents:
17303
diff
changeset
|
49 |
by (transfer UNIV_def, rule refl) |
| 14370 | 50 |
|
|
17429
e8d6ed3aacfe
merged Transfer.thy and StarType.thy into StarDef.thy; renamed Ifun2_of to starfun2; cleaned up
huffman
parents:
17318
diff
changeset
|
51 |
lemma STAR_empty_set: "*s* {} = {}"
|
|
17318
bc1c75855f3d
starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents:
17303
diff
changeset
|
52 |
by (transfer empty_def, rule refl) |
| 14370 | 53 |
|
54 |
lemma STAR_Un: "*s* (A Un B) = *s* A Un *s* B" |
|
|
17318
bc1c75855f3d
starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents:
17303
diff
changeset
|
55 |
by (transfer Un_def, rule refl) |
| 14370 | 56 |
|
57 |
lemma STAR_Int: "*s* (A Int B) = *s* A Int *s* B" |
|
|
17318
bc1c75855f3d
starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents:
17303
diff
changeset
|
58 |
by (transfer Int_def, rule refl) |
| 14370 | 59 |
|
60 |
lemma STAR_Compl: "*s* -A = -( *s* A)" |
|
|
17318
bc1c75855f3d
starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents:
17303
diff
changeset
|
61 |
by (transfer Compl_def, rule refl) |
| 14370 | 62 |
|
|
17318
bc1c75855f3d
starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents:
17303
diff
changeset
|
63 |
lemma STAR_mem_Compl: "!!x. x \<notin> *s* F ==> x : *s* (- F)" |
|
bc1c75855f3d
starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents:
17303
diff
changeset
|
64 |
by (transfer Compl_def, simp) |
| 14370 | 65 |
|
66 |
lemma STAR_diff: "*s* (A - B) = *s* A - *s* B" |
|
|
17318
bc1c75855f3d
starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents:
17303
diff
changeset
|
67 |
by (transfer set_diff_def, rule refl) |
| 14370 | 68 |
|
69 |
lemma STAR_subset: "A <= B ==> *s* A <= *s* B" |
|
|
17318
bc1c75855f3d
starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents:
17303
diff
changeset
|
70 |
by (transfer subset_def, simp) |
|
bc1c75855f3d
starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents:
17303
diff
changeset
|
71 |
|
|
bc1c75855f3d
starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents:
17303
diff
changeset
|
72 |
lemma STAR_mem: "a \<in> A ==> star_of a : *s* A" |
|
bc1c75855f3d
starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents:
17303
diff
changeset
|
73 |
by transfer |
| 14370 | 74 |
|
|
17318
bc1c75855f3d
starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents:
17303
diff
changeset
|
75 |
lemma STAR_mem_iff: "(star_of x \<in> *s* A) = (x \<in> A)" |
|
bc1c75855f3d
starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents:
17303
diff
changeset
|
76 |
by (transfer, rule refl) |
| 14370 | 77 |
|
|
17318
bc1c75855f3d
starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents:
17303
diff
changeset
|
78 |
lemma STAR_star_of_image_subset: "star_of ` A <= *s* A" |
|
bc1c75855f3d
starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents:
17303
diff
changeset
|
79 |
by (auto simp add: STAR_mem) |
| 14370 | 80 |
|
81 |
lemma STAR_hypreal_of_real_Int: "*s* X Int Reals = hypreal_of_real ` X" |
|
|
17318
bc1c75855f3d
starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents:
17303
diff
changeset
|
82 |
by (auto simp add: SReal_def STAR_mem_iff) |
| 14370 | 83 |
|
| 14468 | 84 |
lemma lemma_not_hyprealA: "x \<notin> hypreal_of_real ` A ==> \<forall>y \<in> A. x \<noteq> hypreal_of_real y" |
|
14371
c78c7da09519
Conversion of HyperNat to Isar format and its declaration as a semiring
paulson
parents:
14370
diff
changeset
|
85 |
by auto |
| 14370 | 86 |
|
87 |
lemma lemma_Compl_eq: "- {n. X n = xa} = {n. X n \<noteq> xa}"
|
|
|
14371
c78c7da09519
Conversion of HyperNat to Isar format and its declaration as a semiring
paulson
parents:
14370
diff
changeset
|
88 |
by auto |
| 14370 | 89 |
|
90 |
lemma STAR_real_seq_to_hypreal: |
|
|
17318
bc1c75855f3d
starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents:
17303
diff
changeset
|
91 |
"\<forall>n. (X n) \<notin> M ==> star_n X \<notin> *s* M" |
|
17429
e8d6ed3aacfe
merged Transfer.thy and StarType.thy into StarDef.thy; renamed Ifun2_of to starfun2; cleaned up
huffman
parents:
17318
diff
changeset
|
92 |
apply (unfold starset_def star_of_def) |
|
17318
bc1c75855f3d
starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents:
17303
diff
changeset
|
93 |
apply (simp add: Iset_star_n) |
| 14370 | 94 |
done |
95 |
||
|
17318
bc1c75855f3d
starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents:
17303
diff
changeset
|
96 |
lemma STAR_singleton: "*s* {x} = {star_of x}"
|
|
bc1c75855f3d
starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents:
17303
diff
changeset
|
97 |
by simp |
|
bc1c75855f3d
starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents:
17303
diff
changeset
|
98 |
|
|
bc1c75855f3d
starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents:
17303
diff
changeset
|
99 |
lemma STAR_not_mem: "x \<notin> F ==> star_of x \<notin> *s* F" |
|
bc1c75855f3d
starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents:
17303
diff
changeset
|
100 |
by transfer |
| 14370 | 101 |
|
102 |
lemma STAR_subset_closed: "[| x : *s* A; A <= B |] ==> x : *s* B" |
|
|
14371
c78c7da09519
Conversion of HyperNat to Isar format and its declaration as a semiring
paulson
parents:
14370
diff
changeset
|
103 |
by (blast dest: STAR_subset) |
| 14370 | 104 |
|
| 15169 | 105 |
text{*Nonstandard extension of a set (defined using a constant
|
106 |
sequence) as a special case of an internal set*} |
|
| 14370 | 107 |
|
| 14468 | 108 |
lemma starset_n_starset: "\<forall>n. (As n = A) ==> *sn* As = *s* A" |
|
17318
bc1c75855f3d
starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents:
17303
diff
changeset
|
109 |
apply (drule expand_fun_eq [THEN iffD2]) |
|
17429
e8d6ed3aacfe
merged Transfer.thy and StarType.thy into StarDef.thy; renamed Ifun2_of to starfun2; cleaned up
huffman
parents:
17318
diff
changeset
|
110 |
apply (simp add: starset_n_def starset_def star_of_def) |
|
17318
bc1c75855f3d
starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents:
17303
diff
changeset
|
111 |
done |
| 14370 | 112 |
|
113 |
||
114 |
(*----------------------------------------------------------------*) |
|
115 |
(* Theorems about nonstandard extensions of functions *) |
|
116 |
(*----------------------------------------------------------------*) |
|
117 |
||
118 |
(*----------------------------------------------------------------*) |
|
119 |
(* Nonstandard extension of a function (defined using a *) |
|
120 |
(* constant sequence) as a special case of an internal function *) |
|
121 |
(*----------------------------------------------------------------*) |
|
122 |
||
| 14468 | 123 |
lemma starfun_n_starfun: "\<forall>n. (F n = f) ==> *fn* F = *f* f" |
|
17318
bc1c75855f3d
starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents:
17303
diff
changeset
|
124 |
apply (drule expand_fun_eq [THEN iffD2]) |
|
17429
e8d6ed3aacfe
merged Transfer.thy and StarType.thy into StarDef.thy; renamed Ifun2_of to starfun2; cleaned up
huffman
parents:
17318
diff
changeset
|
125 |
apply (simp add: starfun_n_def starfun_def star_of_def) |
|
17318
bc1c75855f3d
starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents:
17303
diff
changeset
|
126 |
done |
| 14370 | 127 |
|
128 |
||
129 |
(* |
|
| 15003 | 130 |
Prove that abs for hypreal is a nonstandard extension of abs for real w/o |
| 14370 | 131 |
use of congruence property (proved after this for general |
| 15003 | 132 |
nonstandard extensions of real valued functions). |
| 14370 | 133 |
|
| 15003 | 134 |
Proof now Uses the ultrafilter tactic! |
| 14370 | 135 |
*) |
136 |
||
137 |
lemma hrabs_is_starext_rabs: "is_starext abs abs" |
|
| 14468 | 138 |
apply (simp add: is_starext_def, safe) |
|
17429
e8d6ed3aacfe
merged Transfer.thy and StarType.thy into StarDef.thy; renamed Ifun2_of to starfun2; cleaned up
huffman
parents:
17318
diff
changeset
|
139 |
apply (rule_tac x=x in star_cases) |
|
e8d6ed3aacfe
merged Transfer.thy and StarType.thy into StarDef.thy; renamed Ifun2_of to starfun2; cleaned up
huffman
parents:
17318
diff
changeset
|
140 |
apply (rule_tac x=y in star_cases) |
|
e8d6ed3aacfe
merged Transfer.thy and StarType.thy into StarDef.thy; renamed Ifun2_of to starfun2; cleaned up
huffman
parents:
17318
diff
changeset
|
141 |
apply (unfold star_n_def, auto) |
| 17298 | 142 |
apply (rule bexI, rule_tac [2] lemma_starrel_refl) |
143 |
apply (rule bexI, rule_tac [2] lemma_starrel_refl) |
|
| 17302 | 144 |
apply (fold star_n_def) |
|
17429
e8d6ed3aacfe
merged Transfer.thy and StarType.thy into StarDef.thy; renamed Ifun2_of to starfun2; cleaned up
huffman
parents:
17318
diff
changeset
|
145 |
apply (unfold star_abs_def starfun_def star_of_def) |
| 17302 | 146 |
apply (simp add: Ifun_star_n star_n_eq_iff) |
| 14370 | 147 |
done |
148 |
||
| 15169 | 149 |
text{*Nonstandard extension of functions*}
|
| 14370 | 150 |
|
151 |
lemma starfun: |
|
|
17318
bc1c75855f3d
starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents:
17303
diff
changeset
|
152 |
"( *f* f) (star_n X) = star_n (%n. f (X n))" |
|
17429
e8d6ed3aacfe
merged Transfer.thy and StarType.thy into StarDef.thy; renamed Ifun2_of to starfun2; cleaned up
huffman
parents:
17318
diff
changeset
|
153 |
by (simp add: starfun_def star_of_def Ifun_star_n) |
| 14370 | 154 |
|
| 14477 | 155 |
lemma starfun_if_eq: |
|
17429
e8d6ed3aacfe
merged Transfer.thy and StarType.thy into StarDef.thy; renamed Ifun2_of to starfun2; cleaned up
huffman
parents:
17318
diff
changeset
|
156 |
"!!w. w \<noteq> star_of x |
|
17318
bc1c75855f3d
starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents:
17303
diff
changeset
|
157 |
==> ( *f* (\<lambda>z. if z = x then a else g z)) w = ( *f* g) w" |
|
17429
e8d6ed3aacfe
merged Transfer.thy and StarType.thy into StarDef.thy; renamed Ifun2_of to starfun2; cleaned up
huffman
parents:
17318
diff
changeset
|
158 |
by (transfer, simp) |
| 14477 | 159 |
|
| 14370 | 160 |
(*------------------------------------------- |
|
14371
c78c7da09519
Conversion of HyperNat to Isar format and its declaration as a semiring
paulson
parents:
14370
diff
changeset
|
161 |
multiplication: ( *f) x ( *g) = *(f x g) |
| 14370 | 162 |
------------------------------------------*) |
|
17318
bc1c75855f3d
starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents:
17303
diff
changeset
|
163 |
lemma starfun_mult: "!!x. ( *f* f) x * ( *f* g) x = ( *f* (%x. f x * g x)) x" |
|
bc1c75855f3d
starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents:
17303
diff
changeset
|
164 |
by (transfer, rule refl) |
| 14370 | 165 |
declare starfun_mult [symmetric, simp] |
166 |
||
167 |
(*--------------------------------------- |
|
|
14371
c78c7da09519
Conversion of HyperNat to Isar format and its declaration as a semiring
paulson
parents:
14370
diff
changeset
|
168 |
addition: ( *f) + ( *g) = *(f + g) |
| 14370 | 169 |
---------------------------------------*) |
|
17318
bc1c75855f3d
starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents:
17303
diff
changeset
|
170 |
lemma starfun_add: "!!x. ( *f* f) x + ( *f* g) x = ( *f* (%x. f x + g x)) x" |
|
bc1c75855f3d
starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents:
17303
diff
changeset
|
171 |
by (transfer, rule refl) |
| 14370 | 172 |
declare starfun_add [symmetric, simp] |
173 |
||
174 |
(*-------------------------------------------- |
|
|
14371
c78c7da09519
Conversion of HyperNat to Isar format and its declaration as a semiring
paulson
parents:
14370
diff
changeset
|
175 |
subtraction: ( *f) + -( *g) = *(f + -g) |
| 14370 | 176 |
-------------------------------------------*) |
|
17318
bc1c75855f3d
starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents:
17303
diff
changeset
|
177 |
lemma starfun_minus: "!!x. - ( *f* f) x = ( *f* (%x. - f x)) x" |
|
bc1c75855f3d
starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents:
17303
diff
changeset
|
178 |
by (transfer, rule refl) |
| 14370 | 179 |
declare starfun_minus [symmetric, simp] |
180 |
||
181 |
(*FIXME: delete*) |
|
|
17318
bc1c75855f3d
starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents:
17303
diff
changeset
|
182 |
lemma starfun_add_minus: "!!x. ( *f* f) x + -( *f* g) x = ( *f* (%x. f x + -g x)) x" |
|
bc1c75855f3d
starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents:
17303
diff
changeset
|
183 |
by (transfer, rule refl) |
| 14370 | 184 |
declare starfun_add_minus [symmetric, simp] |
185 |
||
|
17318
bc1c75855f3d
starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents:
17303
diff
changeset
|
186 |
lemma starfun_diff: "!!x. ( *f* f) x - ( *f* g) x = ( *f* (%x. f x - g x)) x" |
|
bc1c75855f3d
starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents:
17303
diff
changeset
|
187 |
by (transfer, rule refl) |
| 14370 | 188 |
declare starfun_diff [symmetric, simp] |
189 |
||
190 |
(*-------------------------------------- |
|
|
14371
c78c7da09519
Conversion of HyperNat to Isar format and its declaration as a semiring
paulson
parents:
14370
diff
changeset
|
191 |
composition: ( *f) o ( *g) = *(f o g) |
| 14370 | 192 |
---------------------------------------*) |
193 |
||
194 |
lemma starfun_o2: "(%x. ( *f* f) (( *f* g) x)) = *f* (%x. f (g x))" |
|
|
17318
bc1c75855f3d
starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents:
17303
diff
changeset
|
195 |
by (transfer, rule refl) |
| 14370 | 196 |
|
197 |
lemma starfun_o: "( *f* f) o ( *f* g) = ( *f* (f o g))" |
|
|
17318
bc1c75855f3d
starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents:
17303
diff
changeset
|
198 |
by (transfer o_def, rule refl) |
| 14370 | 199 |
|
| 15169 | 200 |
text{*NS extension of constant function*}
|
|
17318
bc1c75855f3d
starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents:
17303
diff
changeset
|
201 |
lemma starfun_const_fun [simp]: "!!x. ( *f* (%x. k)) x = star_of k" |
|
bc1c75855f3d
starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents:
17303
diff
changeset
|
202 |
by (transfer, rule refl) |
| 14370 | 203 |
|
| 15169 | 204 |
text{*the NS extension of the identity function*}
|
| 14370 | 205 |
|
|
17318
bc1c75855f3d
starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents:
17303
diff
changeset
|
206 |
lemma starfun_Id [simp]: "!!x. ( *f* (%x. x)) x = x" |
|
bc1c75855f3d
starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents:
17303
diff
changeset
|
207 |
by (transfer, rule refl) |
| 14370 | 208 |
|
|
17318
bc1c75855f3d
starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents:
17303
diff
changeset
|
209 |
(* this is trivial, given starfun_Id *) |
|
bc1c75855f3d
starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents:
17303
diff
changeset
|
210 |
lemma starfun_Idfun_approx: |
|
20552
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
huffman
parents:
19765
diff
changeset
|
211 |
"x @= star_of a ==> ( *f* (%x. x)) x @= star_of a" |
|
17318
bc1c75855f3d
starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents:
17303
diff
changeset
|
212 |
by (simp only: starfun_Id) |
| 14370 | 213 |
|
| 15169 | 214 |
text{*The Star-function is a (nonstandard) extension of the function*}
|
| 14370 | 215 |
|
216 |
lemma is_starext_starfun: "is_starext ( *f* f) f" |
|
| 14468 | 217 |
apply (simp add: is_starext_def, auto) |
|
17318
bc1c75855f3d
starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents:
17303
diff
changeset
|
218 |
apply (rule_tac x = x in star_cases) |
|
bc1c75855f3d
starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents:
17303
diff
changeset
|
219 |
apply (rule_tac x = y in star_cases) |
|
bc1c75855f3d
starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents:
17303
diff
changeset
|
220 |
apply (auto intro!: bexI [OF _ Rep_star_star_n] |
|
bc1c75855f3d
starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents:
17303
diff
changeset
|
221 |
simp add: starfun star_n_eq_iff) |
| 14370 | 222 |
done |
223 |
||
| 15169 | 224 |
text{*Any nonstandard extension is in fact the Star-function*}
|
| 14370 | 225 |
|
226 |
lemma is_starfun_starext: "is_starext F f ==> F = *f* f" |
|
| 14468 | 227 |
apply (simp add: is_starext_def) |
| 14370 | 228 |
apply (rule ext) |
|
17318
bc1c75855f3d
starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents:
17303
diff
changeset
|
229 |
apply (rule_tac x = x in star_cases) |
|
14371
c78c7da09519
Conversion of HyperNat to Isar format and its declaration as a semiring
paulson
parents:
14370
diff
changeset
|
230 |
apply (drule_tac x = x in spec) |
| 14370 | 231 |
apply (drule_tac x = "( *f* f) x" in spec) |
|
14371
c78c7da09519
Conversion of HyperNat to Isar format and its declaration as a semiring
paulson
parents:
14370
diff
changeset
|
232 |
apply (auto dest!: FreeUltrafilterNat_Compl_mem simp add: starfun, ultra) |
| 14370 | 233 |
done |
234 |
||
235 |
lemma is_starext_starfun_iff: "(is_starext F f) = (F = *f* f)" |
|
|
14371
c78c7da09519
Conversion of HyperNat to Isar format and its declaration as a semiring
paulson
parents:
14370
diff
changeset
|
236 |
by (blast intro: is_starfun_starext is_starext_starfun) |
| 14370 | 237 |
|
| 15169 | 238 |
text{*extented function has same solution as its standard
|
| 14370 | 239 |
version for real arguments. i.e they are the same |
| 15169 | 240 |
for all real arguments*} |
|
20552
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
huffman
parents:
19765
diff
changeset
|
241 |
lemma starfun_eq: "( *f* f) (star_of a) = star_of (f a)" |
|
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
huffman
parents:
19765
diff
changeset
|
242 |
by (rule starfun_star_of) |
| 14370 | 243 |
|
|
20552
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
huffman
parents:
19765
diff
changeset
|
244 |
lemma starfun_approx: "( *f* f) (star_of a) @= star_of (f a)" |
|
17318
bc1c75855f3d
starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents:
17303
diff
changeset
|
245 |
by simp |
| 14370 | 246 |
|
247 |
(* useful for NS definition of derivatives *) |
|
|
17318
bc1c75855f3d
starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents:
17303
diff
changeset
|
248 |
lemma starfun_lambda_cancel: |
|
bc1c75855f3d
starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents:
17303
diff
changeset
|
249 |
"!!x'. ( *f* (%h. f (x + h))) x' = ( *f* f) (star_of x + x')" |
|
bc1c75855f3d
starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents:
17303
diff
changeset
|
250 |
by (transfer, rule refl) |
| 14370 | 251 |
|
|
17318
bc1c75855f3d
starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents:
17303
diff
changeset
|
252 |
lemma starfun_lambda_cancel2: |
|
bc1c75855f3d
starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents:
17303
diff
changeset
|
253 |
"( *f* (%h. f(g(x + h)))) x' = ( *f* (f o g)) (star_of x + x')" |
|
bc1c75855f3d
starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents:
17303
diff
changeset
|
254 |
by (unfold o_def, rule starfun_lambda_cancel) |
| 14370 | 255 |
|
|
20552
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
huffman
parents:
19765
diff
changeset
|
256 |
lemma starfun_mult_HFinite_approx: |
|
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
huffman
parents:
19765
diff
changeset
|
257 |
fixes l m :: "'a::real_normed_algebra star" |
|
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
huffman
parents:
19765
diff
changeset
|
258 |
shows "[| ( *f* f) x @= l; ( *f* g) x @= m; |
| 14370 | 259 |
l: HFinite; m: HFinite |
|
17318
bc1c75855f3d
starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents:
17303
diff
changeset
|
260 |
|] ==> ( *f* (%x. f x * g x)) x @= l * m" |
|
bc1c75855f3d
starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents:
17303
diff
changeset
|
261 |
apply (drule (3) approx_mult_HFinite) |
| 14370 | 262 |
apply (auto intro: approx_HFinite [OF _ approx_sym]) |
263 |
done |
|
264 |
||
|
17318
bc1c75855f3d
starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents:
17303
diff
changeset
|
265 |
lemma starfun_add_approx: "[| ( *f* f) x @= l; ( *f* g) x @= m |
|
bc1c75855f3d
starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents:
17303
diff
changeset
|
266 |
|] ==> ( *f* (%x. f x + g x)) x @= l + m" |
|
bc1c75855f3d
starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents:
17303
diff
changeset
|
267 |
by (auto intro: approx_add) |
| 14370 | 268 |
|
| 15169 | 269 |
text{*Examples: hrabs is nonstandard extension of rabs
|
270 |
inverse is nonstandard extension of inverse*} |
|
| 14370 | 271 |
|
272 |
(* can be proved easily using theorem "starfun" and *) |
|
273 |
(* properties of ultrafilter as for inverse below we *) |
|
274 |
(* use the theorem we proved above instead *) |
|
275 |
||
276 |
lemma starfun_rabs_hrabs: "*f* abs = abs" |
|
|
20552
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
huffman
parents:
19765
diff
changeset
|
277 |
by (simp only: star_abs_def) |
| 14370 | 278 |
|
|
17318
bc1c75855f3d
starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents:
17303
diff
changeset
|
279 |
lemma starfun_inverse_inverse [simp]: "( *f* inverse) x = inverse(x)" |
|
20552
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
huffman
parents:
19765
diff
changeset
|
280 |
by (simp only: star_inverse_def) |
| 14370 | 281 |
|
|
17318
bc1c75855f3d
starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents:
17303
diff
changeset
|
282 |
lemma starfun_inverse: "!!x. inverse (( *f* f) x) = ( *f* (%x. inverse (f x))) x" |
|
bc1c75855f3d
starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents:
17303
diff
changeset
|
283 |
by (transfer, rule refl) |
| 14370 | 284 |
declare starfun_inverse [symmetric, simp] |
285 |
||
|
17318
bc1c75855f3d
starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents:
17303
diff
changeset
|
286 |
lemma starfun_divide: "!!x. ( *f* f) x / ( *f* g) x = ( *f* (%x. f x / g x)) x" |
|
bc1c75855f3d
starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents:
17303
diff
changeset
|
287 |
by (transfer, rule refl) |
| 14370 | 288 |
declare starfun_divide [symmetric, simp] |
289 |
||
|
17318
bc1c75855f3d
starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents:
17303
diff
changeset
|
290 |
lemma starfun_inverse2: "!!x. inverse (( *f* f) x) = ( *f* (%x. inverse (f x))) x" |
|
bc1c75855f3d
starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents:
17303
diff
changeset
|
291 |
by (transfer, rule refl) |
| 14370 | 292 |
|
| 15169 | 293 |
text{*General lemma/theorem needed for proofs in elementary
|
294 |
topology of the reals*} |
|
| 14370 | 295 |
lemma starfun_mem_starset: |
|
17318
bc1c75855f3d
starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents:
17303
diff
changeset
|
296 |
"!!x. ( *f* f) x : *s* A ==> x : *s* {x. f x \<in> A}"
|
|
bc1c75855f3d
starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents:
17303
diff
changeset
|
297 |
by (transfer, simp) |
| 14370 | 298 |
|
| 15169 | 299 |
text{*Alternative definition for hrabs with rabs function
|
| 14370 | 300 |
applied entrywise to equivalence class representative. |
| 15169 | 301 |
This is easily proved using starfun and ns extension thm*} |
| 15170 | 302 |
lemma hypreal_hrabs: |
|
17318
bc1c75855f3d
starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents:
17303
diff
changeset
|
303 |
"abs (star_n X) = star_n (%n. abs (X n))" |
|
bc1c75855f3d
starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents:
17303
diff
changeset
|
304 |
by (simp only: starfun_rabs_hrabs [symmetric] starfun) |
| 14370 | 305 |
|
| 15169 | 306 |
text{*nonstandard extension of set through nonstandard extension
|
| 14370 | 307 |
of rabs function i.e hrabs. A more general result should be |
308 |
where we replace rabs by some arbitrary function f and hrabs |
|
| 15169 | 309 |
by its NS extenson. See second NS set extension below.*} |
| 14370 | 310 |
lemma STAR_rabs_add_minus: |
311 |
"*s* {x. abs (x + - y) < r} =
|
|
|
20552
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
huffman
parents:
19765
diff
changeset
|
312 |
{x. abs(x + -star_of y) < star_of r}"
|
|
17318
bc1c75855f3d
starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents:
17303
diff
changeset
|
313 |
by (transfer, rule refl) |
| 14370 | 314 |
|
315 |
lemma STAR_starfun_rabs_add_minus: |
|
316 |
"*s* {x. abs (f x + - y) < r} =
|
|
|
20552
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
huffman
parents:
19765
diff
changeset
|
317 |
{x. abs(( *f* f) x + -star_of y) < star_of r}"
|
|
17318
bc1c75855f3d
starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents:
17303
diff
changeset
|
318 |
by (transfer, rule refl) |
| 14370 | 319 |
|
| 15169 | 320 |
text{*Another characterization of Infinitesimal and one of @= relation.
|
| 15170 | 321 |
In this theory since @{text hypreal_hrabs} proved here. Maybe
|
322 |
move both theorems??*} |
|
|
14378
69c4d5997669
generic of_nat and of_int functions, and generalization of iszero
paulson
parents:
14371
diff
changeset
|
323 |
lemma Infinitesimal_FreeUltrafilterNat_iff2: |
|
20552
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
huffman
parents:
19765
diff
changeset
|
324 |
"(star_n X \<in> Infinitesimal) = |
|
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
huffman
parents:
19765
diff
changeset
|
325 |
(\<forall>m. {n. norm(X n) < inverse(real(Suc m))}
|
| 14468 | 326 |
\<in> FreeUltrafilterNat)" |
|
20552
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
huffman
parents:
19765
diff
changeset
|
327 |
by (simp add: Infinitesimal_hypreal_of_nat_iff star_of_def |
|
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
huffman
parents:
19765
diff
changeset
|
328 |
hnorm_def star_of_nat_def starfun_star_n |
|
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
huffman
parents:
19765
diff
changeset
|
329 |
star_n_inverse star_n_less hypreal_of_nat_eq) |
|
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
huffman
parents:
19765
diff
changeset
|
330 |
|
|
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
huffman
parents:
19765
diff
changeset
|
331 |
lemma approx_FreeUltrafilterNat_iff: "star_n X @= star_n Y = |
| 20563 | 332 |
(\<forall>r>0. {n. norm (X n - Y n) < r} : FreeUltrafilterNat)"
|
|
20552
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
huffman
parents:
19765
diff
changeset
|
333 |
apply (subst approx_minus_iff) |
|
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
huffman
parents:
19765
diff
changeset
|
334 |
apply (rule mem_infmal_iff [THEN subst]) |
| 20563 | 335 |
apply (simp add: star_n_diff) |
|
20552
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
huffman
parents:
19765
diff
changeset
|
336 |
apply (simp add: Infinitesimal_FreeUltrafilterNat_iff) |
| 14370 | 337 |
done |
338 |
||
|
20552
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
huffman
parents:
19765
diff
changeset
|
339 |
lemma approx_FreeUltrafilterNat_iff2: "star_n X @= star_n Y = |
| 20563 | 340 |
(\<forall>m. {n. norm (X n - Y n) <
|
| 14370 | 341 |
inverse(real(Suc m))} : FreeUltrafilterNat)" |
342 |
apply (subst approx_minus_iff) |
|
343 |
apply (rule mem_infmal_iff [THEN subst]) |
|
| 20563 | 344 |
apply (simp add: star_n_diff) |
|
20552
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
huffman
parents:
19765
diff
changeset
|
345 |
apply (simp add: Infinitesimal_FreeUltrafilterNat_iff2) |
| 14370 | 346 |
done |
347 |
||
348 |
lemma inj_starfun: "inj starfun" |
|
349 |
apply (rule inj_onI) |
|
|
14371
c78c7da09519
Conversion of HyperNat to Isar format and its declaration as a semiring
paulson
parents:
14370
diff
changeset
|
350 |
apply (rule ext, rule ccontr) |
|
17318
bc1c75855f3d
starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents:
17303
diff
changeset
|
351 |
apply (drule_tac x = "star_n (%n. xa)" in fun_cong) |
|
bc1c75855f3d
starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents:
17303
diff
changeset
|
352 |
apply (auto simp add: starfun star_n_eq_iff) |
| 14370 | 353 |
done |
354 |
||
355 |
end |