| author | wenzelm |
| Wed, 14 Oct 2015 17:24:21 +0200 | |
| changeset 61441 | 20ff1d5c74e1 |
| parent 60680 | 589ed01b94fe |
| child 61586 | 5197a2ecb658 |
| child 61609 | 77b453bd616f |
| permissions | -rw-r--r-- |
| 58834 | 1 |
(* Author: Johannes Hoelzl, TU Muenchen |
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
2 |
Coercions removed by Dmitriy Traytel *) |
| 30122 | 3 |
|
| 60533 | 4 |
section \<open>Prove Real Valued Inequalities by Computation\<close> |
| 30122 | 5 |
|
| 40892 | 6 |
theory Approximation |
|
41413
64cd30d6b0b8
explicit file specifications -- avoid secondary load path;
wenzelm
parents:
41024
diff
changeset
|
7 |
imports |
|
64cd30d6b0b8
explicit file specifications -- avoid secondary load path;
wenzelm
parents:
41024
diff
changeset
|
8 |
Complex_Main |
|
64cd30d6b0b8
explicit file specifications -- avoid secondary load path;
wenzelm
parents:
41024
diff
changeset
|
9 |
"~~/src/HOL/Library/Float" |
| 51544 | 10 |
Dense_Linear_Order |
|
51143
0a2371e7ced3
two target language numeral types: integer and natural, as replacement for code_numeral;
haftmann
parents:
49962
diff
changeset
|
11 |
"~~/src/HOL/Library/Code_Target_Numeral" |
| 56923 | 12 |
keywords "approximate" :: diag |
| 29805 | 13 |
begin |
14 |
||
|
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54269
diff
changeset
|
15 |
declare powr_numeral [simp] |
|
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54269
diff
changeset
|
16 |
declare powr_neg_one [simp] |
|
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54269
diff
changeset
|
17 |
declare powr_neg_numeral [simp] |
| 47600 | 18 |
|
| 29805 | 19 |
section "Horner Scheme" |
20 |
||
| 60533 | 21 |
subsection \<open>Define auxiliary helper @{text horner} function\<close>
|
| 29805 | 22 |
|
|
31098
73dd67adf90a
replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents:
30971
diff
changeset
|
23 |
primrec horner :: "(nat \<Rightarrow> nat) \<Rightarrow> (nat \<Rightarrow> nat \<Rightarrow> nat) \<Rightarrow> nat \<Rightarrow> nat \<Rightarrow> nat \<Rightarrow> real \<Rightarrow> real" where |
| 29805 | 24 |
"horner F G 0 i k x = 0" | |
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
25 |
"horner F G (Suc n) i k x = 1 / k - x * horner F G n (F i) (G i k) x" |
| 29805 | 26 |
|
| 49351 | 27 |
lemma horner_schema': |
28 |
fixes x :: real and a :: "nat \<Rightarrow> real" |
|
| 29805 | 29 |
shows "a 0 - x * (\<Sum> i=0..<n. (-1)^i * a (Suc i) * x^i) = (\<Sum> i=0..<Suc n. (-1)^i * a i * x^i)" |
30 |
proof - |
|
| 49351 | 31 |
have shift_pow: "\<And>i. - (x * ((-1)^i * a (Suc i) * x ^ i)) = (-1)^(Suc i) * a (Suc i) * x ^ (Suc i)" |
32 |
by auto |
|
33 |
show ?thesis |
|
|
54230
b1d955791529
more simplification rules on unary and binary minus
haftmann
parents:
53077
diff
changeset
|
34 |
unfolding setsum_right_distrib shift_pow uminus_add_conv_diff [symmetric] setsum_negf[symmetric] |
| 49351 | 35 |
setsum_head_upt_Suc[OF zero_less_Suc] |
| 57418 | 36 |
setsum.reindex[OF inj_Suc, unfolded comp_def, symmetric, of "\<lambda> n. (-1)^n *a n * x^n"] by auto |
| 29805 | 37 |
qed |
38 |
||
| 49351 | 39 |
lemma horner_schema: |
40 |
fixes f :: "nat \<Rightarrow> nat" and G :: "nat \<Rightarrow> nat \<Rightarrow> nat" and F :: "nat \<Rightarrow> nat" |
|
| 30971 | 41 |
assumes f_Suc: "\<And>n. f (Suc n) = G ((F ^^ n) s) (f n)" |
|
58410
6d46ad54a2ab
explicit separation of signed and unsigned numerals using existing lexical categories num and xnum
haftmann
parents:
58310
diff
changeset
|
42 |
shows "horner F G n ((F ^^ j') s) (f j') x = (\<Sum> j = 0..< n. (- 1) ^ j * (1 / (f (j' + j))) * x ^ j)" |
|
45129
1fce03e3e8ad
tuned proofs -- eliminated vacuous "induct arbitrary: ..." situations;
wenzelm
parents:
44821
diff
changeset
|
43 |
proof (induct n arbitrary: j') |
|
1fce03e3e8ad
tuned proofs -- eliminated vacuous "induct arbitrary: ..." situations;
wenzelm
parents:
44821
diff
changeset
|
44 |
case 0 |
|
1fce03e3e8ad
tuned proofs -- eliminated vacuous "induct arbitrary: ..." situations;
wenzelm
parents:
44821
diff
changeset
|
45 |
then show ?case by auto |
|
1fce03e3e8ad
tuned proofs -- eliminated vacuous "induct arbitrary: ..." situations;
wenzelm
parents:
44821
diff
changeset
|
46 |
next |
| 29805 | 47 |
case (Suc n) |
48 |
show ?case unfolding horner.simps Suc[where j'="Suc j'", unfolded funpow.simps comp_def f_Suc] |
|
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
49 |
using horner_schema'[of "\<lambda> j. 1 / (f (j' + j))"] by auto |
|
45129
1fce03e3e8ad
tuned proofs -- eliminated vacuous "induct arbitrary: ..." situations;
wenzelm
parents:
44821
diff
changeset
|
50 |
qed |
| 29805 | 51 |
|
52 |
lemma horner_bounds': |
|
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
53 |
fixes lb :: "nat \<Rightarrow> nat \<Rightarrow> nat \<Rightarrow> float \<Rightarrow> float" and ub :: "nat \<Rightarrow> nat \<Rightarrow> nat \<Rightarrow> float \<Rightarrow> float" |
|
31098
73dd67adf90a
replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents:
30971
diff
changeset
|
54 |
assumes "0 \<le> real x" and f_Suc: "\<And>n. f (Suc n) = G ((F ^^ n) s) (f n)" |
| 49351 | 55 |
and lb_0: "\<And> i k x. lb 0 i k x = 0" |
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
56 |
and lb_Suc: "\<And> n i k x. lb (Suc n) i k x = float_plus_down prec |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
57 |
(lapprox_rat prec 1 k) |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
58 |
(- float_round_up prec (x * (ub n (F i) (G i k) x)))" |
| 49351 | 59 |
and ub_0: "\<And> i k x. ub 0 i k x = 0" |
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
60 |
and ub_Suc: "\<And> n i k x. ub (Suc n) i k x = float_plus_up prec |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
61 |
(rapprox_rat prec 1 k) |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
62 |
(- float_round_down prec (x * (lb n (F i) (G i k) x)))" |
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
63 |
shows "(lb n ((F ^^ j') s) (f j') x) \<le> horner F G n ((F ^^ j') s) (f j') x \<and> |
|
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
64 |
horner F G n ((F ^^ j') s) (f j') x \<le> (ub n ((F ^^ j') s) (f j') x)" |
| 29805 | 65 |
(is "?lb n j' \<le> ?horner n j' \<and> ?horner n j' \<le> ?ub n j'") |
66 |
proof (induct n arbitrary: j') |
|
| 49351 | 67 |
case 0 |
68 |
thus ?case unfolding lb_0 ub_0 horner.simps by auto |
|
| 29805 | 69 |
next |
70 |
case (Suc n) |
|
|
47599
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
71 |
thus ?case using lapprox_rat[of prec 1 "f j'"] using rapprox_rat[of 1 "f j'" prec] |
| 60533 | 72 |
Suc[where j'="Suc j'"] \<open>0 \<le> real x\<close> |
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
73 |
by (auto intro!: add_mono mult_left_mono float_round_down_le float_round_up_le |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
74 |
order_trans[OF add_mono[OF _ float_plus_down_le]] |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
75 |
order_trans[OF _ add_mono[OF _ float_plus_up_le]] |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
76 |
simp add: lb_Suc ub_Suc field_simps f_Suc) |
| 29805 | 77 |
qed |
78 |
||
79 |
subsection "Theorems for floating point functions implementing the horner scheme" |
|
80 |
||
| 60533 | 81 |
text \<open> |
| 29805 | 82 |
|
83 |
Here @{term_type "f :: nat \<Rightarrow> nat"} is the sequence defining the Taylor series, the coefficients are
|
|
84 |
all alternating and reciprocs. We use @{term G} and @{term F} to describe the computation of @{term f}.
|
|
85 |
||
| 60533 | 86 |
\<close> |
| 29805 | 87 |
|
| 49351 | 88 |
lemma horner_bounds: |
89 |
fixes F :: "nat \<Rightarrow> nat" and G :: "nat \<Rightarrow> nat \<Rightarrow> nat" |
|
|
31098
73dd67adf90a
replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents:
30971
diff
changeset
|
90 |
assumes "0 \<le> real x" and f_Suc: "\<And>n. f (Suc n) = G ((F ^^ n) s) (f n)" |
| 49351 | 91 |
and lb_0: "\<And> i k x. lb 0 i k x = 0" |
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
92 |
and lb_Suc: "\<And> n i k x. lb (Suc n) i k x = float_plus_down prec |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
93 |
(lapprox_rat prec 1 k) |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
94 |
(- float_round_up prec (x * (ub n (F i) (G i k) x)))" |
| 49351 | 95 |
and ub_0: "\<And> i k x. ub 0 i k x = 0" |
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
96 |
and ub_Suc: "\<And> n i k x. ub (Suc n) i k x = float_plus_up prec |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
97 |
(rapprox_rat prec 1 k) |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
98 |
(- float_round_down prec (x * (lb n (F i) (G i k) x)))" |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
99 |
shows "(lb n ((F ^^ j') s) (f j') x) \<le> (\<Sum>j=0..<n. (- 1) ^ j * (1 / (f (j' + j))) * (x ^ j))" |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
100 |
(is "?lb") |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
101 |
and "(\<Sum>j=0..<n. (- 1) ^ j * (1 / (f (j' + j))) * (x ^ j)) \<le> (ub n ((F ^^ j') s) (f j') x)" |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
102 |
(is "?ub") |
| 29805 | 103 |
proof - |
| 31809 | 104 |
have "?lb \<and> ?ub" |
| 60533 | 105 |
using horner_bounds'[where lb=lb, OF \<open>0 \<le> real x\<close> f_Suc lb_0 lb_Suc ub_0 ub_Suc] |
| 29805 | 106 |
unfolding horner_schema[where f=f, OF f_Suc] . |
107 |
thus "?lb" and "?ub" by auto |
|
108 |
qed |
|
109 |
||
| 49351 | 110 |
lemma horner_bounds_nonpos: |
111 |
fixes F :: "nat \<Rightarrow> nat" and G :: "nat \<Rightarrow> nat \<Rightarrow> nat" |
|
|
31098
73dd67adf90a
replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents:
30971
diff
changeset
|
112 |
assumes "real x \<le> 0" and f_Suc: "\<And>n. f (Suc n) = G ((F ^^ n) s) (f n)" |
| 49351 | 113 |
and lb_0: "\<And> i k x. lb 0 i k x = 0" |
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
114 |
and lb_Suc: "\<And> n i k x. lb (Suc n) i k x = float_plus_down prec |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
115 |
(lapprox_rat prec 1 k) |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
116 |
(float_round_down prec (x * (ub n (F i) (G i k) x)))" |
| 49351 | 117 |
and ub_0: "\<And> i k x. ub 0 i k x = 0" |
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
118 |
and ub_Suc: "\<And> n i k x. ub (Suc n) i k x = float_plus_up prec |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
119 |
(rapprox_rat prec 1 k) |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
120 |
(float_round_up prec (x * (lb n (F i) (G i k) x)))" |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
121 |
shows "(lb n ((F ^^ j') s) (f j') x) \<le> (\<Sum>j=0..<n. (1 / (f (j' + j))) * real x ^ j)" (is "?lb") |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
122 |
and "(\<Sum>j=0..<n. (1 / (f (j' + j))) * real x ^ j) \<le> (ub n ((F ^^ j') s) (f j') x)" (is "?ub") |
| 29805 | 123 |
proof - |
| 60680 | 124 |
have diff_mult_minus: "x - y * z = x + - y * z" for x y z :: float by simp |
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
125 |
have sum_eq: "(\<Sum>j=0..<n. (1 / (f (j' + j))) * real x ^ j) = |
|
58410
6d46ad54a2ab
explicit separation of signed and unsigned numerals using existing lexical categories num and xnum
haftmann
parents:
58310
diff
changeset
|
126 |
(\<Sum>j = 0..<n. (- 1) ^ j * (1 / (f (j' + j))) * real (- x) ^ j)" |
|
47599
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
127 |
by (auto simp add: field_simps power_mult_distrib[symmetric]) |
|
31098
73dd67adf90a
replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents:
30971
diff
changeset
|
128 |
have "0 \<le> real (-x)" using assms by auto |
| 29805 | 129 |
from horner_bounds[where G=G and F=F and f=f and s=s and prec=prec |
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
130 |
and lb="\<lambda> n i k x. lb n i k (-x)" and ub="\<lambda> n i k x. ub n i k (-x)", |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
131 |
unfolded lb_Suc ub_Suc diff_mult_minus, |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
132 |
OF this f_Suc lb_0 _ ub_0 _] |
| 29805 | 133 |
show "?lb" and "?ub" unfolding minus_minus sum_eq |
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
134 |
by (auto simp: minus_float_round_up_eq minus_float_round_down_eq) |
| 29805 | 135 |
qed |
136 |
||
| 60680 | 137 |
|
| 60533 | 138 |
subsection \<open>Selectors for next even or odd number\<close> |
139 |
||
140 |
text \<open> |
|
| 29805 | 141 |
The horner scheme computes alternating series. To get the upper and lower bounds we need to |
142 |
guarantee to access a even or odd member. To do this we use @{term get_odd} and @{term get_even}.
|
|
| 60533 | 143 |
\<close> |
| 29805 | 144 |
|
145 |
definition get_odd :: "nat \<Rightarrow> nat" where |
|
146 |
"get_odd n = (if odd n then n else (Suc n))" |
|
147 |
||
148 |
definition get_even :: "nat \<Rightarrow> nat" where |
|
149 |
"get_even n = (if even n then n else (Suc n))" |
|
150 |
||
| 60680 | 151 |
lemma get_odd[simp]: "odd (get_odd n)" |
152 |
unfolding get_odd_def by (cases "odd n") auto |
|
153 |
||
154 |
lemma get_even[simp]: "even (get_even n)" |
|
155 |
unfolding get_even_def by (cases "even n") auto |
|
156 |
||
| 29805 | 157 |
lemma get_odd_ex: "\<exists> k. Suc k = get_odd n \<and> odd (Suc k)" |
| 54269 | 158 |
by (auto simp: get_odd_def odd_pos intro!: exI[of _ "n - 1"]) |
| 29805 | 159 |
|
| 60680 | 160 |
lemma get_even_double: "\<exists>i. get_even n = 2 * i" |
161 |
using get_even by (blast elim: evenE) |
|
162 |
||
163 |
lemma get_odd_double: "\<exists>i. get_odd n = 2 * i + 1" |
|
164 |
using get_odd by (blast elim: oddE) |
|
165 |
||
| 29805 | 166 |
|
167 |
section "Power function" |
|
168 |
||
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
169 |
definition float_power_bnds :: "nat \<Rightarrow> nat \<Rightarrow> float \<Rightarrow> float \<Rightarrow> float * float" where |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
170 |
"float_power_bnds prec n l u = |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
171 |
(if 0 < l then (power_down_fl prec l n, power_up_fl prec u n) |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
172 |
else if odd n then |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
173 |
(- power_up_fl prec (abs l) n, |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
174 |
if u < 0 then - power_down_fl prec (abs u) n else power_up_fl prec u n) |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
175 |
else if u < 0 then (power_down_fl prec (abs u) n, power_up_fl prec (abs l) n) |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
176 |
else (0, power_up_fl prec (max (abs l) (abs u)) n))" |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
177 |
|
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
178 |
lemma le_minus_power_downI: "0 \<le> x \<Longrightarrow> x ^ n \<le> - a \<Longrightarrow> a \<le> - power_down prec x n" |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
179 |
by (subst le_minus_iff) (auto intro: power_down_le power_mono_odd) |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
180 |
|
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
181 |
lemma float_power_bnds: |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
182 |
"(l1, u1) = float_power_bnds prec n l u \<Longrightarrow> x \<in> {l .. u} \<Longrightarrow> (x::real) ^ n \<in> {l1..u1}"
|
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
183 |
by (auto |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
184 |
simp: float_power_bnds_def max_def real_power_up_fl real_power_down_fl minus_le_iff |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
185 |
split: split_if_asm |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
186 |
intro!: power_up_le power_down_le le_minus_power_downI |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
187 |
intro: power_mono_odd power_mono power_mono_even zero_le_even_power) |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
188 |
|
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
189 |
lemma bnds_power: |
| 60680 | 190 |
"\<forall>(x::real) l u. (l1, u1) = float_power_bnds prec n l u \<and> x \<in> {l .. u} \<longrightarrow>
|
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
191 |
l1 \<le> x ^ n \<and> x ^ n \<le> u1" |
| 29805 | 192 |
using float_power_bnds by auto |
193 |
||
| 60680 | 194 |
|
| 29805 | 195 |
section "Square root" |
196 |
||
| 60533 | 197 |
text \<open> |
| 29805 | 198 |
The square root computation is implemented as newton iteration. As first first step we use the |
199 |
nearest power of two greater than the square root. |
|
| 60533 | 200 |
\<close> |
| 29805 | 201 |
|
202 |
fun sqrt_iteration :: "nat \<Rightarrow> nat \<Rightarrow> float \<Rightarrow> float" where |
|
|
47599
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
203 |
"sqrt_iteration prec 0 x = Float 1 ((bitlen \<bar>mantissa x\<bar> + exponent x) div 2 + 1)" | |
|
31467
f7d2aa438bee
Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents:
31148
diff
changeset
|
204 |
"sqrt_iteration prec (Suc m) x = (let y = sqrt_iteration prec m x |
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
205 |
in Float 1 (- 1) * float_plus_up prec y (float_divr prec x y))" |
| 29805 | 206 |
|
|
47599
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
207 |
lemma compute_sqrt_iteration_base[code]: |
|
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
208 |
shows "sqrt_iteration prec n (Float m e) = |
|
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
209 |
(if n = 0 then Float 1 ((if m = 0 then 0 else bitlen \<bar>m\<bar> + e) div 2 + 1) |
|
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
210 |
else (let y = sqrt_iteration prec (n - 1) (Float m e) in |
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
211 |
Float 1 (- 1) * float_plus_up prec y (float_divr prec (Float m e) y)))" |
|
47599
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
212 |
using bitlen_Float by (cases n) simp_all |
|
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
213 |
|
|
31467
f7d2aa438bee
Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents:
31148
diff
changeset
|
214 |
function ub_sqrt lb_sqrt :: "nat \<Rightarrow> float \<Rightarrow> float" where |
|
f7d2aa438bee
Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents:
31148
diff
changeset
|
215 |
"ub_sqrt prec x = (if 0 < x then (sqrt_iteration prec prec x) |
|
f7d2aa438bee
Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents:
31148
diff
changeset
|
216 |
else if x < 0 then - lb_sqrt prec (- x) |
|
f7d2aa438bee
Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents:
31148
diff
changeset
|
217 |
else 0)" | |
|
f7d2aa438bee
Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents:
31148
diff
changeset
|
218 |
"lb_sqrt prec x = (if 0 < x then (float_divl prec x (sqrt_iteration prec prec x)) |
|
f7d2aa438bee
Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents:
31148
diff
changeset
|
219 |
else if x < 0 then - ub_sqrt prec (- x) |
|
f7d2aa438bee
Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents:
31148
diff
changeset
|
220 |
else 0)" |
|
f7d2aa438bee
Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents:
31148
diff
changeset
|
221 |
by pat_completeness auto |
|
55414
eab03e9cee8a
renamed '{prod,sum,bool,unit}_case' to 'case_...'
blanchet
parents:
55413
diff
changeset
|
222 |
termination by (relation "measure (\<lambda> v. let (prec, x) = case_sum id id v in (if x < 0 then 1 else 0))", auto) |
| 29805 | 223 |
|
|
31467
f7d2aa438bee
Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents:
31148
diff
changeset
|
224 |
declare lb_sqrt.simps[simp del] |
|
f7d2aa438bee
Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents:
31148
diff
changeset
|
225 |
declare ub_sqrt.simps[simp del] |
| 29805 | 226 |
|
227 |
lemma sqrt_ub_pos_pos_1: |
|
228 |
assumes "sqrt x < b" and "0 < b" and "0 < x" |
|
229 |
shows "sqrt x < (b + x / b)/2" |
|
230 |
proof - |
|
| 53077 | 231 |
from assms have "0 < (b - sqrt x)\<^sup>2 " by simp |
232 |
also have "\<dots> = b\<^sup>2 - 2 * b * sqrt x + (sqrt x)\<^sup>2" by algebra |
|
233 |
also have "\<dots> = b\<^sup>2 - 2 * b * sqrt x + x" using assms by simp |
|
234 |
finally have "0 < b\<^sup>2 - 2 * b * sqrt x + x" . |
|
| 29805 | 235 |
hence "0 < b / 2 - sqrt x + x / (2 * b)" using assms |
236 |
by (simp add: field_simps power2_eq_square) |
|
237 |
thus ?thesis by (simp add: field_simps) |
|
238 |
qed |
|
239 |
||
| 60680 | 240 |
lemma sqrt_iteration_bound: |
241 |
assumes "0 < real x" |
|
| 54269 | 242 |
shows "sqrt x < sqrt_iteration prec n x" |
| 29805 | 243 |
proof (induct n) |
244 |
case 0 |
|
245 |
show ?case |
|
246 |
proof (cases x) |
|
247 |
case (Float m e) |
|
| 60680 | 248 |
hence "0 < m" |
249 |
using assms |
|
|
60017
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
paulson <lp15@cam.ac.uk>
parents:
59850
diff
changeset
|
250 |
apply (auto simp: sign_simps) |
|
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
paulson <lp15@cam.ac.uk>
parents:
59850
diff
changeset
|
251 |
by (meson not_less powr_ge_pzero) |
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
252 |
hence "0 < sqrt m" by auto |
|
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
253 |
|
| 60680 | 254 |
have int_nat_bl: "(nat (bitlen m)) = bitlen m" |
255 |
using bitlen_nonneg by auto |
|
|
47599
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
256 |
|
|
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
257 |
have "x = (m / 2^nat (bitlen m)) * 2 powr (e + (nat (bitlen m)))" |
|
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
258 |
unfolding Float by (auto simp: powr_realpow[symmetric] field_simps powr_add) |
|
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
259 |
also have "\<dots> < 1 * 2 powr (e + nat (bitlen m))" |
| 29805 | 260 |
proof (rule mult_strict_right_mono, auto) |
| 60680 | 261 |
show "m < 2^nat (bitlen m)" |
262 |
using bitlen_bounds[OF \<open>0 < m\<close>, THEN conjunct2] |
|
|
32960
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32920
diff
changeset
|
263 |
unfolding real_of_int_less_iff[of m, symmetric] by auto |
| 29805 | 264 |
qed |
| 60680 | 265 |
finally have "sqrt x < sqrt (2 powr (e + bitlen m))" |
266 |
unfolding int_nat_bl by auto |
|
|
47599
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
267 |
also have "\<dots> \<le> 2 powr ((e + bitlen m) div 2 + 1)" |
| 29805 | 268 |
proof - |
269 |
let ?E = "e + bitlen m" |
|
|
47599
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
270 |
have E_mod_pow: "2 powr (?E mod 2) < 4" |
| 29805 | 271 |
proof (cases "?E mod 2 = 1") |
| 60680 | 272 |
case True |
273 |
thus ?thesis by auto |
|
| 29805 | 274 |
next |
|
32960
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32920
diff
changeset
|
275 |
case False |
|
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32920
diff
changeset
|
276 |
have "0 \<le> ?E mod 2" by auto |
|
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32920
diff
changeset
|
277 |
have "?E mod 2 < 2" by auto |
|
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32920
diff
changeset
|
278 |
from this[THEN zless_imp_add1_zle] |
|
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32920
diff
changeset
|
279 |
have "?E mod 2 \<le> 0" using False by auto |
| 60533 | 280 |
from xt1(5)[OF \<open>0 \<le> ?E mod 2\<close> this] |
|
32960
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32920
diff
changeset
|
281 |
show ?thesis by auto |
| 29805 | 282 |
qed |
|
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56813
diff
changeset
|
283 |
hence "sqrt (2 powr (?E mod 2)) < sqrt (2 * 2)" |
|
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56813
diff
changeset
|
284 |
by (auto simp del: real_sqrt_four) |
|
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56813
diff
changeset
|
285 |
hence E_mod_pow: "sqrt (2 powr (?E mod 2)) < 2" by auto |
|
47599
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
286 |
|
| 60680 | 287 |
have E_eq: "2 powr ?E = 2 powr (?E div 2 + ?E div 2 + ?E mod 2)" |
288 |
by auto |
|
|
47599
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
289 |
have "sqrt (2 powr ?E) = sqrt (2 powr (?E div 2) * 2 powr (?E div 2) * 2 powr (?E mod 2))" |
|
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
290 |
unfolding E_eq unfolding powr_add[symmetric] by (simp add: int_of_reals del: real_of_ints) |
|
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
291 |
also have "\<dots> = 2 powr (?E div 2) * sqrt (2 powr (?E mod 2))" |
|
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
292 |
unfolding real_sqrt_mult[of _ "2 powr (?E mod 2)"] real_sqrt_abs2 by auto |
|
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
293 |
also have "\<dots> < 2 powr (?E div 2) * 2 powr 1" |
| 60680 | 294 |
by (rule mult_strict_left_mono) (auto intro: E_mod_pow) |
295 |
also have "\<dots> = 2 powr (?E div 2 + 1)" |
|
296 |
unfolding add.commute[of _ 1] powr_add[symmetric] by simp |
|
| 29805 | 297 |
finally show ?thesis by auto |
298 |
qed |
|
| 60533 | 299 |
finally show ?thesis using \<open>0 < m\<close> |
|
47599
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
300 |
unfolding Float |
| 47600 | 301 |
by (subst compute_sqrt_iteration_base) (simp add: ac_simps) |
| 29805 | 302 |
qed |
303 |
next |
|
304 |
case (Suc n) |
|
305 |
let ?b = "sqrt_iteration prec n x" |
|
| 60680 | 306 |
have "0 < sqrt x" |
307 |
using \<open>0 < real x\<close> by auto |
|
308 |
also have "\<dots> < real ?b" |
|
309 |
using Suc . |
|
310 |
finally have "sqrt x < (?b + x / ?b)/2" |
|
311 |
using sqrt_ub_pos_pos_1[OF Suc _ \<open>0 < real x\<close>] by auto |
|
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
312 |
also have "\<dots> \<le> (?b + (float_divr prec x ?b))/2" |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
313 |
by (rule divide_right_mono, auto simp add: float_divr) |
| 60680 | 314 |
also have "\<dots> = (Float 1 (- 1)) * (?b + (float_divr prec x ?b))" |
315 |
by simp |
|
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
316 |
also have "\<dots> \<le> (Float 1 (- 1)) * (float_plus_up prec ?b (float_divr prec x ?b))" |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
317 |
by (auto simp add: algebra_simps float_plus_up_le) |
| 60680 | 318 |
finally show ?case |
319 |
unfolding sqrt_iteration.simps Let_def distrib_left . |
|
| 29805 | 320 |
qed |
321 |
||
| 60680 | 322 |
lemma sqrt_iteration_lower_bound: |
323 |
assumes "0 < real x" |
|
|
31098
73dd67adf90a
replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents:
30971
diff
changeset
|
324 |
shows "0 < real (sqrt_iteration prec n x)" (is "0 < ?sqrt") |
| 29805 | 325 |
proof - |
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
326 |
have "0 < sqrt x" using assms by auto |
| 29805 | 327 |
also have "\<dots> < ?sqrt" using sqrt_iteration_bound[OF assms] . |
328 |
finally show ?thesis . |
|
329 |
qed |
|
330 |
||
| 60680 | 331 |
lemma lb_sqrt_lower_bound: |
332 |
assumes "0 \<le> real x" |
|
|
31467
f7d2aa438bee
Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents:
31148
diff
changeset
|
333 |
shows "0 \<le> real (lb_sqrt prec x)" |
| 29805 | 334 |
proof (cases "0 < x") |
| 60680 | 335 |
case True |
336 |
hence "0 < real x" and "0 \<le> x" |
|
337 |
using \<open>0 \<le> real x\<close> by auto |
|
338 |
hence "0 < sqrt_iteration prec prec x" |
|
339 |
using sqrt_iteration_lower_bound by auto |
|
340 |
hence "0 \<le> real (float_divl prec x (sqrt_iteration prec prec x))" |
|
341 |
using float_divl_lower_bound[OF \<open>0 \<le> x\<close>] unfolding less_eq_float_def by auto |
|
342 |
thus ?thesis |
|
343 |
unfolding lb_sqrt.simps using True by auto |
|
| 29805 | 344 |
next |
| 60680 | 345 |
case False |
346 |
with \<open>0 \<le> real x\<close> have "real x = 0" by auto |
|
347 |
thus ?thesis |
|
348 |
unfolding lb_sqrt.simps by auto |
|
| 29805 | 349 |
qed |
350 |
||
| 49351 | 351 |
lemma bnds_sqrt': "sqrt x \<in> {(lb_sqrt prec x) .. (ub_sqrt prec x)}"
|
|
31467
f7d2aa438bee
Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents:
31148
diff
changeset
|
352 |
proof - |
| 60680 | 353 |
have lb: "lb_sqrt prec x \<le> sqrt x" if "0 < x" for x :: float |
354 |
proof - |
|
355 |
from that have "0 < real x" and "0 \<le> real x" by auto |
|
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
356 |
hence sqrt_gt0: "0 < sqrt x" by auto |
| 60680 | 357 |
hence sqrt_ub: "sqrt x < sqrt_iteration prec prec x" |
358 |
using sqrt_iteration_bound by auto |
|
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
359 |
have "(float_divl prec x (sqrt_iteration prec prec x)) \<le> |
|
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
360 |
x / (sqrt_iteration prec prec x)" by (rule float_divl) |
|
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
361 |
also have "\<dots> < x / sqrt x" |
| 60533 | 362 |
by (rule divide_strict_left_mono[OF sqrt_ub \<open>0 < real x\<close> |
|
31467
f7d2aa438bee
Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents:
31148
diff
changeset
|
363 |
mult_pos_pos[OF order_less_trans[OF sqrt_gt0 sqrt_ub] sqrt_gt0]]) |
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
364 |
also have "\<dots> = sqrt x" |
|
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
365 |
unfolding inverse_eq_iff_eq[of _ "sqrt x", symmetric] |
| 60533 | 366 |
sqrt_divide_self_eq[OF \<open>0 \<le> real x\<close>, symmetric] by auto |
| 60680 | 367 |
finally show ?thesis |
368 |
unfolding lb_sqrt.simps if_P[OF \<open>0 < x\<close>] by auto |
|
369 |
qed |
|
370 |
have ub: "sqrt x \<le> ub_sqrt prec x" if "0 < x" for x :: float |
|
371 |
proof - |
|
372 |
from that have "0 < real x" by auto |
|
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
373 |
hence "0 < sqrt x" by auto |
|
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
374 |
hence "sqrt x < sqrt_iteration prec prec x" |
|
31467
f7d2aa438bee
Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents:
31148
diff
changeset
|
375 |
using sqrt_iteration_bound by auto |
| 60680 | 376 |
then show ?thesis |
377 |
unfolding ub_sqrt.simps if_P[OF \<open>0 < x\<close>] by auto |
|
378 |
qed |
|
|
31467
f7d2aa438bee
Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents:
31148
diff
changeset
|
379 |
show ?thesis |
| 54269 | 380 |
using lb[of "-x"] ub[of "-x"] lb[of x] ub[of x] |
381 |
by (auto simp add: lb_sqrt.simps ub_sqrt.simps real_sqrt_minus) |
|
| 29805 | 382 |
qed |
383 |
||
| 60680 | 384 |
lemma bnds_sqrt: "\<forall>(x::real) lx ux. |
385 |
(l, u) = (lb_sqrt prec lx, ub_sqrt prec ux) \<and> x \<in> {lx .. ux} \<longrightarrow> l \<le> sqrt x \<and> sqrt x \<le> u"
|
|
|
31467
f7d2aa438bee
Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents:
31148
diff
changeset
|
386 |
proof ((rule allI) +, rule impI, erule conjE, rule conjI) |
| 60680 | 387 |
fix x :: real |
388 |
fix lx ux |
|
|
31467
f7d2aa438bee
Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents:
31148
diff
changeset
|
389 |
assume "(l, u) = (lb_sqrt prec lx, ub_sqrt prec ux)" |
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
390 |
and x: "x \<in> {lx .. ux}"
|
|
31467
f7d2aa438bee
Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents:
31148
diff
changeset
|
391 |
hence l: "l = lb_sqrt prec lx " and u: "u = ub_sqrt prec ux" by auto |
| 29805 | 392 |
|
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
393 |
have "sqrt lx \<le> sqrt x" using x by auto |
|
31467
f7d2aa438bee
Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents:
31148
diff
changeset
|
394 |
from order_trans[OF _ this] |
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
395 |
show "l \<le> sqrt x" unfolding l using bnds_sqrt'[of lx prec] by auto |
|
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
396 |
|
|
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
397 |
have "sqrt x \<le> sqrt ux" using x by auto |
|
31467
f7d2aa438bee
Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents:
31148
diff
changeset
|
398 |
from order_trans[OF this] |
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
399 |
show "sqrt x \<le> u" unfolding u using bnds_sqrt'[of ux prec] by auto |
| 29805 | 400 |
qed |
401 |
||
| 60680 | 402 |
|
| 29805 | 403 |
section "Arcus tangens and \<pi>" |
404 |
||
405 |
subsection "Compute arcus tangens series" |
|
406 |
||
| 60533 | 407 |
text \<open> |
| 29805 | 408 |
As first step we implement the computation of the arcus tangens series. This is only valid in the range |
409 |
@{term "{-1 :: real .. 1}"}. This is used to compute \<pi> and then the entire arcus tangens.
|
|
| 60533 | 410 |
\<close> |
| 29805 | 411 |
|
412 |
fun ub_arctan_horner :: "nat \<Rightarrow> nat \<Rightarrow> nat \<Rightarrow> float \<Rightarrow> float" |
|
413 |
and lb_arctan_horner :: "nat \<Rightarrow> nat \<Rightarrow> nat \<Rightarrow> float \<Rightarrow> float" where |
|
414 |
"ub_arctan_horner prec 0 k x = 0" |
|
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
415 |
| "ub_arctan_horner prec (Suc n) k x = float_plus_up prec |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
416 |
(rapprox_rat prec 1 k) (- float_round_down prec (x * (lb_arctan_horner prec n (k + 2) x)))" |
| 29805 | 417 |
| "lb_arctan_horner prec 0 k x = 0" |
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
418 |
| "lb_arctan_horner prec (Suc n) k x = float_plus_down prec |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
419 |
(lapprox_rat prec 1 k) (- float_round_up prec (x * (ub_arctan_horner prec n (k + 2) x)))" |
| 29805 | 420 |
|
| 49351 | 421 |
lemma arctan_0_1_bounds': |
| 60680 | 422 |
assumes "0 \<le> real y" "real y \<le> 1" |
423 |
and "even n" |
|
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
424 |
shows "arctan (sqrt y) \<in> |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
425 |
{(sqrt y * lb_arctan_horner prec n 1 y) .. (sqrt y * ub_arctan_horner prec (Suc n) 1 y)}"
|
| 29805 | 426 |
proof - |
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
427 |
let ?c = "\<lambda>i. (- 1) ^ i * (1 / (i * 2 + (1::nat)) * sqrt y ^ (i * 2 + 1))" |
| 54269 | 428 |
let ?S = "\<lambda>n. \<Sum> i=0..<n. ?c i" |
| 29805 | 429 |
|
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
430 |
have "0 \<le> sqrt y" using assms by auto |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
431 |
have "sqrt y \<le> 1" using assms by auto |
| 60533 | 432 |
from \<open>even n\<close> obtain m where "2 * m = n" by (blast elim: evenE) |
| 31809 | 433 |
|
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
434 |
have "arctan (sqrt y) \<in> { ?S n .. ?S (Suc n) }"
|
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
435 |
proof (cases "sqrt y = 0") |
| 60680 | 436 |
case True |
437 |
then show ?thesis by simp |
|
438 |
next |
|
| 29805 | 439 |
case False |
| 60533 | 440 |
hence "0 < sqrt y" using \<open>0 \<le> sqrt y\<close> by auto |
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
441 |
hence prem: "0 < 1 / (0 * 2 + (1::nat)) * sqrt y ^ (0 * 2 + 1)" by auto |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
442 |
|
| 60533 | 443 |
have "\<bar> sqrt y \<bar> \<le> 1" using \<open>0 \<le> sqrt y\<close> \<open>sqrt y \<le> 1\<close> by auto |
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
444 |
from mp[OF summable_Leibniz(2)[OF zeroseq_arctan_series[OF this] |
| 60533 | 445 |
monoseq_arctan_series[OF this]] prem, THEN spec, of m, unfolded \<open>2 * m = n\<close>] |
446 |
show ?thesis unfolding arctan_series[OF \<open>\<bar> sqrt y \<bar> \<le> 1\<close>] Suc_eq_plus1 atLeast0LessThan . |
|
| 60680 | 447 |
qed |
| 29805 | 448 |
note arctan_bounds = this[unfolded atLeastAtMost_iff] |
449 |
||
450 |
have F: "\<And>n. 2 * Suc n + 1 = 2 * n + 1 + 2" by auto |
|
451 |
||
| 31809 | 452 |
note bounds = horner_bounds[where s=1 and f="\<lambda>i. 2 * i + 1" and j'=0 |
| 29805 | 453 |
and lb="\<lambda>n i k x. lb_arctan_horner prec n k x" |
| 31809 | 454 |
and ub="\<lambda>n i k x. ub_arctan_horner prec n k x", |
| 60533 | 455 |
OF \<open>0 \<le> real y\<close> F lb_arctan_horner.simps ub_arctan_horner.simps] |
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
456 |
|
| 60680 | 457 |
have "(sqrt y * lb_arctan_horner prec n 1 y) \<le> arctan (sqrt y)" |
458 |
proof - |
|
459 |
have "(sqrt y * lb_arctan_horner prec n 1 y) \<le> ?S n" |
|
| 60533 | 460 |
using bounds(1) \<open>0 \<le> sqrt y\<close> |
|
57512
cc97b347b301
reduced name variants for assoc and commute on plus and mult
haftmann
parents:
57418
diff
changeset
|
461 |
unfolding power_add power_one_right mult.assoc[symmetric] setsum_left_distrib[symmetric] |
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
462 |
unfolding mult.commute[where 'a=real] mult.commute[of _ "2::nat"] power_mult |
| 29805 | 463 |
by (auto intro!: mult_left_mono) |
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
464 |
also have "\<dots> \<le> arctan (sqrt y)" using arctan_bounds .. |
| 60680 | 465 |
finally show ?thesis . |
466 |
qed |
|
| 29805 | 467 |
moreover |
| 60680 | 468 |
have "arctan (sqrt y) \<le> (sqrt y * ub_arctan_horner prec (Suc n) 1 y)" |
469 |
proof - |
|
470 |
have "arctan (sqrt y) \<le> ?S (Suc n)" using arctan_bounds .. |
|
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
471 |
also have "\<dots> \<le> (sqrt y * ub_arctan_horner prec (Suc n) 1 y)" |
| 60533 | 472 |
using bounds(2)[of "Suc n"] \<open>0 \<le> sqrt y\<close> |
|
57512
cc97b347b301
reduced name variants for assoc and commute on plus and mult
haftmann
parents:
57418
diff
changeset
|
473 |
unfolding power_add power_one_right mult.assoc[symmetric] setsum_left_distrib[symmetric] |
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
474 |
unfolding mult.commute[where 'a=real] mult.commute[of _ "2::nat"] power_mult |
| 29805 | 475 |
by (auto intro!: mult_left_mono) |
| 60680 | 476 |
finally show ?thesis . |
477 |
qed |
|
| 29805 | 478 |
ultimately show ?thesis by auto |
479 |
qed |
|
480 |
||
| 60680 | 481 |
lemma arctan_0_1_bounds: |
482 |
assumes "0 \<le> real y" "real y \<le> 1" |
|
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
483 |
shows "arctan (sqrt y) \<in> |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
484 |
{(sqrt y * lb_arctan_horner prec (get_even n) 1 y) ..
|
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
485 |
(sqrt y * ub_arctan_horner prec (get_odd n) 1 y)}" |
| 54269 | 486 |
using |
487 |
arctan_0_1_bounds'[OF assms, of n prec] |
|
488 |
arctan_0_1_bounds'[OF assms, of "n + 1" prec] |
|
489 |
arctan_0_1_bounds'[OF assms, of "n - 1" prec] |
|
| 60680 | 490 |
by (auto simp: get_even_def get_odd_def odd_pos |
491 |
simp del: ub_arctan_horner.simps lb_arctan_horner.simps) |
|
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
492 |
|
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
493 |
lemma arctan_lower_bound: |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
494 |
assumes "0 \<le> x" |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
495 |
shows "x / (1 + x\<^sup>2) \<le> arctan x" (is "?l x \<le> _") |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
496 |
proof - |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
497 |
have "?l x - arctan x \<le> ?l 0 - arctan 0" |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
498 |
using assms |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
499 |
by (intro DERIV_nonpos_imp_nonincreasing[where f="\<lambda>x. ?l x - arctan x"]) |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
500 |
(auto intro!: derivative_eq_intros simp: add_nonneg_eq_0_iff field_simps) |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
501 |
thus ?thesis by simp |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
502 |
qed |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
503 |
|
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
504 |
lemma arctan_divide_mono: "0 < x \<Longrightarrow> x \<le> y \<Longrightarrow> arctan y / y \<le> arctan x / x" |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
505 |
by (rule DERIV_nonpos_imp_nonincreasing[where f="\<lambda>x. arctan x / x"]) |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
506 |
(auto intro!: derivative_eq_intros divide_nonpos_nonneg |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
507 |
simp: inverse_eq_divide arctan_lower_bound) |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
508 |
|
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
509 |
lemma arctan_mult_mono: "0 \<le> x \<Longrightarrow> x \<le> y \<Longrightarrow> x * arctan y \<le> y * arctan x" |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
510 |
using arctan_divide_mono[of x y] by (cases "x = 0") (simp_all add: field_simps) |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
511 |
|
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
512 |
lemma arctan_mult_le: |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
513 |
assumes "0 \<le> x" "x \<le> y" "y * z \<le> arctan y" |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
514 |
shows "x * z \<le> arctan x" |
| 60680 | 515 |
proof (cases "x = 0") |
516 |
case True |
|
517 |
then show ?thesis by simp |
|
518 |
next |
|
519 |
case False |
|
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
520 |
with assms have "z \<le> arctan y / y" by (simp add: field_simps) |
| 60533 | 521 |
also have "\<dots> \<le> arctan x / x" using assms \<open>x \<noteq> 0\<close> by (auto intro!: arctan_divide_mono) |
522 |
finally show ?thesis using assms \<open>x \<noteq> 0\<close> by (simp add: field_simps) |
|
| 60680 | 523 |
qed |
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
524 |
|
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
525 |
lemma arctan_le_mult: |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
526 |
assumes "0 < x" "x \<le> y" "arctan x \<le> x * z" |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
527 |
shows "arctan y \<le> y * z" |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
528 |
proof - |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
529 |
from assms have "arctan y / y \<le> arctan x / x" by (auto intro!: arctan_divide_mono) |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
530 |
also have "\<dots> \<le> z" using assms by (auto simp: field_simps) |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
531 |
finally show ?thesis using assms by (simp add: field_simps) |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
532 |
qed |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
533 |
|
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
534 |
lemma arctan_0_1_bounds_le: |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
535 |
assumes "0 \<le> x" "x \<le> 1" "0 < real xl" "real xl \<le> x * x" "x * x \<le> real xu" "real xu \<le> 1" |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
536 |
shows "arctan x \<in> |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
537 |
{x * lb_arctan_horner p1 (get_even n) 1 xu .. x * ub_arctan_horner p2 (get_odd n) 1 xl}"
|
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
538 |
proof - |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
539 |
from assms have "real xl \<le> 1" "sqrt (real xl) \<le> x" "x \<le> sqrt (real xu)" "0 \<le> real xu" |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
540 |
"0 \<le> real xl" "0 < sqrt (real xl)" |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
541 |
by (auto intro!: real_le_rsqrt real_le_lsqrt simp: power2_eq_square) |
| 60533 | 542 |
from arctan_0_1_bounds[OF \<open>0 \<le> real xu\<close> \<open>real xu \<le> 1\<close>] |
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
543 |
have "sqrt (real xu) * real (lb_arctan_horner p1 (get_even n) 1 xu) \<le> arctan (sqrt (real xu))" |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
544 |
by simp |
| 60533 | 545 |
from arctan_mult_le[OF \<open>0 \<le> x\<close> \<open>x \<le> sqrt _\<close> this] |
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
546 |
have "x * real (lb_arctan_horner p1 (get_even n) 1 xu) \<le> arctan x" . |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
547 |
moreover |
| 60533 | 548 |
from arctan_0_1_bounds[OF \<open>0 \<le> real xl\<close> \<open>real xl \<le> 1\<close>] |
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
549 |
have "arctan (sqrt (real xl)) \<le> sqrt (real xl) * real (ub_arctan_horner p2 (get_odd n) 1 xl)" |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
550 |
by simp |
| 60533 | 551 |
from arctan_le_mult[OF \<open>0 < sqrt xl\<close> \<open>sqrt xl \<le> x\<close> this] |
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
552 |
have "arctan x \<le> x * real (ub_arctan_horner p2 (get_odd n) 1 xl)" . |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
553 |
ultimately show ?thesis by simp |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
554 |
qed |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
555 |
|
| 60680 | 556 |
lemma mult_nonneg_le_one: |
557 |
fixes a :: real |
|
558 |
assumes "0 \<le> a" "0 \<le> b" "a \<le> 1" "b \<le> 1" |
|
559 |
shows "a * b \<le> 1" |
|
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
560 |
proof - |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
561 |
have "a * b \<le> 1 * 1" |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
562 |
by (intro mult_mono assms) simp_all |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
563 |
thus ?thesis by simp |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
564 |
qed |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
565 |
|
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
566 |
lemma arctan_0_1_bounds_round: |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
567 |
assumes "0 \<le> real x" "real x \<le> 1" |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
568 |
shows "arctan x \<in> |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
569 |
{real x * lb_arctan_horner p1 (get_even n) 1 (float_round_up (Suc p2) (x * x)) ..
|
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
570 |
real x * ub_arctan_horner p3 (get_odd n) 1 (float_round_down (Suc p4) (x * x))}" |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
571 |
using assms |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
572 |
apply (cases "x > 0") |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
573 |
apply (intro arctan_0_1_bounds_le) |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
574 |
apply (auto simp: float_round_down.rep_eq float_round_up.rep_eq |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
575 |
intro!: truncate_up_le1 mult_nonneg_le_one truncate_down_le truncate_up_le truncate_down_pos |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
576 |
mult_pos_pos) |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
577 |
done |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
578 |
|
| 29805 | 579 |
|
580 |
subsection "Compute \<pi>" |
|
581 |
||
582 |
definition ub_pi :: "nat \<Rightarrow> float" where |
|
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
583 |
"ub_pi prec = |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
584 |
(let |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
585 |
A = rapprox_rat prec 1 5 ; |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
586 |
B = lapprox_rat prec 1 239 |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
587 |
in ((Float 1 2) * float_plus_up prec |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
588 |
((Float 1 2) * float_round_up prec (A * (ub_arctan_horner prec (get_odd (prec div 4 + 1)) 1 |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
589 |
(float_round_down (Suc prec) (A * A))))) |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
590 |
(- float_round_down prec (B * (lb_arctan_horner prec (get_even (prec div 14 + 1)) 1 |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
591 |
(float_round_up (Suc prec) (B * B)))))))" |
| 29805 | 592 |
|
593 |
definition lb_pi :: "nat \<Rightarrow> float" where |
|
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
594 |
"lb_pi prec = |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
595 |
(let |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
596 |
A = lapprox_rat prec 1 5 ; |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
597 |
B = rapprox_rat prec 1 239 |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
598 |
in ((Float 1 2) * float_plus_down prec |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
599 |
((Float 1 2) * float_round_down prec (A * (lb_arctan_horner prec (get_even (prec div 4 + 1)) 1 |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
600 |
(float_round_up (Suc prec) (A * A))))) |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
601 |
(- float_round_up prec (B * (ub_arctan_horner prec (get_odd (prec div 14 + 1)) 1 |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
602 |
(float_round_down (Suc prec) (B * B)))))))" |
| 29805 | 603 |
|
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
604 |
lemma pi_boundaries: "pi \<in> {(lb_pi n) .. (ub_pi n)}"
|
| 29805 | 605 |
proof - |
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
606 |
have machin_pi: "pi = 4 * (4 * arctan (1 / 5) - arctan (1 / 239))" |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
607 |
unfolding machin[symmetric] by auto |
| 29805 | 608 |
|
| 60680 | 609 |
{
|
610 |
fix prec n :: nat |
|
611 |
fix k :: int |
|
612 |
assume "1 < k" hence "0 \<le> k" and "0 < k" and "1 \<le> k" by auto |
|
| 29805 | 613 |
let ?k = "rapprox_rat prec 1 k" |
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
614 |
let ?kl = "float_round_down (Suc prec) (?k * ?k)" |
| 60533 | 615 |
have "1 div k = 0" using div_pos_pos_trivial[OF _ \<open>1 < k\<close>] by auto |
616 |
||
617 |
have "0 \<le> real ?k" by (rule order_trans[OF _ rapprox_rat]) (auto simp add: \<open>0 \<le> k\<close>) |
|
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
618 |
have "real ?k \<le> 1" |
| 60533 | 619 |
by (auto simp add: \<open>0 < k\<close> \<open>1 \<le> k\<close> less_imp_le |
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
620 |
intro!: mult_nonneg_le_one order_trans[OF _ rapprox_rat] rapprox_rat_le1) |
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
621 |
have "1 / k \<le> ?k" using rapprox_rat[where x=1 and y=k] by auto |
|
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
622 |
hence "arctan (1 / k) \<le> arctan ?k" by (rule arctan_monotone') |
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
623 |
also have "\<dots> \<le> (?k * ub_arctan_horner prec (get_odd n) 1 ?kl)" |
| 60533 | 624 |
using arctan_0_1_bounds_round[OF \<open>0 \<le> real ?k\<close> \<open>real ?k \<le> 1\<close>] |
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
625 |
by auto |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
626 |
finally have "arctan (1 / k) \<le> ?k * ub_arctan_horner prec (get_odd n) 1 ?kl" . |
| 29805 | 627 |
} note ub_arctan = this |
628 |
||
| 60680 | 629 |
{
|
630 |
fix prec n :: nat |
|
631 |
fix k :: int |
|
632 |
assume "1 < k" hence "0 \<le> k" and "0 < k" by auto |
|
| 29805 | 633 |
let ?k = "lapprox_rat prec 1 k" |
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
634 |
let ?ku = "float_round_up (Suc prec) (?k * ?k)" |
| 60533 | 635 |
have "1 div k = 0" using div_pos_pos_trivial[OF _ \<open>1 < k\<close>] by auto |
636 |
have "1 / k \<le> 1" using \<open>1 < k\<close> by auto |
|
637 |
have "0 \<le> real ?k" using lapprox_rat_nonneg[where x=1 and y=k, OF zero_le_one \<open>0 \<le> k\<close>] |
|
638 |
by (auto simp add: \<open>1 div k = 0\<close>) |
|
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
639 |
have "0 \<le> real (?k * ?k)" by simp |
| 60533 | 640 |
have "real ?k \<le> 1" using lapprox_rat by (rule order_trans, auto simp add: \<open>1 / k \<le> 1\<close>) |
641 |
hence "real (?k * ?k) \<le> 1" using \<open>0 \<le> real ?k\<close> by (auto intro!: mult_nonneg_le_one) |
|
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
642 |
|
|
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
643 |
have "?k \<le> 1 / k" using lapprox_rat[where x=1 and y=k] by auto |
|
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
644 |
|
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
645 |
have "?k * lb_arctan_horner prec (get_even n) 1 ?ku \<le> arctan ?k" |
| 60533 | 646 |
using arctan_0_1_bounds_round[OF \<open>0 \<le> real ?k\<close> \<open>real ?k \<le> 1\<close>] |
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
647 |
by auto |
| 60533 | 648 |
also have "\<dots> \<le> arctan (1 / k)" using \<open>?k \<le> 1 / k\<close> by (rule arctan_monotone') |
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
649 |
finally have "?k * lb_arctan_horner prec (get_even n) 1 ?ku \<le> arctan (1 / k)" . |
| 29805 | 650 |
} note lb_arctan = this |
651 |
||
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
652 |
have "pi \<le> ub_pi n " |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
653 |
unfolding ub_pi_def machin_pi Let_def times_float.rep_eq Float_num |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
654 |
using lb_arctan[of 239] ub_arctan[of 5] powr_realpow[of 2 2] |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
655 |
by (intro mult_left_mono float_plus_up_le float_plus_down_le) |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
656 |
(auto intro!: mult_left_mono float_round_down_le float_round_up_le diff_mono) |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
657 |
moreover have "lb_pi n \<le> pi" |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
658 |
unfolding lb_pi_def machin_pi Let_def times_float.rep_eq Float_num |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
659 |
using lb_arctan[of 5] ub_arctan[of 239] |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
660 |
by (intro mult_left_mono float_plus_up_le float_plus_down_le) |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
661 |
(auto intro!: mult_left_mono float_round_down_le float_round_up_le diff_mono) |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
662 |
ultimately show ?thesis by auto |
| 29805 | 663 |
qed |
664 |
||
| 60680 | 665 |
|
| 29805 | 666 |
subsection "Compute arcus tangens in the entire domain" |
667 |
||
|
31467
f7d2aa438bee
Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents:
31148
diff
changeset
|
668 |
function lb_arctan :: "nat \<Rightarrow> float \<Rightarrow> float" and ub_arctan :: "nat \<Rightarrow> float \<Rightarrow> float" where |
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
669 |
"lb_arctan prec x = |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
670 |
(let |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
671 |
ub_horner = \<lambda> x. float_round_up prec |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
672 |
(x * |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
673 |
ub_arctan_horner prec (get_odd (prec div 4 + 1)) 1 (float_round_down (Suc prec) (x * x))); |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
674 |
lb_horner = \<lambda> x. float_round_down prec |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
675 |
(x * |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
676 |
lb_arctan_horner prec (get_even (prec div 4 + 1)) 1 (float_round_up (Suc prec) (x * x))) |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
677 |
in |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
678 |
if x < 0 then - ub_arctan prec (-x) |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
679 |
else if x \<le> Float 1 (- 1) then lb_horner x |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
680 |
else if x \<le> Float 1 1 then |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
681 |
Float 1 1 * |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
682 |
lb_horner |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
683 |
(float_divl prec x |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
684 |
(float_plus_up prec 1 |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
685 |
(ub_sqrt prec (float_plus_up prec 1 (float_round_up prec (x * x)))))) |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
686 |
else let inv = float_divr prec 1 x in |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
687 |
if inv > 1 then 0 |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
688 |
else float_plus_down prec (lb_pi prec * Float 1 (- 1)) ( - ub_horner inv))" |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
689 |
|
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
690 |
| "ub_arctan prec x = |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
691 |
(let |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
692 |
lb_horner = \<lambda> x. float_round_down prec |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
693 |
(x * |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
694 |
lb_arctan_horner prec (get_even (prec div 4 + 1)) 1 (float_round_up (Suc prec) (x * x))) ; |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
695 |
ub_horner = \<lambda> x. float_round_up prec |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
696 |
(x * |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
697 |
ub_arctan_horner prec (get_odd (prec div 4 + 1)) 1 (float_round_down (Suc prec) (x * x))) |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
698 |
in if x < 0 then - lb_arctan prec (-x) |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
699 |
else if x \<le> Float 1 (- 1) then ub_horner x |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
700 |
else if x \<le> Float 1 1 then |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
701 |
let y = float_divr prec x |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
702 |
(float_plus_down |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
703 |
(Suc prec) 1 (lb_sqrt prec (float_plus_down prec 1 (float_round_down prec (x * x))))) |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
704 |
in if y > 1 then ub_pi prec * Float 1 (- 1) else Float 1 1 * ub_horner y |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
705 |
else float_plus_up prec (ub_pi prec * Float 1 (- 1)) ( - lb_horner (float_divl prec 1 x)))" |
| 29805 | 706 |
by pat_completeness auto |
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
707 |
termination |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
708 |
by (relation "measure (\<lambda> v. let (prec, x) = case_sum id id v in (if x < 0 then 1 else 0))", auto) |
| 29805 | 709 |
|
710 |
declare ub_arctan_horner.simps[simp del] |
|
711 |
declare lb_arctan_horner.simps[simp del] |
|
712 |
||
| 60680 | 713 |
lemma lb_arctan_bound': |
714 |
assumes "0 \<le> real x" |
|
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
715 |
shows "lb_arctan prec x \<le> arctan x" |
| 29805 | 716 |
proof - |
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
717 |
have "\<not> x < 0" and "0 \<le> x" |
| 60533 | 718 |
using \<open>0 \<le> real x\<close> by (auto intro!: truncate_up_le ) |
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
719 |
|
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
720 |
let "?ub_horner x" = |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
721 |
"x * ub_arctan_horner prec (get_odd (prec div 4 + 1)) 1 (float_round_down (Suc prec) (x * x))" |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
722 |
and "?lb_horner x" = |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
723 |
"x * lb_arctan_horner prec (get_even (prec div 4 + 1)) 1 (float_round_up (Suc prec) (x * x))" |
| 29805 | 724 |
|
725 |
show ?thesis |
|
|
58410
6d46ad54a2ab
explicit separation of signed and unsigned numerals using existing lexical categories num and xnum
haftmann
parents:
58310
diff
changeset
|
726 |
proof (cases "x \<le> Float 1 (- 1)") |
| 60680 | 727 |
case True |
728 |
hence "real x \<le> 1" by simp |
|
| 60533 | 729 |
from arctan_0_1_bounds_round[OF \<open>0 \<le> real x\<close> \<open>real x \<le> 1\<close>] |
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
730 |
show ?thesis |
| 60533 | 731 |
unfolding lb_arctan.simps Let_def if_not_P[OF \<open>\<not> x < 0\<close>] if_P[OF True] using \<open>0 \<le> x\<close> |
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
732 |
by (auto intro!: float_round_down_le) |
| 29805 | 733 |
next |
| 60680 | 734 |
case False |
735 |
hence "0 < real x" by auto |
|
|
31098
73dd67adf90a
replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents:
30971
diff
changeset
|
736 |
let ?R = "1 + sqrt (1 + real x * real x)" |
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
737 |
let ?sxx = "float_plus_up prec 1 (float_round_up prec (x * x))" |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
738 |
let ?fR = "float_plus_up prec 1 (ub_sqrt prec ?sxx)" |
| 29805 | 739 |
let ?DIV = "float_divl prec x ?fR" |
|
31467
f7d2aa438bee
Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents:
31148
diff
changeset
|
740 |
|
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
741 |
have divisor_gt0: "0 < ?R" by (auto intro: add_pos_nonneg) |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
742 |
|
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
743 |
have "sqrt (1 + x*x) \<le> sqrt ?sxx" |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
744 |
by (auto simp: float_plus_up.rep_eq plus_up_def float_round_up.rep_eq intro!: truncate_up_le) |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
745 |
also have "\<dots> \<le> ub_sqrt prec ?sxx" |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
746 |
using bnds_sqrt'[of ?sxx prec] by auto |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
747 |
finally |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
748 |
have "sqrt (1 + x*x) \<le> ub_sqrt prec ?sxx" . |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
749 |
hence "?R \<le> ?fR" by (auto simp: float_plus_up.rep_eq plus_up_def intro!: truncate_up_le) |
| 60533 | 750 |
hence "0 < ?fR" and "0 < real ?fR" using \<open>0 < ?R\<close> by auto |
| 29805 | 751 |
|
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
752 |
have monotone: "?DIV \<le> x / ?R" |
| 29805 | 753 |
proof - |
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
754 |
have "?DIV \<le> real x / ?fR" by (rule float_divl) |
| 60533 | 755 |
also have "\<dots> \<le> x / ?R" by (rule divide_left_mono[OF \<open>?R \<le> ?fR\<close> \<open>0 \<le> real x\<close> mult_pos_pos[OF order_less_le_trans[OF divisor_gt0 \<open>?R \<le> real ?fR\<close>] divisor_gt0]]) |
| 29805 | 756 |
finally show ?thesis . |
757 |
qed |
|
758 |
||
759 |
show ?thesis |
|
760 |
proof (cases "x \<le> Float 1 1") |
|
761 |
case True |
|
| 60680 | 762 |
have "x \<le> sqrt (1 + x * x)" |
763 |
using real_sqrt_sum_squares_ge2[where x=1, unfolded numeral_2_eq_2] by auto |
|
| 60533 | 764 |
also note \<open>\<dots> \<le> (ub_sqrt prec ?sxx)\<close> |
| 60680 | 765 |
finally have "real x \<le> ?fR" |
766 |
by (auto simp: float_plus_up.rep_eq plus_up_def intro!: truncate_up_le) |
|
767 |
moreover have "?DIV \<le> real x / ?fR" |
|
768 |
by (rule float_divl) |
|
769 |
ultimately have "real ?DIV \<le> 1" |
|
770 |
unfolding divide_le_eq_1_pos[OF \<open>0 < real ?fR\<close>, symmetric] by auto |
|
771 |
||
772 |
have "0 \<le> real ?DIV" |
|
773 |
using float_divl_lower_bound[OF \<open>0 \<le> x\<close>] \<open>0 < ?fR\<close> |
|
774 |
unfolding less_eq_float_def by auto |
|
| 60533 | 775 |
|
776 |
from arctan_0_1_bounds_round[OF \<open>0 \<le> real (?DIV)\<close> \<open>real (?DIV) \<le> 1\<close>] |
|
| 60680 | 777 |
have "Float 1 1 * ?lb_horner ?DIV \<le> 2 * arctan ?DIV" |
778 |
by simp |
|
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
779 |
also have "\<dots> \<le> 2 * arctan (x / ?R)" |
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
780 |
using arctan_monotone'[OF monotone] by (auto intro!: mult_left_mono arctan_monotone') |
| 60680 | 781 |
also have "2 * arctan (x / ?R) = arctan x" |
782 |
using arctan_half[symmetric] unfolding numeral_2_eq_2 power_Suc2 power_0 mult_1_left . |
|
783 |
finally show ?thesis |
|
784 |
unfolding lb_arctan.simps Let_def if_not_P[OF \<open>\<not> x < 0\<close>] |
|
785 |
if_not_P[OF \<open>\<not> x \<le> Float 1 (- 1)\<close>] if_P[OF True] |
|
786 |
by (auto simp: float_round_down.rep_eq |
|
787 |
intro!: order_trans[OF mult_left_mono[OF truncate_down]]) |
|
| 29805 | 788 |
next |
789 |
case False |
|
| 47600 | 790 |
hence "2 < real x" by auto |
|
31098
73dd67adf90a
replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents:
30971
diff
changeset
|
791 |
hence "1 \<le> real x" by auto |
| 29805 | 792 |
|
793 |
let "?invx" = "float_divr prec 1 x" |
|
| 60680 | 794 |
have "0 \<le> arctan x" using arctan_monotone'[OF \<open>0 \<le> real x\<close>] |
795 |
using arctan_tan[of 0, unfolded tan_zero] by auto |
|
| 29805 | 796 |
|
797 |
show ?thesis |
|
798 |
proof (cases "1 < ?invx") |
|
|
32960
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32920
diff
changeset
|
799 |
case True |
| 60680 | 800 |
show ?thesis |
801 |
unfolding lb_arctan.simps Let_def if_not_P[OF \<open>\<not> x < 0\<close>] |
|
802 |
if_not_P[OF \<open>\<not> x \<le> Float 1 (- 1)\<close>] if_not_P[OF False] if_P[OF True] |
|
| 60533 | 803 |
using \<open>0 \<le> arctan x\<close> by auto |
| 29805 | 804 |
next |
|
32960
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32920
diff
changeset
|
805 |
case False |
| 47600 | 806 |
hence "real ?invx \<le> 1" by auto |
| 60680 | 807 |
have "0 \<le> real ?invx" |
808 |
by (rule order_trans[OF _ float_divr]) (auto simp add: \<open>0 \<le> real x\<close>) |
|
809 |
||
810 |
have "1 / x \<noteq> 0" and "0 < 1 / x" |
|
811 |
using \<open>0 < real x\<close> by auto |
|
812 |
||
813 |
have "arctan (1 / x) \<le> arctan ?invx" |
|
814 |
unfolding one_float.rep_eq[symmetric] by (rule arctan_monotone', rule float_divr) |
|
815 |
also have "\<dots> \<le> ?ub_horner ?invx" |
|
816 |
using arctan_0_1_bounds_round[OF \<open>0 \<le> real ?invx\<close> \<open>real ?invx \<le> 1\<close>] |
|
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
817 |
by (auto intro!: float_round_up_le) |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
818 |
also note float_round_up |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
819 |
finally have "pi / 2 - float_round_up prec (?ub_horner ?invx) \<le> arctan x" |
| 60533 | 820 |
using \<open>0 \<le> arctan x\<close> arctan_inverse[OF \<open>1 / x \<noteq> 0\<close>] |
821 |
unfolding real_sgn_pos[OF \<open>0 < 1 / real x\<close>] le_diff_eq by auto |
|
|
32960
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32920
diff
changeset
|
822 |
moreover |
|
58410
6d46ad54a2ab
explicit separation of signed and unsigned numerals using existing lexical categories num and xnum
haftmann
parents:
58310
diff
changeset
|
823 |
have "lb_pi prec * Float 1 (- 1) \<le> pi / 2" |
|
47599
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
824 |
unfolding Float_num times_divide_eq_right mult_1_left using pi_boundaries by simp |
|
32960
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32920
diff
changeset
|
825 |
ultimately |
| 60680 | 826 |
show ?thesis |
827 |
unfolding lb_arctan.simps Let_def if_not_P[OF \<open>\<not> x < 0\<close>] |
|
828 |
if_not_P[OF \<open>\<not> x \<le> Float 1 (- 1)\<close>] if_not_P[OF \<open>\<not> x \<le> Float 1 1\<close>] if_not_P[OF False] |
|
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
829 |
by (auto intro!: float_plus_down_le) |
| 29805 | 830 |
qed |
831 |
qed |
|
832 |
qed |
|
833 |
qed |
|
834 |
||
| 60680 | 835 |
lemma ub_arctan_bound': |
836 |
assumes "0 \<le> real x" |
|
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
837 |
shows "arctan x \<le> ub_arctan prec x" |
| 29805 | 838 |
proof - |
| 60680 | 839 |
have "\<not> x < 0" and "0 \<le> x" |
840 |
using \<open>0 \<le> real x\<close> by auto |
|
841 |
||
842 |
let "?ub_horner x" = |
|
843 |
"float_round_up prec (x * ub_arctan_horner prec (get_odd (prec div 4 + 1)) 1 (float_round_down (Suc prec) (x * x)))" |
|
844 |
let "?lb_horner x" = |
|
845 |
"float_round_down prec (x * lb_arctan_horner prec (get_even (prec div 4 + 1)) 1 (float_round_up (Suc prec) (x * x)))" |
|
| 29805 | 846 |
|
847 |
show ?thesis |
|
|
58410
6d46ad54a2ab
explicit separation of signed and unsigned numerals using existing lexical categories num and xnum
haftmann
parents:
58310
diff
changeset
|
848 |
proof (cases "x \<le> Float 1 (- 1)") |
| 60680 | 849 |
case True |
850 |
hence "real x \<le> 1" by auto |
|
851 |
show ?thesis |
|
852 |
unfolding ub_arctan.simps Let_def if_not_P[OF \<open>\<not> x < 0\<close>] if_P[OF True] |
|
| 60533 | 853 |
using arctan_0_1_bounds_round[OF \<open>0 \<le> real x\<close> \<open>real x \<le> 1\<close>] |
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
854 |
by (auto intro!: float_round_up_le) |
| 29805 | 855 |
next |
| 60680 | 856 |
case False |
857 |
hence "0 < real x" by auto |
|
|
31098
73dd67adf90a
replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents:
30971
diff
changeset
|
858 |
let ?R = "1 + sqrt (1 + real x * real x)" |
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
859 |
let ?sxx = "float_plus_down prec 1 (float_round_down prec (x * x))" |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
860 |
let ?fR = "float_plus_down (Suc prec) 1 (lb_sqrt prec ?sxx)" |
| 29805 | 861 |
let ?DIV = "float_divr prec x ?fR" |
|
31467
f7d2aa438bee
Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents:
31148
diff
changeset
|
862 |
|
| 60680 | 863 |
have sqr_ge0: "0 \<le> 1 + real x * real x" |
864 |
using sum_power2_ge_zero[of 1 "real x", unfolded numeral_2_eq_2] by auto |
|
|
31098
73dd67adf90a
replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents:
30971
diff
changeset
|
865 |
hence "0 \<le> real (1 + x*x)" by auto |
|
31467
f7d2aa438bee
Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents:
31148
diff
changeset
|
866 |
|
| 29805 | 867 |
hence divisor_gt0: "0 < ?R" by (auto intro: add_pos_nonneg) |
868 |
||
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
869 |
have "lb_sqrt prec ?sxx \<le> sqrt ?sxx" |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
870 |
using bnds_sqrt'[of ?sxx] by auto |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
871 |
also have "\<dots> \<le> sqrt (1 + x*x)" |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
872 |
by (auto simp: float_plus_down.rep_eq plus_down_def float_round_down.rep_eq truncate_down_le) |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
873 |
finally have "lb_sqrt prec ?sxx \<le> sqrt (1 + x*x)" . |
| 60680 | 874 |
hence "?fR \<le> ?R" |
875 |
by (auto simp: float_plus_down.rep_eq plus_down_def truncate_down_le) |
|
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
876 |
have "0 < real ?fR" |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
877 |
by (auto simp: float_plus_down.rep_eq plus_down_def float_round_down.rep_eq |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
878 |
intro!: truncate_down_ge1 lb_sqrt_lower_bound order_less_le_trans[OF zero_less_one] |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
879 |
truncate_down_nonneg add_nonneg_nonneg) |
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
880 |
have monotone: "x / ?R \<le> (float_divr prec x ?fR)" |
| 29805 | 881 |
proof - |
| 60533 | 882 |
from divide_left_mono[OF \<open>?fR \<le> ?R\<close> \<open>0 \<le> real x\<close> mult_pos_pos[OF divisor_gt0 \<open>0 < real ?fR\<close>]] |
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
883 |
have "x / ?R \<le> x / ?fR" . |
|
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
884 |
also have "\<dots> \<le> ?DIV" by (rule float_divr) |
| 29805 | 885 |
finally show ?thesis . |
886 |
qed |
|
887 |
||
888 |
show ?thesis |
|
889 |
proof (cases "x \<le> Float 1 1") |
|
890 |
case True |
|
891 |
show ?thesis |
|
892 |
proof (cases "?DIV > 1") |
|
|
32960
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32920
diff
changeset
|
893 |
case True |
| 60680 | 894 |
have "pi / 2 \<le> ub_pi prec * Float 1 (- 1)" |
895 |
unfolding Float_num times_divide_eq_right mult_1_left using pi_boundaries by auto |
|
|
32960
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32920
diff
changeset
|
896 |
from order_less_le_trans[OF arctan_ubound this, THEN less_imp_le] |
| 60680 | 897 |
show ?thesis |
898 |
unfolding ub_arctan.simps Let_def if_not_P[OF \<open>\<not> x < 0\<close>] |
|
899 |
if_not_P[OF \<open>\<not> x \<le> Float 1 (- 1)\<close>] if_P[OF \<open>x \<le> Float 1 1\<close>] if_P[OF True] . |
|
| 29805 | 900 |
next |
|
32960
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32920
diff
changeset
|
901 |
case False |
| 47600 | 902 |
hence "real ?DIV \<le> 1" by auto |
|
32960
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32920
diff
changeset
|
903 |
|
| 60680 | 904 |
have "0 \<le> x / ?R" |
905 |
using \<open>0 \<le> real x\<close> \<open>0 < ?R\<close> unfolding zero_le_divide_iff by auto |
|
906 |
hence "0 \<le> real ?DIV" |
|
907 |
using monotone by (rule order_trans) |
|
908 |
||
909 |
have "arctan x = 2 * arctan (x / ?R)" |
|
910 |
using arctan_half unfolding numeral_2_eq_2 power_Suc2 power_0 mult_1_left . |
|
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
911 |
also have "\<dots> \<le> 2 * arctan (?DIV)" |
|
32960
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32920
diff
changeset
|
912 |
using arctan_monotone'[OF monotone] by (auto intro!: mult_left_mono) |
|
47599
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
913 |
also have "\<dots> \<le> (Float 1 1 * ?ub_horner ?DIV)" unfolding Float_num |
| 60533 | 914 |
using arctan_0_1_bounds_round[OF \<open>0 \<le> real ?DIV\<close> \<open>real ?DIV \<le> 1\<close>] |
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
915 |
by (auto intro!: float_round_up_le) |
| 60680 | 916 |
finally show ?thesis |
917 |
unfolding ub_arctan.simps Let_def if_not_P[OF \<open>\<not> x < 0\<close>] |
|
918 |
if_not_P[OF \<open>\<not> x \<le> Float 1 (- 1)\<close>] if_P[OF \<open>x \<le> Float 1 1\<close>] if_not_P[OF False] . |
|
| 29805 | 919 |
qed |
920 |
next |
|
921 |
case False |
|
| 47600 | 922 |
hence "2 < real x" by auto |
|
31098
73dd67adf90a
replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents:
30971
diff
changeset
|
923 |
hence "1 \<le> real x" by auto |
|
73dd67adf90a
replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents:
30971
diff
changeset
|
924 |
hence "0 < real x" by auto |
| 47600 | 925 |
hence "0 < x" by auto |
| 29805 | 926 |
|
927 |
let "?invx" = "float_divl prec 1 x" |
|
| 60680 | 928 |
have "0 \<le> arctan x" |
929 |
using arctan_monotone'[OF \<open>0 \<le> real x\<close>] and arctan_tan[of 0, unfolded tan_zero] by auto |
|
930 |
||
931 |
have "real ?invx \<le> 1" |
|
932 |
unfolding less_float_def |
|
933 |
by (rule order_trans[OF float_divl]) |
|
934 |
(auto simp add: \<open>1 \<le> real x\<close> divide_le_eq_1_pos[OF \<open>0 < real x\<close>]) |
|
935 |
have "0 \<le> real ?invx" |
|
936 |
using \<open>0 < x\<close> by (intro float_divl_lower_bound) auto |
|
937 |
||
938 |
have "1 / x \<noteq> 0" and "0 < 1 / x" |
|
939 |
using \<open>0 < real x\<close> by auto |
|
940 |
||
941 |
have "(?lb_horner ?invx) \<le> arctan (?invx)" |
|
942 |
using arctan_0_1_bounds_round[OF \<open>0 \<le> real ?invx\<close> \<open>real ?invx \<le> 1\<close>] |
|
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
943 |
by (auto intro!: float_round_down_le) |
| 60680 | 944 |
also have "\<dots> \<le> arctan (1 / x)" |
945 |
unfolding one_float.rep_eq[symmetric] by (rule arctan_monotone') (rule float_divl) |
|
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
946 |
finally have "arctan x \<le> pi / 2 - (?lb_horner ?invx)" |
| 60533 | 947 |
using \<open>0 \<le> arctan x\<close> arctan_inverse[OF \<open>1 / x \<noteq> 0\<close>] |
948 |
unfolding real_sgn_pos[OF \<open>0 < 1 / x\<close>] le_diff_eq by auto |
|
| 29805 | 949 |
moreover |
| 60680 | 950 |
have "pi / 2 \<le> ub_pi prec * Float 1 (- 1)" |
951 |
unfolding Float_num times_divide_eq_right mult_1_right |
|
952 |
using pi_boundaries by auto |
|
| 29805 | 953 |
ultimately |
| 60680 | 954 |
show ?thesis |
955 |
unfolding ub_arctan.simps Let_def if_not_P[OF \<open>\<not> x < 0\<close>] |
|
956 |
if_not_P[OF \<open>\<not> x \<le> Float 1 (- 1)\<close>] if_not_P[OF False] |
|
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
957 |
by (auto intro!: float_round_up_le float_plus_up_le) |
| 29805 | 958 |
qed |
959 |
qed |
|
960 |
qed |
|
961 |
||
| 60680 | 962 |
lemma arctan_boundaries: "arctan x \<in> {(lb_arctan prec x) .. (ub_arctan prec x)}"
|
| 29805 | 963 |
proof (cases "0 \<le> x") |
| 60680 | 964 |
case True |
965 |
hence "0 \<le> real x" by auto |
|
966 |
show ?thesis |
|
967 |
using ub_arctan_bound'[OF \<open>0 \<le> real x\<close>] lb_arctan_bound'[OF \<open>0 \<le> real x\<close>] |
|
968 |
unfolding atLeastAtMost_iff by auto |
|
| 29805 | 969 |
next |
| 60680 | 970 |
case False |
| 29805 | 971 |
let ?mx = "-x" |
| 60680 | 972 |
from False have "x < 0" and "0 \<le> real ?mx" |
973 |
by auto |
|
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
974 |
hence bounds: "lb_arctan prec ?mx \<le> arctan ?mx \<and> arctan ?mx \<le> ub_arctan prec ?mx" |
| 60533 | 975 |
using ub_arctan_bound'[OF \<open>0 \<le> real ?mx\<close>] lb_arctan_bound'[OF \<open>0 \<le> real ?mx\<close>] by auto |
| 60680 | 976 |
show ?thesis |
977 |
unfolding minus_float.rep_eq arctan_minus lb_arctan.simps[where x=x] |
|
978 |
ub_arctan.simps[where x=x] Let_def if_P[OF \<open>x < 0\<close>] |
|
|
47601
050718fe6eee
use real :: float => real as lifting-morphism so we can directlry use the rep_eq theorems
hoelzl
parents:
47600
diff
changeset
|
979 |
unfolding atLeastAtMost_iff using bounds[unfolded minus_float.rep_eq arctan_minus] |
|
47599
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
980 |
by (simp add: arctan_minus) |
| 29805 | 981 |
qed |
982 |
||
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
983 |
lemma bnds_arctan: "\<forall> (x::real) lx ux. (l, u) = (lb_arctan prec lx, ub_arctan prec ux) \<and> x \<in> {lx .. ux} \<longrightarrow> l \<le> arctan x \<and> arctan x \<le> u"
|
| 29805 | 984 |
proof (rule allI, rule allI, rule allI, rule impI) |
| 60680 | 985 |
fix x :: real |
986 |
fix lx ux |
|
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
987 |
assume "(l, u) = (lb_arctan prec lx, ub_arctan prec ux) \<and> x \<in> {lx .. ux}"
|
| 60680 | 988 |
hence l: "lb_arctan prec lx = l " |
989 |
and u: "ub_arctan prec ux = u" |
|
990 |
and x: "x \<in> {lx .. ux}"
|
|
991 |
by auto |
|
992 |
show "l \<le> arctan x \<and> arctan x \<le> u" |
|
993 |
proof |
|
994 |
show "l \<le> arctan x" |
|
995 |
proof - |
|
996 |
from arctan_boundaries[of lx prec, unfolded l] |
|
997 |
have "l \<le> arctan lx" by (auto simp del: lb_arctan.simps) |
|
998 |
also have "\<dots> \<le> arctan x" using x by (auto intro: arctan_monotone') |
|
999 |
finally show ?thesis . |
|
1000 |
qed |
|
1001 |
show "arctan x \<le> u" |
|
1002 |
proof - |
|
1003 |
have "arctan x \<le> arctan ux" using x by (auto intro: arctan_monotone') |
|
1004 |
also have "\<dots> \<le> u" using arctan_boundaries[of ux prec, unfolded u] by (auto simp del: ub_arctan.simps) |
|
1005 |
finally show ?thesis . |
|
1006 |
qed |
|
1007 |
qed |
|
| 29805 | 1008 |
qed |
1009 |
||
| 60680 | 1010 |
|
| 29805 | 1011 |
section "Sinus and Cosinus" |
1012 |
||
1013 |
subsection "Compute the cosinus and sinus series" |
|
1014 |
||
1015 |
fun ub_sin_cos_aux :: "nat \<Rightarrow> nat \<Rightarrow> nat \<Rightarrow> nat \<Rightarrow> float \<Rightarrow> float" |
|
1016 |
and lb_sin_cos_aux :: "nat \<Rightarrow> nat \<Rightarrow> nat \<Rightarrow> nat \<Rightarrow> float \<Rightarrow> float" where |
|
1017 |
"ub_sin_cos_aux prec 0 i k x = 0" |
|
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
1018 |
| "ub_sin_cos_aux prec (Suc n) i k x = float_plus_up prec |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
1019 |
(rapprox_rat prec 1 k) (- |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
1020 |
float_round_down prec (x * (lb_sin_cos_aux prec n (i + 2) (k * i * (i + 1)) x)))" |
| 29805 | 1021 |
| "lb_sin_cos_aux prec 0 i k x = 0" |
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
1022 |
| "lb_sin_cos_aux prec (Suc n) i k x = float_plus_down prec |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
1023 |
(lapprox_rat prec 1 k) (- |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
1024 |
float_round_up prec (x * (ub_sin_cos_aux prec n (i + 2) (k * i * (i + 1)) x)))" |
|
47601
050718fe6eee
use real :: float => real as lifting-morphism so we can directlry use the rep_eq theorems
hoelzl
parents:
47600
diff
changeset
|
1025 |
|
| 29805 | 1026 |
lemma cos_aux: |
|
59730
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1027 |
shows "(lb_sin_cos_aux prec n 1 1 (x * x)) \<le> (\<Sum> i=0..<n. (- 1) ^ i * (1/(fact (2 * i))) * x ^(2 * i))" (is "?lb") |
|
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1028 |
and "(\<Sum> i=0..<n. (- 1) ^ i * (1/(fact (2 * i))) * x^(2 * i)) \<le> (ub_sin_cos_aux prec n 1 1 (x * x))" (is "?ub") |
| 29805 | 1029 |
proof - |
|
47599
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
1030 |
have "0 \<le> real (x * x)" by auto |
|
59730
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1031 |
let "?f n" = "fact (2 * n) :: nat" |
| 60680 | 1032 |
have f_eq: "?f (Suc n) = ?f n * ((\<lambda>i. i + 2) ^^ n) 1 * (((\<lambda>i. i + 2) ^^ n) 1 + 1)" for n |
1033 |
proof - |
|
1034 |
have "\<And>m. ((\<lambda>i. i + 2) ^^ n) m = m + 2 * n" by (induct n) auto |
|
1035 |
then show ?thesis by auto |
|
1036 |
qed |
|
| 31809 | 1037 |
from horner_bounds[where lb="lb_sin_cos_aux prec" and ub="ub_sin_cos_aux prec" and j'=0, |
| 60533 | 1038 |
OF \<open>0 \<le> real (x * x)\<close> f_eq lb_sin_cos_aux.simps ub_sin_cos_aux.simps] |
| 60680 | 1039 |
show ?lb and ?ub |
1040 |
by (auto simp add: power_mult power2_eq_square[of "real x"]) |
|
| 29805 | 1041 |
qed |
1042 |
||
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
1043 |
lemma lb_sin_cos_aux_zero_le_one: "lb_sin_cos_aux prec n i j 0 \<le> 1" |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
1044 |
by (cases j n rule: nat.exhaust[case_product nat.exhaust]) |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
1045 |
(auto intro!: float_plus_down_le order_trans[OF lapprox_rat]) |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
1046 |
|
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
1047 |
lemma one_le_ub_sin_cos_aux: "odd n \<Longrightarrow> 1 \<le> ub_sin_cos_aux prec n i (Suc 0) 0" |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
1048 |
by (cases n) (auto intro!: float_plus_up_le order_trans[OF _ rapprox_rat]) |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
1049 |
|
| 60680 | 1050 |
lemma cos_boundaries: |
1051 |
assumes "0 \<le> real x" and "x \<le> pi / 2" |
|
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
1052 |
shows "cos x \<in> {(lb_sin_cos_aux prec (get_even n) 1 1 (x * x)) .. (ub_sin_cos_aux prec (get_odd n) 1 1 (x * x))}"
|
|
31098
73dd67adf90a
replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents:
30971
diff
changeset
|
1053 |
proof (cases "real x = 0") |
| 60680 | 1054 |
case False |
1055 |
hence "real x \<noteq> 0" by auto |
|
1056 |
hence "0 < x" and "0 < real x" |
|
1057 |
using \<open>0 \<le> real x\<close> by auto |
|
1058 |
have "0 < x * x" |
|
1059 |
using \<open>0 < x\<close> by simp |
|
1060 |
||
1061 |
have morph_to_if_power: "(\<Sum> i=0..<n. (-1::real) ^ i * (1/(fact (2 * i))) * x ^ (2 * i)) = |
|
1062 |
(\<Sum> i = 0 ..< 2 * n. (if even(i) then ((- 1) ^ (i div 2))/((fact i)) else 0) * x ^ i)" |
|
1063 |
(is "?sum = ?ifsum") for x n |
|
| 29805 | 1064 |
proof - |
1065 |
have "?sum = ?sum + (\<Sum> j = 0 ..< n. 0)" by auto |
|
| 31809 | 1066 |
also have "\<dots> = |
|
59730
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1067 |
(\<Sum> j = 0 ..< n. (- 1) ^ ((2 * j) div 2) / ((fact (2 * j))) * x ^(2 * j)) + (\<Sum> j = 0 ..< n. 0)" by auto |
|
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1068 |
also have "\<dots> = (\<Sum> i = 0 ..< 2 * n. if even i then (- 1) ^ (i div 2) / ((fact i)) * x ^ i else 0)" |
| 56195 | 1069 |
unfolding sum_split_even_odd atLeast0LessThan .. |
|
59730
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1070 |
also have "\<dots> = (\<Sum> i = 0 ..< 2 * n. (if even i then (- 1) ^ (i div 2) / ((fact i)) else 0) * x ^ i)" |
| 57418 | 1071 |
by (rule setsum.cong) auto |
| 60680 | 1072 |
finally show ?thesis . |
1073 |
qed |
|
| 29805 | 1074 |
|
1075 |
{ fix n :: nat assume "0 < n"
|
|
1076 |
hence "0 < 2 * n" by auto |
|
|
31098
73dd67adf90a
replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents:
30971
diff
changeset
|
1077 |
obtain t where "0 < t" and "t < real x" and |
|
59730
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1078 |
cos_eq: "cos x = (\<Sum> i = 0 ..< 2 * n. (if even(i) then ((- 1) ^ (i div 2))/((fact i)) else 0) * (real x) ^ i) |
|
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1079 |
+ (cos (t + 1/2 * (2 * n) * pi) / (fact (2*n))) * (real x)^(2*n)" |
| 29805 | 1080 |
(is "_ = ?SUM + ?rest / ?fact * ?pow") |
| 60533 | 1081 |
using Maclaurin_cos_expansion2[OF \<open>0 < real x\<close> \<open>0 < 2 * n\<close>] |
| 56195 | 1082 |
unfolding cos_coeff_def atLeast0LessThan by auto |
| 29805 | 1083 |
|
|
58410
6d46ad54a2ab
explicit separation of signed and unsigned numerals using existing lexical categories num and xnum
haftmann
parents:
58310
diff
changeset
|
1084 |
have "cos t * (- 1) ^ n = cos t * cos (n * pi) + sin t * sin (n * pi)" by auto |
|
59751
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59741
diff
changeset
|
1085 |
also have "\<dots> = cos (t + n * pi)" by (simp add: cos_add) |
| 29805 | 1086 |
also have "\<dots> = ?rest" by auto |
|
58410
6d46ad54a2ab
explicit separation of signed and unsigned numerals using existing lexical categories num and xnum
haftmann
parents:
58310
diff
changeset
|
1087 |
finally have "cos t * (- 1) ^ n = ?rest" . |
| 29805 | 1088 |
moreover |
| 60533 | 1089 |
have "t \<le> pi / 2" using \<open>t < real x\<close> and \<open>x \<le> pi / 2\<close> by auto |
1090 |
hence "0 \<le> cos t" using \<open>0 < t\<close> and cos_ge_zero by auto |
|
| 29805 | 1091 |
ultimately have even: "even n \<Longrightarrow> 0 \<le> ?rest" and odd: "odd n \<Longrightarrow> 0 \<le> - ?rest " by auto |
1092 |
||
1093 |
have "0 < ?fact" by auto |
|
| 60533 | 1094 |
have "0 < ?pow" using \<open>0 < real x\<close> by auto |
| 29805 | 1095 |
|
1096 |
{
|
|
1097 |
assume "even n" |
|
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
1098 |
have "(lb_sin_cos_aux prec n 1 1 (x * x)) \<le> ?SUM" |
|
32960
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32920
diff
changeset
|
1099 |
unfolding morph_to_if_power[symmetric] using cos_aux by auto |
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
1100 |
also have "\<dots> \<le> cos x" |
| 29805 | 1101 |
proof - |
| 60533 | 1102 |
from even[OF \<open>even n\<close>] \<open>0 < ?fact\<close> \<open>0 < ?pow\<close> |
|
56571
f4635657d66f
added divide_nonneg_nonneg and co; made it a simp rule
hoelzl
parents:
56544
diff
changeset
|
1103 |
have "0 \<le> (?rest / ?fact) * ?pow" by simp |
|
32960
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32920
diff
changeset
|
1104 |
thus ?thesis unfolding cos_eq by auto |
| 29805 | 1105 |
qed |
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
1106 |
finally have "(lb_sin_cos_aux prec n 1 1 (x * x)) \<le> cos x" . |
| 29805 | 1107 |
} note lb = this |
1108 |
||
1109 |
{
|
|
1110 |
assume "odd n" |
|
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
1111 |
have "cos x \<le> ?SUM" |
| 29805 | 1112 |
proof - |
| 60533 | 1113 |
from \<open>0 < ?fact\<close> and \<open>0 < ?pow\<close> and odd[OF \<open>odd n\<close>] |
|
32960
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32920
diff
changeset
|
1114 |
have "0 \<le> (- ?rest) / ?fact * ?pow" |
|
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32920
diff
changeset
|
1115 |
by (metis mult_nonneg_nonneg divide_nonneg_pos less_imp_le) |
|
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32920
diff
changeset
|
1116 |
thus ?thesis unfolding cos_eq by auto |
| 29805 | 1117 |
qed |
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
1118 |
also have "\<dots> \<le> (ub_sin_cos_aux prec n 1 1 (x * x))" |
|
32960
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32920
diff
changeset
|
1119 |
unfolding morph_to_if_power[symmetric] using cos_aux by auto |
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
1120 |
finally have "cos x \<le> (ub_sin_cos_aux prec n 1 1 (x * x))" . |
| 29805 | 1121 |
} note ub = this and lb |
1122 |
} note ub = this(1) and lb = this(2) |
|
1123 |
||
| 60680 | 1124 |
have "cos x \<le> (ub_sin_cos_aux prec (get_odd n) 1 1 (x * x))" |
1125 |
using ub[OF odd_pos[OF get_odd] get_odd] . |
|
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
1126 |
moreover have "(lb_sin_cos_aux prec (get_even n) 1 1 (x * x)) \<le> cos x" |
| 29805 | 1127 |
proof (cases "0 < get_even n") |
| 60680 | 1128 |
case True |
1129 |
show ?thesis using lb[OF True get_even] . |
|
| 29805 | 1130 |
next |
1131 |
case False |
|
1132 |
hence "get_even n = 0" by auto |
|
| 60680 | 1133 |
have "- (pi / 2) \<le> x" |
1134 |
by (rule order_trans[OF _ \<open>0 < real x\<close>[THEN less_imp_le]]) auto |
|
1135 |
with \<open>x \<le> pi / 2\<close> show ?thesis |
|
1136 |
unfolding \<open>get_even n = 0\<close> lb_sin_cos_aux.simps minus_float.rep_eq zero_float.rep_eq |
|
1137 |
using cos_ge_zero by auto |
|
| 29805 | 1138 |
qed |
1139 |
ultimately show ?thesis by auto |
|
1140 |
next |
|
1141 |
case True |
|
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
1142 |
hence "x = 0" |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
1143 |
by transfer |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
1144 |
thus ?thesis |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
1145 |
using lb_sin_cos_aux_zero_le_one one_le_ub_sin_cos_aux |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
1146 |
by simp |
| 29805 | 1147 |
qed |
1148 |
||
| 60680 | 1149 |
lemma sin_aux: |
1150 |
assumes "0 \<le> real x" |
|
1151 |
shows "(x * lb_sin_cos_aux prec n 2 1 (x * x)) \<le> |
|
1152 |
(\<Sum> i=0..<n. (- 1) ^ i * (1/(fact (2 * i + 1))) * x^(2 * i + 1))" (is "?lb") |
|
1153 |
and "(\<Sum> i=0..<n. (- 1) ^ i * (1/(fact (2 * i + 1))) * x^(2 * i + 1)) \<le> |
|
1154 |
(x * ub_sin_cos_aux prec n 2 1 (x * x))" (is "?ub") |
|
| 29805 | 1155 |
proof - |
|
47599
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
1156 |
have "0 \<le> real (x * x)" by auto |
|
59730
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1157 |
let "?f n" = "fact (2 * n + 1) :: nat" |
| 60680 | 1158 |
have f_eq: "?f (Suc n) = ?f n * ((\<lambda>i. i + 2) ^^ n) 2 * (((\<lambda>i. i + 2) ^^ n) 2 + 1)" for n |
1159 |
proof - |
|
|
45129
1fce03e3e8ad
tuned proofs -- eliminated vacuous "induct arbitrary: ..." situations;
wenzelm
parents:
44821
diff
changeset
|
1160 |
have F: "\<And>m. ((\<lambda>i. i + 2) ^^ n) m = m + 2 * n" by (induct n) auto |
| 60680 | 1161 |
show ?thesis |
1162 |
unfolding F by auto |
|
1163 |
qed |
|
| 29805 | 1164 |
from horner_bounds[where lb="lb_sin_cos_aux prec" and ub="ub_sin_cos_aux prec" and j'=0, |
| 60533 | 1165 |
OF \<open>0 \<le> real (x * x)\<close> f_eq lb_sin_cos_aux.simps ub_sin_cos_aux.simps] |
1166 |
show "?lb" and "?ub" using \<open>0 \<le> real x\<close> |
|
|
57512
cc97b347b301
reduced name variants for assoc and commute on plus and mult
haftmann
parents:
57418
diff
changeset
|
1167 |
unfolding power_add power_one_right mult.assoc[symmetric] setsum_left_distrib[symmetric] |
|
59730
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1168 |
unfolding mult.commute[where 'a=real] real_fact_nat |
|
31098
73dd67adf90a
replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents:
30971
diff
changeset
|
1169 |
by (auto intro!: mult_left_mono simp add: power_mult power2_eq_square[of "real x"]) |
| 29805 | 1170 |
qed |
1171 |
||
| 60680 | 1172 |
lemma sin_boundaries: |
1173 |
assumes "0 \<le> real x" |
|
1174 |
and "x \<le> pi / 2" |
|
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
1175 |
shows "sin x \<in> {(x * lb_sin_cos_aux prec (get_even n) 2 1 (x * x)) .. (x * ub_sin_cos_aux prec (get_odd n) 2 1 (x * x))}"
|
|
31098
73dd67adf90a
replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents:
30971
diff
changeset
|
1176 |
proof (cases "real x = 0") |
| 60680 | 1177 |
case False |
1178 |
hence "real x \<noteq> 0" by auto |
|
1179 |
hence "0 < x" and "0 < real x" |
|
1180 |
using \<open>0 \<le> real x\<close> by auto |
|
1181 |
have "0 < x * x" |
|
1182 |
using \<open>0 < x\<close> by simp |
|
1183 |
||
1184 |
have setsum_morph: "(\<Sum>j = 0 ..< n. (- 1) ^ (((2 * j + 1) - Suc 0) div 2) / ((fact (2 * j + 1))) * x ^(2 * j + 1)) = |
|
1185 |
(\<Sum> i = 0 ..< 2 * n. (if even(i) then 0 else ((- 1) ^ ((i - Suc 0) div 2))/((fact i))) * x ^ i)" |
|
1186 |
(is "?SUM = _") for x :: real and n |
|
1187 |
proof - |
|
1188 |
have pow: "!!i. x ^ (2 * i + 1) = x * x ^ (2 * i)" |
|
1189 |
by auto |
|
1190 |
have "?SUM = (\<Sum> j = 0 ..< n. 0) + ?SUM" |
|
1191 |
by auto |
|
1192 |
also have "\<dots> = (\<Sum> i = 0 ..< 2 * n. if even i then 0 else (- 1) ^ ((i - Suc 0) div 2) / ((fact i)) * x ^ i)" |
|
1193 |
unfolding sum_split_even_odd atLeast0LessThan .. |
|
1194 |
also have "\<dots> = (\<Sum> i = 0 ..< 2 * n. (if even i then 0 else (- 1) ^ ((i - Suc 0) div 2) / ((fact i))) * x ^ i)" |
|
1195 |
by (rule setsum.cong) auto |
|
1196 |
finally show ?thesis . |
|
1197 |
qed |
|
| 29805 | 1198 |
|
1199 |
{ fix n :: nat assume "0 < n"
|
|
1200 |
hence "0 < 2 * n + 1" by auto |
|
|
31098
73dd67adf90a
replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents:
30971
diff
changeset
|
1201 |
obtain t where "0 < t" and "t < real x" and |
|
59730
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1202 |
sin_eq: "sin x = (\<Sum> i = 0 ..< 2 * n + 1. (if even(i) then 0 else ((- 1) ^ ((i - Suc 0) div 2))/((fact i))) * (real x) ^ i) |
|
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1203 |
+ (sin (t + 1/2 * (2 * n + 1) * pi) / (fact (2*n + 1))) * (real x)^(2*n + 1)" |
| 29805 | 1204 |
(is "_ = ?SUM + ?rest / ?fact * ?pow") |
| 60533 | 1205 |
using Maclaurin_sin_expansion3[OF \<open>0 < 2 * n + 1\<close> \<open>0 < real x\<close>] |
| 56195 | 1206 |
unfolding sin_coeff_def atLeast0LessThan by auto |
| 29805 | 1207 |
|
| 60680 | 1208 |
have "?rest = cos t * (- 1) ^ n" |
1209 |
unfolding sin_add cos_add real_of_nat_add distrib_right distrib_left by auto |
|
| 29805 | 1210 |
moreover |
| 60680 | 1211 |
have "t \<le> pi / 2" |
1212 |
using \<open>t < real x\<close> and \<open>x \<le> pi / 2\<close> by auto |
|
1213 |
hence "0 \<le> cos t" |
|
1214 |
using \<open>0 < t\<close> and cos_ge_zero by auto |
|
1215 |
ultimately have even: "even n \<Longrightarrow> 0 \<le> ?rest" and odd: "odd n \<Longrightarrow> 0 \<le> - ?rest" |
|
1216 |
by auto |
|
1217 |
||
1218 |
have "0 < ?fact" |
|
1219 |
by (simp del: fact_Suc) |
|
1220 |
have "0 < ?pow" |
|
1221 |
using \<open>0 < real x\<close> by (rule zero_less_power) |
|
| 29805 | 1222 |
|
1223 |
{
|
|
1224 |
assume "even n" |
|
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
1225 |
have "(x * lb_sin_cos_aux prec n 2 1 (x * x)) \<le> |
|
59730
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1226 |
(\<Sum> i = 0 ..< 2 * n. (if even(i) then 0 else ((- 1) ^ ((i - Suc 0) div 2))/((fact i))) * (real x) ^ i)" |
| 60533 | 1227 |
using sin_aux[OF \<open>0 \<le> real x\<close>] unfolding setsum_morph[symmetric] by auto |
| 29805 | 1228 |
also have "\<dots> \<le> ?SUM" by auto |
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
1229 |
also have "\<dots> \<le> sin x" |
| 29805 | 1230 |
proof - |
| 60533 | 1231 |
from even[OF \<open>even n\<close>] \<open>0 < ?fact\<close> \<open>0 < ?pow\<close> |
|
56571
f4635657d66f
added divide_nonneg_nonneg and co; made it a simp rule
hoelzl
parents:
56544
diff
changeset
|
1232 |
have "0 \<le> (?rest / ?fact) * ?pow" by simp |
|
32960
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32920
diff
changeset
|
1233 |
thus ?thesis unfolding sin_eq by auto |
| 29805 | 1234 |
qed |
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
1235 |
finally have "(x * lb_sin_cos_aux prec n 2 1 (x * x)) \<le> sin x" . |
| 29805 | 1236 |
} note lb = this |
1237 |
||
1238 |
{
|
|
1239 |
assume "odd n" |
|
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
1240 |
have "sin x \<le> ?SUM" |
| 29805 | 1241 |
proof - |
| 60533 | 1242 |
from \<open>0 < ?fact\<close> and \<open>0 < ?pow\<close> and odd[OF \<open>odd n\<close>] |
|
32960
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32920
diff
changeset
|
1243 |
have "0 \<le> (- ?rest) / ?fact * ?pow" |
|
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32920
diff
changeset
|
1244 |
by (metis mult_nonneg_nonneg divide_nonneg_pos less_imp_le) |
|
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32920
diff
changeset
|
1245 |
thus ?thesis unfolding sin_eq by auto |
| 29805 | 1246 |
qed |
|
59730
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1247 |
also have "\<dots> \<le> (\<Sum> i = 0 ..< 2 * n. (if even(i) then 0 else ((- 1) ^ ((i - Suc 0) div 2))/((fact i))) * (real x) ^ i)" |
|
32960
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32920
diff
changeset
|
1248 |
by auto |
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
1249 |
also have "\<dots> \<le> (x * ub_sin_cos_aux prec n 2 1 (x * x))" |
| 60533 | 1250 |
using sin_aux[OF \<open>0 \<le> real x\<close>] unfolding setsum_morph[symmetric] by auto |
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
1251 |
finally have "sin x \<le> (x * ub_sin_cos_aux prec n 2 1 (x * x))" . |
| 29805 | 1252 |
} note ub = this and lb |
1253 |
} note ub = this(1) and lb = this(2) |
|
1254 |
||
| 60680 | 1255 |
have "sin x \<le> (x * ub_sin_cos_aux prec (get_odd n) 2 1 (x * x))" |
1256 |
using ub[OF odd_pos[OF get_odd] get_odd] . |
|
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
1257 |
moreover have "(x * lb_sin_cos_aux prec (get_even n) 2 1 (x * x)) \<le> sin x" |
| 29805 | 1258 |
proof (cases "0 < get_even n") |
| 60680 | 1259 |
case True |
1260 |
show ?thesis |
|
1261 |
using lb[OF True get_even] . |
|
| 29805 | 1262 |
next |
1263 |
case False |
|
1264 |
hence "get_even n = 0" by auto |
|
| 60533 | 1265 |
with \<open>x \<le> pi / 2\<close> \<open>0 \<le> real x\<close> |
| 60680 | 1266 |
show ?thesis |
1267 |
unfolding \<open>get_even n = 0\<close> ub_sin_cos_aux.simps minus_float.rep_eq |
|
1268 |
using sin_ge_zero by auto |
|
| 29805 | 1269 |
qed |
1270 |
ultimately show ?thesis by auto |
|
1271 |
next |
|
1272 |
case True |
|
1273 |
show ?thesis |
|
1274 |
proof (cases "n = 0") |
|
| 31809 | 1275 |
case True |
| 60680 | 1276 |
thus ?thesis |
1277 |
unfolding \<open>n = 0\<close> get_even_def get_odd_def |
|
1278 |
using \<open>real x = 0\<close> lapprox_rat[where x="-1" and y=1] by auto |
|
| 29805 | 1279 |
next |
| 60680 | 1280 |
case False |
1281 |
with not0_implies_Suc obtain m where "n = Suc m" by blast |
|
1282 |
thus ?thesis |
|
1283 |
unfolding \<open>n = Suc m\<close> get_even_def get_odd_def |
|
1284 |
using \<open>real x = 0\<close> rapprox_rat[where x=1 and y=1] lapprox_rat[where x=1 and y=1] |
|
1285 |
by (cases "even (Suc m)") auto |
|
| 29805 | 1286 |
qed |
1287 |
qed |
|
1288 |
||
| 60680 | 1289 |
|
| 29805 | 1290 |
subsection "Compute the cosinus in the entire domain" |
1291 |
||
1292 |
definition lb_cos :: "nat \<Rightarrow> float \<Rightarrow> float" where |
|
1293 |
"lb_cos prec x = (let |
|
1294 |
horner = \<lambda> x. lb_sin_cos_aux prec (get_even (prec div 4 + 1)) 1 1 (x * x) ; |
|
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
1295 |
half = \<lambda> x. if x < 0 then - 1 else float_plus_down prec (Float 1 1 * x * x) (- 1) |
|
58410
6d46ad54a2ab
explicit separation of signed and unsigned numerals using existing lexical categories num and xnum
haftmann
parents:
58310
diff
changeset
|
1296 |
in if x < Float 1 (- 1) then horner x |
|
6d46ad54a2ab
explicit separation of signed and unsigned numerals using existing lexical categories num and xnum
haftmann
parents:
58310
diff
changeset
|
1297 |
else if x < 1 then half (horner (x * Float 1 (- 1))) |
|
6d46ad54a2ab
explicit separation of signed and unsigned numerals using existing lexical categories num and xnum
haftmann
parents:
58310
diff
changeset
|
1298 |
else half (half (horner (x * Float 1 (- 2)))))" |
| 29805 | 1299 |
|
1300 |
definition ub_cos :: "nat \<Rightarrow> float \<Rightarrow> float" where |
|
1301 |
"ub_cos prec x = (let |
|
1302 |
horner = \<lambda> x. ub_sin_cos_aux prec (get_odd (prec div 4 + 1)) 1 1 (x * x) ; |
|
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
1303 |
half = \<lambda> x. float_plus_up prec (Float 1 1 * x * x) (- 1) |
|
58410
6d46ad54a2ab
explicit separation of signed and unsigned numerals using existing lexical categories num and xnum
haftmann
parents:
58310
diff
changeset
|
1304 |
in if x < Float 1 (- 1) then horner x |
|
6d46ad54a2ab
explicit separation of signed and unsigned numerals using existing lexical categories num and xnum
haftmann
parents:
58310
diff
changeset
|
1305 |
else if x < 1 then half (horner (x * Float 1 (- 1))) |
|
6d46ad54a2ab
explicit separation of signed and unsigned numerals using existing lexical categories num and xnum
haftmann
parents:
58310
diff
changeset
|
1306 |
else half (half (horner (x * Float 1 (- 2)))))" |
| 29805 | 1307 |
|
| 60680 | 1308 |
lemma lb_cos: |
1309 |
assumes "0 \<le> real x" and "x \<le> pi" |
|
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
1310 |
shows "cos x \<in> {(lb_cos prec x) .. (ub_cos prec x)}" (is "?cos x \<in> {(?lb x) .. (?ub x) }")
|
| 29805 | 1311 |
proof - |
| 60680 | 1312 |
have x_half[symmetric]: "cos x = 2 * cos (x / 2) * cos (x / 2) - 1" for x :: real |
1313 |
proof - |
|
1314 |
have "cos x = cos (x / 2 + x / 2)" |
|
1315 |
by auto |
|
| 29805 | 1316 |
also have "\<dots> = cos (x / 2) * cos (x / 2) + sin (x / 2) * sin (x / 2) - sin (x / 2) * sin (x / 2) + cos (x / 2) * cos (x / 2) - 1" |
1317 |
unfolding cos_add by auto |
|
| 60680 | 1318 |
also have "\<dots> = 2 * cos (x / 2) * cos (x / 2) - 1" |
1319 |
by algebra |
|
1320 |
finally show ?thesis . |
|
1321 |
qed |
|
| 29805 | 1322 |
|
| 60533 | 1323 |
have "\<not> x < 0" using \<open>0 \<le> real x\<close> by auto |
| 29805 | 1324 |
let "?ub_horner x" = "ub_sin_cos_aux prec (get_odd (prec div 4 + 1)) 1 1 (x * x)" |
1325 |
let "?lb_horner x" = "lb_sin_cos_aux prec (get_even (prec div 4 + 1)) 1 1 (x * x)" |
|
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
1326 |
let "?ub_half x" = "float_plus_up prec (Float 1 1 * x * x) (- 1)" |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
1327 |
let "?lb_half x" = "if x < 0 then - 1 else float_plus_down prec (Float 1 1 * x * x) (- 1)" |
| 29805 | 1328 |
|
1329 |
show ?thesis |
|
|
58410
6d46ad54a2ab
explicit separation of signed and unsigned numerals using existing lexical categories num and xnum
haftmann
parents:
58310
diff
changeset
|
1330 |
proof (cases "x < Float 1 (- 1)") |
| 60680 | 1331 |
case True |
1332 |
hence "x \<le> pi / 2" |
|
1333 |
using pi_ge_two by auto |
|
1334 |
show ?thesis |
|
1335 |
unfolding lb_cos_def[where x=x] ub_cos_def[where x=x] |
|
1336 |
if_not_P[OF \<open>\<not> x < 0\<close>] if_P[OF \<open>x < Float 1 (- 1)\<close>] Let_def |
|
| 60533 | 1337 |
using cos_boundaries[OF \<open>0 \<le> real x\<close> \<open>x \<le> pi / 2\<close>] . |
| 29805 | 1338 |
next |
1339 |
case False |
|
|
58410
6d46ad54a2ab
explicit separation of signed and unsigned numerals using existing lexical categories num and xnum
haftmann
parents:
58310
diff
changeset
|
1340 |
{ fix y x :: float let ?x2 = "(x * Float 1 (- 1))"
|
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
1341 |
assume "y \<le> cos ?x2" and "-pi \<le> x" and "x \<le> pi" |
| 60680 | 1342 |
hence "- (pi / 2) \<le> ?x2" and "?x2 \<le> pi / 2" |
1343 |
using pi_ge_two unfolding Float_num by auto |
|
1344 |
hence "0 \<le> cos ?x2" |
|
1345 |
by (rule cos_ge_zero) |
|
|
31467
f7d2aa438bee
Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents:
31148
diff
changeset
|
1346 |
|
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
1347 |
have "(?lb_half y) \<le> cos x" |
| 29805 | 1348 |
proof (cases "y < 0") |
| 60680 | 1349 |
case True |
1350 |
show ?thesis |
|
1351 |
using cos_ge_minus_one unfolding if_P[OF True] by auto |
|
| 29805 | 1352 |
next |
|
32960
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32920
diff
changeset
|
1353 |
case False |
| 47600 | 1354 |
hence "0 \<le> real y" by auto |
| 60533 | 1355 |
from mult_mono[OF \<open>y \<le> cos ?x2\<close> \<open>y \<le> cos ?x2\<close> \<open>0 \<le> cos ?x2\<close> this] |
|
32960
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32920
diff
changeset
|
1356 |
have "real y * real y \<le> cos ?x2 * cos ?x2" . |
| 60680 | 1357 |
hence "2 * real y * real y \<le> 2 * cos ?x2 * cos ?x2" |
1358 |
by auto |
|
1359 |
hence "2 * real y * real y - 1 \<le> 2 * cos (x / 2) * cos (x / 2) - 1" |
|
1360 |
unfolding Float_num by auto |
|
1361 |
thus ?thesis |
|
1362 |
unfolding if_not_P[OF False] x_half Float_num |
|
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
1363 |
by (auto intro!: float_plus_down_le) |
| 29805 | 1364 |
qed |
1365 |
} note lb_half = this |
|
|
31467
f7d2aa438bee
Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents:
31148
diff
changeset
|
1366 |
|
|
58410
6d46ad54a2ab
explicit separation of signed and unsigned numerals using existing lexical categories num and xnum
haftmann
parents:
58310
diff
changeset
|
1367 |
{ fix y x :: float let ?x2 = "(x * Float 1 (- 1))"
|
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
1368 |
assume ub: "cos ?x2 \<le> y" and "- pi \<le> x" and "x \<le> pi" |
| 60680 | 1369 |
hence "- (pi / 2) \<le> ?x2" and "?x2 \<le> pi / 2" |
1370 |
using pi_ge_two unfolding Float_num by auto |
|
| 29805 | 1371 |
hence "0 \<le> cos ?x2" by (rule cos_ge_zero) |
|
31467
f7d2aa438bee
Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents:
31148
diff
changeset
|
1372 |
|
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
1373 |
have "cos x \<le> (?ub_half y)" |
| 29805 | 1374 |
proof - |
| 60680 | 1375 |
have "0 \<le> real y" |
1376 |
using \<open>0 \<le> cos ?x2\<close> ub by (rule order_trans) |
|
| 60533 | 1377 |
from mult_mono[OF ub ub this \<open>0 \<le> cos ?x2\<close>] |
|
32960
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32920
diff
changeset
|
1378 |
have "cos ?x2 * cos ?x2 \<le> real y * real y" . |
| 60680 | 1379 |
hence "2 * cos ?x2 * cos ?x2 \<le> 2 * real y * real y" |
1380 |
by auto |
|
1381 |
hence "2 * cos (x / 2) * cos (x / 2) - 1 \<le> 2 * real y * real y - 1" |
|
1382 |
unfolding Float_num by auto |
|
1383 |
thus ?thesis |
|
1384 |
unfolding x_half Float_num |
|
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
1385 |
by (auto intro!: float_plus_up_le) |
| 29805 | 1386 |
qed |
1387 |
} note ub_half = this |
|
|
31467
f7d2aa438bee
Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents:
31148
diff
changeset
|
1388 |
|
|
58410
6d46ad54a2ab
explicit separation of signed and unsigned numerals using existing lexical categories num and xnum
haftmann
parents:
58310
diff
changeset
|
1389 |
let ?x2 = "x * Float 1 (- 1)" |
|
6d46ad54a2ab
explicit separation of signed and unsigned numerals using existing lexical categories num and xnum
haftmann
parents:
58310
diff
changeset
|
1390 |
let ?x4 = "x * Float 1 (- 1) * Float 1 (- 1)" |
|
31467
f7d2aa438bee
Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents:
31148
diff
changeset
|
1391 |
|
| 60680 | 1392 |
have "-pi \<le> x" |
1393 |
using pi_ge_zero[THEN le_imp_neg_le, unfolded minus_zero] \<open>0 \<le> real x\<close> |
|
1394 |
by (rule order_trans) |
|
|
31467
f7d2aa438bee
Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents:
31148
diff
changeset
|
1395 |
|
| 29805 | 1396 |
show ?thesis |
1397 |
proof (cases "x < 1") |
|
| 60680 | 1398 |
case True |
1399 |
hence "real x \<le> 1" by auto |
|
1400 |
have "0 \<le> real ?x2" and "?x2 \<le> pi / 2" |
|
1401 |
using pi_ge_two \<open>0 \<le> real x\<close> using assms by auto |
|
| 29805 | 1402 |
from cos_boundaries[OF this] |
| 60680 | 1403 |
have lb: "(?lb_horner ?x2) \<le> ?cos ?x2" and ub: "?cos ?x2 \<le> (?ub_horner ?x2)" |
1404 |
by auto |
|
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
1405 |
|
|
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
1406 |
have "(?lb x) \<le> ?cos x" |
| 29805 | 1407 |
proof - |
| 60533 | 1408 |
from lb_half[OF lb \<open>-pi \<le> x\<close> \<open>x \<le> pi\<close>] |
| 60680 | 1409 |
show ?thesis |
1410 |
unfolding lb_cos_def[where x=x] Let_def |
|
1411 |
using \<open>\<not> x < 0\<close> \<open>\<not> x < Float 1 (- 1)\<close> \<open>x < 1\<close> by auto |
|
| 29805 | 1412 |
qed |
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
1413 |
moreover have "?cos x \<le> (?ub x)" |
| 29805 | 1414 |
proof - |
| 60533 | 1415 |
from ub_half[OF ub \<open>-pi \<le> x\<close> \<open>x \<le> pi\<close>] |
| 60680 | 1416 |
show ?thesis |
1417 |
unfolding ub_cos_def[where x=x] Let_def |
|
1418 |
using \<open>\<not> x < 0\<close> \<open>\<not> x < Float 1 (- 1)\<close> \<open>x < 1\<close> by auto |
|
| 29805 | 1419 |
qed |
1420 |
ultimately show ?thesis by auto |
|
1421 |
next |
|
1422 |
case False |
|
| 60680 | 1423 |
have "0 \<le> real ?x4" and "?x4 \<le> pi / 2" |
1424 |
using pi_ge_two \<open>0 \<le> real x\<close> \<open>x \<le> pi\<close> unfolding Float_num by auto |
|
| 29805 | 1425 |
from cos_boundaries[OF this] |
| 60680 | 1426 |
have lb: "(?lb_horner ?x4) \<le> ?cos ?x4" and ub: "?cos ?x4 \<le> (?ub_horner ?x4)" |
1427 |
by auto |
|
1428 |
||
1429 |
have eq_4: "?x2 * Float 1 (- 1) = x * Float 1 (- 2)" |
|
1430 |
by transfer simp |
|
|
31467
f7d2aa438bee
Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents:
31148
diff
changeset
|
1431 |
|
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
1432 |
have "(?lb x) \<le> ?cos x" |
| 29805 | 1433 |
proof - |
| 60680 | 1434 |
have "-pi \<le> ?x2" and "?x2 \<le> pi" |
1435 |
using pi_ge_two \<open>0 \<le> real x\<close> \<open>x \<le> pi\<close> by auto |
|
| 60533 | 1436 |
from lb_half[OF lb_half[OF lb this] \<open>-pi \<le> x\<close> \<open>x \<le> pi\<close>, unfolded eq_4] |
| 60680 | 1437 |
show ?thesis |
1438 |
unfolding lb_cos_def[where x=x] if_not_P[OF \<open>\<not> x < 0\<close>] |
|
1439 |
if_not_P[OF \<open>\<not> x < Float 1 (- 1)\<close>] if_not_P[OF \<open>\<not> x < 1\<close>] Let_def . |
|
| 29805 | 1440 |
qed |
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
1441 |
moreover have "?cos x \<le> (?ub x)" |
| 29805 | 1442 |
proof - |
| 60680 | 1443 |
have "-pi \<le> ?x2" and "?x2 \<le> pi" |
1444 |
using pi_ge_two \<open>0 \<le> real x\<close> \<open> x \<le> pi\<close> by auto |
|
| 60533 | 1445 |
from ub_half[OF ub_half[OF ub this] \<open>-pi \<le> x\<close> \<open>x \<le> pi\<close>, unfolded eq_4] |
| 60680 | 1446 |
show ?thesis |
1447 |
unfolding ub_cos_def[where x=x] if_not_P[OF \<open>\<not> x < 0\<close>] |
|
1448 |
if_not_P[OF \<open>\<not> x < Float 1 (- 1)\<close>] if_not_P[OF \<open>\<not> x < 1\<close>] Let_def . |
|
| 29805 | 1449 |
qed |
1450 |
ultimately show ?thesis by auto |
|
1451 |
qed |
|
1452 |
qed |
|
1453 |
qed |
|
1454 |
||
| 60680 | 1455 |
lemma lb_cos_minus: |
1456 |
assumes "-pi \<le> x" |
|
1457 |
and "real x \<le> 0" |
|
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
1458 |
shows "cos (real(-x)) \<in> {(lb_cos prec (-x)) .. (ub_cos prec (-x))}"
|
| 29805 | 1459 |
proof - |
| 60680 | 1460 |
have "0 \<le> real (-x)" and "(-x) \<le> pi" |
1461 |
using \<open>-pi \<le> x\<close> \<open>real x \<le> 0\<close> by auto |
|
| 29805 | 1462 |
from lb_cos[OF this] show ?thesis . |
1463 |
qed |
|
1464 |
||
|
31467
f7d2aa438bee
Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents:
31148
diff
changeset
|
1465 |
definition bnds_cos :: "nat \<Rightarrow> float \<Rightarrow> float \<Rightarrow> float * float" where |
|
f7d2aa438bee
Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents:
31148
diff
changeset
|
1466 |
"bnds_cos prec lx ux = (let |
|
47599
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
1467 |
lpi = float_round_down prec (lb_pi prec) ; |
|
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
1468 |
upi = float_round_up prec (ub_pi prec) ; |
|
31467
f7d2aa438bee
Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents:
31148
diff
changeset
|
1469 |
k = floor_fl (float_divr prec (lx + lpi) (2 * lpi)) ; |
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
1470 |
lx = float_plus_down prec lx (- k * 2 * (if k < 0 then lpi else upi)) ; |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
1471 |
ux = float_plus_up prec ux (- k * 2 * (if k < 0 then upi else lpi)) |
|
31467
f7d2aa438bee
Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents:
31148
diff
changeset
|
1472 |
in if - lpi \<le> lx \<and> ux \<le> 0 then (lb_cos prec (-lx), ub_cos prec (-ux)) |
|
f7d2aa438bee
Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents:
31148
diff
changeset
|
1473 |
else if 0 \<le> lx \<and> ux \<le> lpi then (lb_cos prec ux, ub_cos prec lx) |
|
f7d2aa438bee
Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents:
31148
diff
changeset
|
1474 |
else if - lpi \<le> lx \<and> ux \<le> lpi then (min (lb_cos prec (-lx)) (lb_cos prec ux), Float 1 0) |
|
58410
6d46ad54a2ab
explicit separation of signed and unsigned numerals using existing lexical categories num and xnum
haftmann
parents:
58310
diff
changeset
|
1475 |
else if 0 \<le> lx \<and> ux \<le> 2 * lpi then (Float (- 1) 0, max (ub_cos prec lx) (ub_cos prec (- (ux - 2 * lpi)))) |
|
6d46ad54a2ab
explicit separation of signed and unsigned numerals using existing lexical categories num and xnum
haftmann
parents:
58310
diff
changeset
|
1476 |
else if -2 * lpi \<le> lx \<and> ux \<le> 0 then (Float (- 1) 0, max (ub_cos prec (lx + 2 * lpi)) (ub_cos prec (-ux))) |
|
6d46ad54a2ab
explicit separation of signed and unsigned numerals using existing lexical categories num and xnum
haftmann
parents:
58310
diff
changeset
|
1477 |
else (Float (- 1) 0, Float 1 0))" |
| 29805 | 1478 |
|
| 60680 | 1479 |
lemma floor_int: obtains k :: int where "real k = (floor_fl f)" |
|
47599
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
1480 |
by (simp add: floor_fl_def) |
| 29805 | 1481 |
|
| 60680 | 1482 |
lemma cos_periodic_nat[simp]: |
1483 |
fixes n :: nat |
|
1484 |
shows "cos (x + n * (2 * pi)) = cos x" |
|
|
31467
f7d2aa438bee
Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents:
31148
diff
changeset
|
1485 |
proof (induct n arbitrary: x) |
| 60680 | 1486 |
case 0 |
1487 |
then show ?case by simp |
|
1488 |
next |
|
|
31467
f7d2aa438bee
Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents:
31148
diff
changeset
|
1489 |
case (Suc n) |
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
1490 |
have split_pi_off: "x + (Suc n) * (2 * pi) = (x + n * (2 * pi)) + 2 * pi" |
|
49962
a8cc904a6820
Renamed {left,right}_distrib to distrib_{right,left}.
webertj
parents:
49351
diff
changeset
|
1491 |
unfolding Suc_eq_plus1 real_of_nat_add real_of_one distrib_right by auto |
| 60680 | 1492 |
show ?case |
1493 |
unfolding split_pi_off using Suc by auto |
|
1494 |
qed |
|
1495 |
||
1496 |
lemma cos_periodic_int[simp]: |
|
1497 |
fixes i :: int |
|
1498 |
shows "cos (x + i * (2 * pi)) = cos x" |
|
|
31467
f7d2aa438bee
Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents:
31148
diff
changeset
|
1499 |
proof (cases "0 \<le> i") |
| 60680 | 1500 |
case True |
1501 |
hence i_nat: "real i = nat i" by auto |
|
1502 |
show ?thesis |
|
1503 |
unfolding i_nat by auto |
|
|
31467
f7d2aa438bee
Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents:
31148
diff
changeset
|
1504 |
next |
| 60680 | 1505 |
case False |
1506 |
hence i_nat: "i = - real (nat (-i))" by auto |
|
1507 |
have "cos x = cos (x + i * (2 * pi) - i * (2 * pi))" |
|
1508 |
by auto |
|
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
1509 |
also have "\<dots> = cos (x + i * (2 * pi))" |
|
31467
f7d2aa438bee
Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents:
31148
diff
changeset
|
1510 |
unfolding i_nat mult_minus_left diff_minus_eq_add by (rule cos_periodic_nat) |
|
f7d2aa438bee
Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents:
31148
diff
changeset
|
1511 |
finally show ?thesis by auto |
| 29805 | 1512 |
qed |
1513 |
||
| 60680 | 1514 |
lemma bnds_cos: "\<forall>(x::real) lx ux. (l, u) = |
1515 |
bnds_cos prec lx ux \<and> x \<in> {lx .. ux} \<longrightarrow> l \<le> cos x \<and> cos x \<le> u"
|
|
1516 |
proof (rule allI | rule impI | erule conjE)+ |
|
1517 |
fix x :: real |
|
1518 |
fix lx ux |
|
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
1519 |
assume bnds: "(l, u) = bnds_cos prec lx ux" and x: "x \<in> {lx .. ux}"
|
|
31467
f7d2aa438bee
Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents:
31148
diff
changeset
|
1520 |
|
|
47599
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
1521 |
let ?lpi = "float_round_down prec (lb_pi prec)" |
|
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
1522 |
let ?upi = "float_round_up prec (ub_pi prec)" |
|
31467
f7d2aa438bee
Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents:
31148
diff
changeset
|
1523 |
let ?k = "floor_fl (float_divr prec (lx + ?lpi) (2 * ?lpi))" |
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
1524 |
let ?lx2 = "(- ?k * 2 * (if ?k < 0 then ?lpi else ?upi))" |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
1525 |
let ?ux2 = "(- ?k * 2 * (if ?k < 0 then ?upi else ?lpi))" |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
1526 |
let ?lx = "float_plus_down prec lx ?lx2" |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
1527 |
let ?ux = "float_plus_up prec ux ?ux2" |
|
31467
f7d2aa438bee
Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents:
31148
diff
changeset
|
1528 |
|
| 60680 | 1529 |
obtain k :: int where k: "k = real ?k" |
1530 |
by (rule floor_int) |
|
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
1531 |
|
|
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
1532 |
have upi: "pi \<le> ?upi" and lpi: "?lpi \<le> pi" |
|
47599
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
1533 |
using float_round_up[of "ub_pi prec" prec] pi_boundaries[of prec] |
| 60680 | 1534 |
float_round_down[of prec "lb_pi prec"] |
1535 |
by auto |
|
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
1536 |
hence "lx + ?lx2 \<le> x - k * (2 * pi) \<and> x - k * (2 * pi) \<le> ux + ?ux2" |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
1537 |
using x |
|
47599
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
1538 |
by (cases "k = 0") |
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
1539 |
(auto intro!: add_mono |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
1540 |
simp add: k [symmetric] uminus_add_conv_diff [symmetric] |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
1541 |
simp del: float_of_numeral uminus_add_conv_diff) |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
1542 |
hence "?lx \<le> x - k * (2 * pi) \<and> x - k * (2 * pi) \<le> ?ux" |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
1543 |
by (auto intro!: float_plus_down_le float_plus_up_le) |
|
31467
f7d2aa438bee
Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents:
31148
diff
changeset
|
1544 |
note lx = this[THEN conjunct1] and ux = this[THEN conjunct2] |
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
1545 |
hence lx_less_ux: "?lx \<le> real ?ux" by (rule order_trans) |
|
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
1546 |
|
|
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
1547 |
{ assume "- ?lpi \<le> ?lx" and x_le_0: "x - k * (2 * pi) \<le> 0"
|
|
31467
f7d2aa438bee
Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents:
31148
diff
changeset
|
1548 |
with lpi[THEN le_imp_neg_le] lx |
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
1549 |
have pi_lx: "- pi \<le> ?lx" and lx_0: "real ?lx \<le> 0" |
| 47600 | 1550 |
by simp_all |
| 29805 | 1551 |
|
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
1552 |
have "(lb_cos prec (- ?lx)) \<le> cos (real (- ?lx))" |
|
31467
f7d2aa438bee
Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents:
31148
diff
changeset
|
1553 |
using lb_cos_minus[OF pi_lx lx_0] by simp |
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
1554 |
also have "\<dots> \<le> cos (x + (-k) * (2 * pi))" |
|
31467
f7d2aa438bee
Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents:
31148
diff
changeset
|
1555 |
using cos_monotone_minus_pi_0'[OF pi_lx lx x_le_0] |
|
47601
050718fe6eee
use real :: float => real as lifting-morphism so we can directlry use the rep_eq theorems
hoelzl
parents:
47600
diff
changeset
|
1556 |
by (simp only: uminus_float.rep_eq real_of_int_minus |
|
54230
b1d955791529
more simplification rules on unary and binary minus
haftmann
parents:
53077
diff
changeset
|
1557 |
cos_minus mult_minus_left) simp |
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
1558 |
finally have "(lb_cos prec (- ?lx)) \<le> cos x" |
|
31467
f7d2aa438bee
Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents:
31148
diff
changeset
|
1559 |
unfolding cos_periodic_int . } |
|
f7d2aa438bee
Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents:
31148
diff
changeset
|
1560 |
note negative_lx = this |
|
f7d2aa438bee
Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents:
31148
diff
changeset
|
1561 |
|
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
1562 |
{ assume "0 \<le> ?lx" and pi_x: "x - k * (2 * pi) \<le> pi"
|
|
31467
f7d2aa438bee
Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents:
31148
diff
changeset
|
1563 |
with lx |
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
1564 |
have pi_lx: "?lx \<le> pi" and lx_0: "0 \<le> real ?lx" |
| 47600 | 1565 |
by auto |
| 29805 | 1566 |
|
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
1567 |
have "cos (x + (-k) * (2 * pi)) \<le> cos ?lx" |
|
59751
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59741
diff
changeset
|
1568 |
using cos_monotone_0_pi_le[OF lx_0 lx pi_x] |
|
47599
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
1569 |
by (simp only: real_of_int_minus |
|
54230
b1d955791529
more simplification rules on unary and binary minus
haftmann
parents:
53077
diff
changeset
|
1570 |
cos_minus mult_minus_left) simp |
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
1571 |
also have "\<dots> \<le> (ub_cos prec ?lx)" |
|
31467
f7d2aa438bee
Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents:
31148
diff
changeset
|
1572 |
using lb_cos[OF lx_0 pi_lx] by simp |
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
1573 |
finally have "cos x \<le> (ub_cos prec ?lx)" |
|
31467
f7d2aa438bee
Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents:
31148
diff
changeset
|
1574 |
unfolding cos_periodic_int . } |
|
f7d2aa438bee
Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents:
31148
diff
changeset
|
1575 |
note positive_lx = this |
|
f7d2aa438bee
Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents:
31148
diff
changeset
|
1576 |
|
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
1577 |
{ assume pi_x: "- pi \<le> x - k * (2 * pi)" and "?ux \<le> 0"
|
|
31467
f7d2aa438bee
Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents:
31148
diff
changeset
|
1578 |
with ux |
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
1579 |
have pi_ux: "- pi \<le> ?ux" and ux_0: "real ?ux \<le> 0" |
| 47600 | 1580 |
by simp_all |
| 29805 | 1581 |
|
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
1582 |
have "cos (x + (-k) * (2 * pi)) \<le> cos (real (- ?ux))" |
|
31467
f7d2aa438bee
Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents:
31148
diff
changeset
|
1583 |
using cos_monotone_minus_pi_0'[OF pi_x ux ux_0] |
|
47601
050718fe6eee
use real :: float => real as lifting-morphism so we can directlry use the rep_eq theorems
hoelzl
parents:
47600
diff
changeset
|
1584 |
by (simp only: uminus_float.rep_eq real_of_int_minus |
|
54230
b1d955791529
more simplification rules on unary and binary minus
haftmann
parents:
53077
diff
changeset
|
1585 |
cos_minus mult_minus_left) simp |
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
1586 |
also have "\<dots> \<le> (ub_cos prec (- ?ux))" |
|
31467
f7d2aa438bee
Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents:
31148
diff
changeset
|
1587 |
using lb_cos_minus[OF pi_ux ux_0, of prec] by simp |
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
1588 |
finally have "cos x \<le> (ub_cos prec (- ?ux))" |
|
31467
f7d2aa438bee
Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents:
31148
diff
changeset
|
1589 |
unfolding cos_periodic_int . } |
|
f7d2aa438bee
Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents:
31148
diff
changeset
|
1590 |
note negative_ux = this |
|
f7d2aa438bee
Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents:
31148
diff
changeset
|
1591 |
|
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
1592 |
{ assume "?ux \<le> ?lpi" and x_ge_0: "0 \<le> x - k * (2 * pi)"
|
|
31467
f7d2aa438bee
Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents:
31148
diff
changeset
|
1593 |
with lpi ux |
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
1594 |
have pi_ux: "?ux \<le> pi" and ux_0: "0 \<le> real ?ux" |
| 47600 | 1595 |
by simp_all |
|
31467
f7d2aa438bee
Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents:
31148
diff
changeset
|
1596 |
|
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
1597 |
have "(lb_cos prec ?ux) \<le> cos ?ux" |
|
31467
f7d2aa438bee
Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents:
31148
diff
changeset
|
1598 |
using lb_cos[OF ux_0 pi_ux] by simp |
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
1599 |
also have "\<dots> \<le> cos (x + (-k) * (2 * pi))" |
|
59751
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59741
diff
changeset
|
1600 |
using cos_monotone_0_pi_le[OF x_ge_0 ux pi_ux] |
|
47599
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
1601 |
by (simp only: real_of_int_minus |
|
54230
b1d955791529
more simplification rules on unary and binary minus
haftmann
parents:
53077
diff
changeset
|
1602 |
cos_minus mult_minus_left) simp |
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
1603 |
finally have "(lb_cos prec ?ux) \<le> cos x" |
|
31467
f7d2aa438bee
Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents:
31148
diff
changeset
|
1604 |
unfolding cos_periodic_int . } |
|
f7d2aa438bee
Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents:
31148
diff
changeset
|
1605 |
note positive_ux = this |
|
f7d2aa438bee
Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents:
31148
diff
changeset
|
1606 |
|
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
1607 |
show "l \<le> cos x \<and> cos x \<le> u" |
|
31467
f7d2aa438bee
Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents:
31148
diff
changeset
|
1608 |
proof (cases "- ?lpi \<le> ?lx \<and> ?ux \<le> 0") |
| 60680 | 1609 |
case True |
1610 |
with bnds have l: "l = lb_cos prec (-?lx)" and u: "u = ub_cos prec (-?ux)" |
|
|
31467
f7d2aa438bee
Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents:
31148
diff
changeset
|
1611 |
by (auto simp add: bnds_cos_def Let_def) |
|
f7d2aa438bee
Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents:
31148
diff
changeset
|
1612 |
from True lpi[THEN le_imp_neg_le] lx ux |
| 60680 | 1613 |
have "- pi \<le> x - k * (2 * pi)" and "x - k * (2 * pi) \<le> 0" |
| 47600 | 1614 |
by auto |
| 60680 | 1615 |
with True negative_ux negative_lx show ?thesis |
1616 |
unfolding l u by simp |
|
1617 |
next |
|
1618 |
case 1: False |
|
1619 |
show ?thesis |
|
1620 |
proof (cases "0 \<le> ?lx \<and> ?ux \<le> ?lpi") |
|
1621 |
case True with bnds 1 |
|
1622 |
have l: "l = lb_cos prec ?ux" |
|
1623 |
and u: "u = ub_cos prec ?lx" |
|
1624 |
by (auto simp add: bnds_cos_def Let_def) |
|
1625 |
from True lpi lx ux |
|
1626 |
have "0 \<le> x - k * (2 * pi)" and "x - k * (2 * pi) \<le> pi" |
|
1627 |
by auto |
|
1628 |
with True positive_ux positive_lx show ?thesis |
|
1629 |
unfolding l u by simp |
|
| 29805 | 1630 |
next |
| 60680 | 1631 |
case 2: False |
1632 |
show ?thesis |
|
1633 |
proof (cases "- ?lpi \<le> ?lx \<and> ?ux \<le> ?lpi") |
|
1634 |
case Cond: True |
|
1635 |
with bnds 1 2 have l: "l = min (lb_cos prec (-?lx)) (lb_cos prec ?ux)" |
|
1636 |
and u: "u = Float 1 0" |
|
1637 |
by (auto simp add: bnds_cos_def Let_def) |
|
1638 |
show ?thesis |
|
1639 |
unfolding u l using negative_lx positive_ux Cond |
|
1640 |
by (cases "x - k * (2 * pi) < 0") (auto simp add: real_of_float_min) |
|
1641 |
next |
|
1642 |
case 3: False |
|
1643 |
show ?thesis |
|
1644 |
proof (cases "0 \<le> ?lx \<and> ?ux \<le> 2 * ?lpi") |
|
1645 |
case Cond: True |
|
1646 |
with bnds 1 2 3 |
|
1647 |
have l: "l = Float (- 1) 0" |
|
1648 |
and u: "u = max (ub_cos prec ?lx) (ub_cos prec (- (?ux - 2 * ?lpi)))" |
|
1649 |
by (auto simp add: bnds_cos_def Let_def) |
|
1650 |
||
1651 |
have "cos x \<le> real u" |
|
1652 |
proof (cases "x - k * (2 * pi) < pi") |
|
1653 |
case True |
|
1654 |
hence "x - k * (2 * pi) \<le> pi" by simp |
|
1655 |
from positive_lx[OF Cond[THEN conjunct1] this] show ?thesis |
|
1656 |
unfolding u by (simp add: real_of_float_max) |
|
1657 |
next |
|
1658 |
case False |
|
1659 |
hence "pi \<le> x - k * (2 * pi)" by simp |
|
1660 |
hence pi_x: "- pi \<le> x - k * (2 * pi) - 2 * pi" by simp |
|
1661 |
||
1662 |
have "?ux \<le> 2 * pi" |
|
1663 |
using Cond lpi by auto |
|
1664 |
hence "x - k * (2 * pi) - 2 * pi \<le> 0" |
|
1665 |
using ux by simp |
|
1666 |
||
1667 |
have ux_0: "real (?ux - 2 * ?lpi) \<le> 0" |
|
1668 |
using Cond by auto |
|
1669 |
||
1670 |
from 2 and Cond have "\<not> ?ux \<le> ?lpi" by auto |
|
1671 |
hence "- ?lpi \<le> ?ux - 2 * ?lpi" by auto |
|
1672 |
hence pi_ux: "- pi \<le> (?ux - 2 * ?lpi)" |
|
1673 |
using lpi[THEN le_imp_neg_le] by auto |
|
1674 |
||
1675 |
have x_le_ux: "x - k * (2 * pi) - 2 * pi \<le> (?ux - 2 * ?lpi)" |
|
1676 |
using ux lpi by auto |
|
1677 |
have "cos x = cos (x + (-k) * (2 * pi) + (-1::int) * (2 * pi))" |
|
1678 |
unfolding cos_periodic_int .. |
|
1679 |
also have "\<dots> \<le> cos ((?ux - 2 * ?lpi))" |
|
1680 |
using cos_monotone_minus_pi_0'[OF pi_x x_le_ux ux_0] |
|
1681 |
by (simp only: minus_float.rep_eq real_of_int_minus real_of_one |
|
1682 |
mult_minus_left mult_1_left) simp |
|
1683 |
also have "\<dots> = cos ((- (?ux - 2 * ?lpi)))" |
|
1684 |
unfolding uminus_float.rep_eq cos_minus .. |
|
1685 |
also have "\<dots> \<le> (ub_cos prec (- (?ux - 2 * ?lpi)))" |
|
1686 |
using lb_cos_minus[OF pi_ux ux_0] by simp |
|
1687 |
finally show ?thesis unfolding u by (simp add: real_of_float_max) |
|
1688 |
qed |
|
1689 |
thus ?thesis unfolding l by auto |
|
1690 |
next |
|
1691 |
case 4: False |
|
1692 |
show ?thesis |
|
1693 |
proof (cases "-2 * ?lpi \<le> ?lx \<and> ?ux \<le> 0") |
|
1694 |
case Cond: True |
|
1695 |
with bnds 1 2 3 4 have l: "l = Float (- 1) 0" |
|
1696 |
and u: "u = max (ub_cos prec (?lx + 2 * ?lpi)) (ub_cos prec (-?ux))" |
|
1697 |
by (auto simp add: bnds_cos_def Let_def) |
|
1698 |
||
1699 |
have "cos x \<le> u" |
|
1700 |
proof (cases "-pi < x - k * (2 * pi)") |
|
1701 |
case True |
|
1702 |
hence "-pi \<le> x - k * (2 * pi)" by simp |
|
1703 |
from negative_ux[OF this Cond[THEN conjunct2]] show ?thesis |
|
1704 |
unfolding u by (simp add: real_of_float_max) |
|
1705 |
next |
|
1706 |
case False |
|
1707 |
hence "x - k * (2 * pi) \<le> -pi" by simp |
|
1708 |
hence pi_x: "x - k * (2 * pi) + 2 * pi \<le> pi" by simp |
|
1709 |
||
1710 |
have "-2 * pi \<le> ?lx" using Cond lpi by auto |
|
1711 |
||
1712 |
hence "0 \<le> x - k * (2 * pi) + 2 * pi" using lx by simp |
|
1713 |
||
1714 |
have lx_0: "0 \<le> real (?lx + 2 * ?lpi)" |
|
1715 |
using Cond lpi by auto |
|
1716 |
||
1717 |
from 1 and Cond have "\<not> -?lpi \<le> ?lx" by auto |
|
1718 |
hence "?lx + 2 * ?lpi \<le> ?lpi" by auto |
|
1719 |
hence pi_lx: "(?lx + 2 * ?lpi) \<le> pi" |
|
1720 |
using lpi[THEN le_imp_neg_le] by auto |
|
1721 |
||
1722 |
have lx_le_x: "(?lx + 2 * ?lpi) \<le> x - k * (2 * pi) + 2 * pi" |
|
1723 |
using lx lpi by auto |
|
1724 |
||
1725 |
have "cos x = cos (x + (-k) * (2 * pi) + (1 :: int) * (2 * pi))" |
|
1726 |
unfolding cos_periodic_int .. |
|
1727 |
also have "\<dots> \<le> cos ((?lx + 2 * ?lpi))" |
|
1728 |
using cos_monotone_0_pi_le[OF lx_0 lx_le_x pi_x] |
|
1729 |
by (simp only: minus_float.rep_eq real_of_int_minus real_of_one |
|
1730 |
mult_minus_left mult_1_left) simp |
|
1731 |
also have "\<dots> \<le> (ub_cos prec (?lx + 2 * ?lpi))" |
|
1732 |
using lb_cos[OF lx_0 pi_lx] by simp |
|
1733 |
finally show ?thesis unfolding u by (simp add: real_of_float_max) |
|
1734 |
qed |
|
1735 |
thus ?thesis unfolding l by auto |
|
1736 |
next |
|
1737 |
case False |
|
1738 |
with bnds 1 2 3 4 show ?thesis |
|
1739 |
by (auto simp add: bnds_cos_def Let_def) |
|
1740 |
qed |
|
1741 |
qed |
|
1742 |
qed |
|
| 29805 | 1743 |
qed |
| 60680 | 1744 |
qed |
| 29805 | 1745 |
qed |
1746 |
||
| 60680 | 1747 |
|
| 29805 | 1748 |
section "Exponential function" |
1749 |
||
1750 |
subsection "Compute the series of the exponential function" |
|
1751 |
||
| 60680 | 1752 |
fun ub_exp_horner :: "nat \<Rightarrow> nat \<Rightarrow> nat \<Rightarrow> nat \<Rightarrow> float \<Rightarrow> float" |
1753 |
and lb_exp_horner :: "nat \<Rightarrow> nat \<Rightarrow> nat \<Rightarrow> nat \<Rightarrow> float \<Rightarrow> float" |
|
1754 |
where |
|
| 29805 | 1755 |
"ub_exp_horner prec 0 i k x = 0" | |
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
1756 |
"ub_exp_horner prec (Suc n) i k x = float_plus_up prec |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
1757 |
(rapprox_rat prec 1 (int k)) (float_round_up prec (x * lb_exp_horner prec n (i + 1) (k * i) x))" | |
| 29805 | 1758 |
"lb_exp_horner prec 0 i k x = 0" | |
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
1759 |
"lb_exp_horner prec (Suc n) i k x = float_plus_down prec |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
1760 |
(lapprox_rat prec 1 (int k)) (float_round_down prec (x * ub_exp_horner prec n (i + 1) (k * i) x))" |
| 29805 | 1761 |
|
| 60680 | 1762 |
lemma bnds_exp_horner: |
1763 |
assumes "real x \<le> 0" |
|
1764 |
shows "exp x \<in> {lb_exp_horner prec (get_even n) 1 1 x .. ub_exp_horner prec (get_odd n) 1 1 x}"
|
|
| 29805 | 1765 |
proof - |
| 60680 | 1766 |
have f_eq: "fact (Suc n) = fact n * ((\<lambda>i::nat. i + 1) ^^ n) 1" for n |
1767 |
proof - |
|
1768 |
have F: "\<And> m. ((\<lambda>i. i + 1) ^^ n) m = n + m" |
|
1769 |
by (induct n) auto |
|
1770 |
show ?thesis |
|
1771 |
unfolding F by auto |
|
1772 |
qed |
|
|
31467
f7d2aa438bee
Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents:
31148
diff
changeset
|
1773 |
|
| 29805 | 1774 |
note bounds = horner_bounds_nonpos[where f="fact" and lb="lb_exp_horner prec" and ub="ub_exp_horner prec" and j'=0 and s=1, |
1775 |
OF assms f_eq lb_exp_horner.simps ub_exp_horner.simps] |
|
1776 |
||
| 60680 | 1777 |
have "lb_exp_horner prec (get_even n) 1 1 x \<le> exp x" |
1778 |
proof - |
|
1779 |
have "lb_exp_horner prec (get_even n) 1 1 x \<le> (\<Sum>j = 0..<get_even n. 1 / (fact j) * real x ^ j)" |
|
| 29805 | 1780 |
using bounds(1) by auto |
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
1781 |
also have "\<dots> \<le> exp x" |
| 29805 | 1782 |
proof - |
|
59730
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1783 |
obtain t where "\<bar>t\<bar> \<le> \<bar>real x\<bar>" and "exp x = (\<Sum>m = 0..<get_even n. real x ^ m / (fact m)) + exp t / (fact (get_even n)) * (real x) ^ (get_even n)" |
| 56195 | 1784 |
using Maclaurin_exp_le unfolding atLeast0LessThan by blast |
|
59730
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1785 |
moreover have "0 \<le> exp t / (fact (get_even n)) * (real x) ^ (get_even n)" |
|
56571
f4635657d66f
added divide_nonneg_nonneg and co; made it a simp rule
hoelzl
parents:
56544
diff
changeset
|
1786 |
by (auto simp: zero_le_even_power) |
| 56536 | 1787 |
ultimately show ?thesis using get_odd exp_gt_zero by auto |
| 29805 | 1788 |
qed |
| 60680 | 1789 |
finally show ?thesis . |
1790 |
qed |
|
1791 |
moreover |
|
1792 |
have "exp x \<le> ub_exp_horner prec (get_odd n) 1 1 x" |
|
1793 |
proof - |
|
|
31098
73dd67adf90a
replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents:
30971
diff
changeset
|
1794 |
have x_less_zero: "real x ^ get_odd n \<le> 0" |
|
73dd67adf90a
replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents:
30971
diff
changeset
|
1795 |
proof (cases "real x = 0") |
| 29805 | 1796 |
case True |
1797 |
have "(get_odd n) \<noteq> 0" using get_odd[THEN odd_pos] by auto |
|
1798 |
thus ?thesis unfolding True power_0_left by auto |
|
1799 |
next |
|
| 60533 | 1800 |
case False hence "real x < 0" using \<open>real x \<le> 0\<close> by auto |
1801 |
show ?thesis by (rule less_imp_le, auto simp add: power_less_zero_eq \<open>real x < 0\<close>) |
|
| 29805 | 1802 |
qed |
| 60680 | 1803 |
obtain t where "\<bar>t\<bar> \<le> \<bar>real x\<bar>" |
1804 |
and "exp x = (\<Sum>m = 0..<get_odd n. (real x) ^ m / (fact m)) + exp t / (fact (get_odd n)) * (real x) ^ (get_odd n)" |
|
| 56195 | 1805 |
using Maclaurin_exp_le unfolding atLeast0LessThan by blast |
|
59730
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1806 |
moreover have "exp t / (fact (get_odd n)) * (real x) ^ (get_odd n) \<le> 0" |
| 46545 | 1807 |
by (auto intro!: mult_nonneg_nonpos divide_nonpos_pos simp add: x_less_zero) |
|
59730
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1808 |
ultimately have "exp x \<le> (\<Sum>j = 0..<get_odd n. 1 / (fact j) * real x ^ j)" |
| 56536 | 1809 |
using get_odd exp_gt_zero by auto |
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
1810 |
also have "\<dots> \<le> ub_exp_horner prec (get_odd n) 1 1 x" |
| 29805 | 1811 |
using bounds(2) by auto |
| 60680 | 1812 |
finally show ?thesis . |
1813 |
qed |
|
1814 |
ultimately show ?thesis by auto |
|
| 29805 | 1815 |
qed |
1816 |
||
| 60680 | 1817 |
lemma ub_exp_horner_nonneg: "real x \<le> 0 \<Longrightarrow> |
1818 |
0 \<le> real (ub_exp_horner prec (get_odd n) (Suc 0) (Suc 0) x)" |
|
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
1819 |
using bnds_exp_horner[of x prec n] |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
1820 |
by (intro order_trans[OF exp_ge_zero]) auto |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
1821 |
|
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
1822 |
|
| 29805 | 1823 |
subsection "Compute the exponential function on the entire domain" |
1824 |
||
1825 |
function ub_exp :: "nat \<Rightarrow> float \<Rightarrow> float" and lb_exp :: "nat \<Rightarrow> float \<Rightarrow> float" where |
|
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
1826 |
"lb_exp prec x = |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
1827 |
(if 0 < x then float_divl prec 1 (ub_exp prec (-x)) |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
1828 |
else |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
1829 |
let |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
1830 |
horner = (\<lambda> x. let y = lb_exp_horner prec (get_even (prec + 2)) 1 1 x in |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
1831 |
if y \<le> 0 then Float 1 (- 2) else y) |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
1832 |
in |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
1833 |
if x < - 1 then |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
1834 |
power_down_fl prec (horner (float_divl prec x (- floor_fl x))) (nat (- int_floor_fl x)) |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
1835 |
else horner x)" | |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
1836 |
"ub_exp prec x = |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
1837 |
(if 0 < x then float_divr prec 1 (lb_exp prec (-x)) |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
1838 |
else if x < - 1 then |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
1839 |
power_up_fl prec |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
1840 |
(ub_exp_horner prec (get_odd (prec + 2)) 1 1 |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
1841 |
(float_divr prec x (- floor_fl x))) (nat (- int_floor_fl x)) |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
1842 |
else ub_exp_horner prec (get_odd (prec + 2)) 1 1 x)" |
| 60680 | 1843 |
by pat_completeness auto |
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
1844 |
termination |
| 60680 | 1845 |
by (relation "measure (\<lambda> v. let (prec, x) = case_sum id id v in (if 0 < x then 1 else 0))") auto |
| 29805 | 1846 |
|
1847 |
lemma exp_m1_ge_quarter: "(1 / 4 :: real) \<le> exp (- 1)" |
|
1848 |
proof - |
|
1849 |
have eq4: "4 = Suc (Suc (Suc (Suc 0)))" by auto |
|
| 60680 | 1850 |
have "1 / 4 = (Float 1 (- 2))" |
1851 |
unfolding Float_num by auto |
|
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
1852 |
also have "\<dots> \<le> lb_exp_horner 3 (get_even 3) 1 1 (- 1)" |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
1853 |
by code_simp |
| 60680 | 1854 |
also have "\<dots> \<le> exp (- 1 :: float)" |
1855 |
using bnds_exp_horner[where x="- 1"] by auto |
|
1856 |
finally show ?thesis |
|
1857 |
by simp |
|
| 29805 | 1858 |
qed |
1859 |
||
| 60680 | 1860 |
lemma lb_exp_pos: |
1861 |
assumes "\<not> 0 < x" |
|
1862 |
shows "0 < lb_exp prec x" |
|
| 29805 | 1863 |
proof - |
1864 |
let "?lb_horner x" = "lb_exp_horner prec (get_even (prec + 2)) 1 1 x" |
|
| 60680 | 1865 |
let "?horner x" = "let y = ?lb_horner x in if y \<le> 0 then Float 1 (- 2) else y" |
1866 |
have pos_horner: "0 < ?horner x" for x |
|
1867 |
unfolding Let_def by (cases "?lb_horner x \<le> 0") auto |
|
1868 |
moreover have "0 < real ((?horner x) ^ num)" for x :: float and num :: nat |
|
1869 |
proof - |
|
| 60533 | 1870 |
have "0 < real (?horner x) ^ num" using \<open>0 < ?horner x\<close> by simp |
|
47599
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
1871 |
also have "\<dots> = (?horner x) ^ num" by auto |
| 60680 | 1872 |
finally show ?thesis . |
1873 |
qed |
|
| 29805 | 1874 |
ultimately show ?thesis |
| 60533 | 1875 |
unfolding lb_exp.simps if_not_P[OF \<open>\<not> 0 < x\<close>] Let_def |
| 60680 | 1876 |
by (cases "floor_fl x", cases "x < - 1") |
1877 |
(auto simp: real_power_up_fl real_power_down_fl intro!: power_up_less power_down_pos) |
|
| 29805 | 1878 |
qed |
1879 |
||
| 60680 | 1880 |
lemma exp_boundaries': |
1881 |
assumes "x \<le> 0" |
|
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
1882 |
shows "exp x \<in> { (lb_exp prec x) .. (ub_exp prec x)}"
|
| 29805 | 1883 |
proof - |
1884 |
let "?lb_exp_horner x" = "lb_exp_horner prec (get_even (prec + 2)) 1 1 x" |
|
1885 |
let "?ub_exp_horner x" = "ub_exp_horner prec (get_odd (prec + 2)) 1 1 x" |
|
1886 |
||
| 60680 | 1887 |
have "real x \<le> 0" and "\<not> x > 0" |
1888 |
using \<open>x \<le> 0\<close> by auto |
|
| 29805 | 1889 |
show ?thesis |
1890 |
proof (cases "x < - 1") |
|
| 60680 | 1891 |
case False |
1892 |
hence "- 1 \<le> real x" by auto |
|
| 29805 | 1893 |
show ?thesis |
1894 |
proof (cases "?lb_exp_horner x \<le> 0") |
|
| 60680 | 1895 |
case True |
1896 |
from \<open>\<not> x < - 1\<close> |
|
1897 |
have "- 1 \<le> real x" by auto |
|
1898 |
hence "exp (- 1) \<le> exp x" |
|
1899 |
unfolding exp_le_cancel_iff . |
|
1900 |
from order_trans[OF exp_m1_ge_quarter this] have "Float 1 (- 2) \<le> exp x" |
|
1901 |
unfolding Float_num . |
|
1902 |
with True show ?thesis |
|
1903 |
using bnds_exp_horner \<open>real x \<le> 0\<close> \<open>\<not> x > 0\<close> \<open>\<not> x < - 1\<close> by auto |
|
| 29805 | 1904 |
next |
| 60680 | 1905 |
case False |
1906 |
thus ?thesis |
|
1907 |
using bnds_exp_horner \<open>real x \<le> 0\<close> \<open>\<not> x > 0\<close> \<open>\<not> x < - 1\<close> by (auto simp add: Let_def) |
|
| 29805 | 1908 |
qed |
1909 |
next |
|
1910 |
case True |
|
|
47599
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
1911 |
let ?num = "nat (- int_floor_fl x)" |
|
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
1912 |
|
| 60680 | 1913 |
have "real (int_floor_fl x) < - 1" |
1914 |
using int_floor_fl[of x] \<open>x < - 1\<close> by simp |
|
|
47599
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
1915 |
hence "real (int_floor_fl x) < 0" by simp |
|
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
1916 |
hence "int_floor_fl x < 0" by auto |
|
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
1917 |
hence "1 \<le> - int_floor_fl x" by auto |
|
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
1918 |
hence "0 < nat (- int_floor_fl x)" by auto |
|
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
1919 |
hence "0 < ?num" by auto |
| 29805 | 1920 |
hence "real ?num \<noteq> 0" by auto |
| 60680 | 1921 |
have num_eq: "real ?num = - int_floor_fl x" |
1922 |
using \<open>0 < nat (- int_floor_fl x)\<close> by auto |
|
1923 |
have "0 < - int_floor_fl x" |
|
1924 |
using \<open>0 < ?num\<close>[unfolded real_of_nat_less_iff[symmetric]] by simp |
|
1925 |
hence "real (int_floor_fl x) < 0" |
|
1926 |
unfolding less_float_def by auto |
|
|
47599
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
1927 |
have fl_eq: "real (- int_floor_fl x) = real (- floor_fl x)" |
|
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
1928 |
by (simp add: floor_fl_def int_floor_fl_def) |
| 60533 | 1929 |
from \<open>0 < - int_floor_fl x\<close> have "0 \<le> real (- floor_fl x)" |
|
47599
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
1930 |
by (simp add: floor_fl_def int_floor_fl_def) |
| 60533 | 1931 |
from \<open>real (int_floor_fl x) < 0\<close> have "real (floor_fl x) < 0" |
|
47599
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
1932 |
by (simp add: floor_fl_def int_floor_fl_def) |
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
1933 |
have "exp x \<le> ub_exp prec x" |
| 29805 | 1934 |
proof - |
| 31809 | 1935 |
have div_less_zero: "real (float_divr prec x (- floor_fl x)) \<le> 0" |
| 60533 | 1936 |
using float_divr_nonpos_pos_upper_bound[OF \<open>real x \<le> 0\<close> \<open>0 \<le> real (- floor_fl x)\<close>] |
|
47601
050718fe6eee
use real :: float => real as lifting-morphism so we can directlry use the rep_eq theorems
hoelzl
parents:
47600
diff
changeset
|
1937 |
unfolding less_eq_float_def zero_float.rep_eq . |
| 31809 | 1938 |
|
| 60680 | 1939 |
have "exp x = exp (?num * (x / ?num))" |
1940 |
using \<open>real ?num \<noteq> 0\<close> by auto |
|
1941 |
also have "\<dots> = exp (x / ?num) ^ ?num" |
|
1942 |
unfolding exp_real_of_nat_mult .. |
|
1943 |
also have "\<dots> \<le> exp (float_divr prec x (- floor_fl x)) ^ ?num" |
|
1944 |
unfolding num_eq fl_eq |
|
|
32960
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32920
diff
changeset
|
1945 |
by (rule power_mono, rule exp_le_cancel_iff[THEN iffD2], rule float_divr) auto |
|
47599
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
1946 |
also have "\<dots> \<le> (?ub_exp_horner (float_divr prec x (- floor_fl x))) ^ ?num" |
|
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
1947 |
unfolding real_of_float_power |
|
32960
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32920
diff
changeset
|
1948 |
by (rule power_mono, rule bnds_exp_horner[OF div_less_zero, unfolded atLeastAtMost_iff, THEN conjunct2], auto) |
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
1949 |
also have "\<dots> \<le> real (power_up_fl prec (?ub_exp_horner (float_divr prec x (- floor_fl x))) ?num)" |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
1950 |
by (auto simp add: real_power_up_fl intro!: power_up ub_exp_horner_nonneg div_less_zero) |
| 60680 | 1951 |
finally show ?thesis |
1952 |
unfolding ub_exp.simps if_not_P[OF \<open>\<not> 0 < x\<close>] if_P[OF \<open>x < - 1\<close>] floor_fl_def Let_def . |
|
| 29805 | 1953 |
qed |
| 31809 | 1954 |
moreover |
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
1955 |
have "lb_exp prec x \<le> exp x" |
| 29805 | 1956 |
proof - |
|
47599
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
1957 |
let ?divl = "float_divl prec x (- floor_fl x)" |
| 29805 | 1958 |
let ?horner = "?lb_exp_horner ?divl" |
| 31809 | 1959 |
|
| 29805 | 1960 |
show ?thesis |
1961 |
proof (cases "?horner \<le> 0") |
|
| 60680 | 1962 |
case False |
1963 |
hence "0 \<le> real ?horner" by auto |
|
|
32960
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32920
diff
changeset
|
1964 |
|
|
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32920
diff
changeset
|
1965 |
have div_less_zero: "real (float_divl prec x (- floor_fl x)) \<le> 0" |
| 60680 | 1966 |
using \<open>real (floor_fl x) < 0\<close> \<open>real x \<le> 0\<close> |
1967 |
by (auto intro!: order_trans[OF float_divl] divide_nonpos_neg) |
|
|
56479
91958d4b30f7
revert c1bbd3e22226, a14831ac3023, and 36489d77c484: divide_minus_left/right are again simp rules
hoelzl
parents:
56410
diff
changeset
|
1968 |
|
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
1969 |
have "(?lb_exp_horner (float_divl prec x (- floor_fl x))) ^ ?num \<le> |
|
47599
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
1970 |
exp (float_divl prec x (- floor_fl x)) ^ ?num" |
| 60680 | 1971 |
using \<open>0 \<le> real ?horner\<close>[unfolded floor_fl_def[symmetric]] |
1972 |
bnds_exp_horner[OF div_less_zero, unfolded atLeastAtMost_iff, THEN conjunct1] |
|
1973 |
by (auto intro!: power_mono) |
|
1974 |
also have "\<dots> \<le> exp (x / ?num) ^ ?num" |
|
1975 |
unfolding num_eq fl_eq |
|
|
47601
050718fe6eee
use real :: float => real as lifting-morphism so we can directlry use the rep_eq theorems
hoelzl
parents:
47600
diff
changeset
|
1976 |
using float_divl by (auto intro!: power_mono simp del: uminus_float.rep_eq) |
| 60680 | 1977 |
also have "\<dots> = exp (?num * (x / ?num))" |
1978 |
unfolding exp_real_of_nat_mult .. |
|
1979 |
also have "\<dots> = exp x" |
|
1980 |
using \<open>real ?num \<noteq> 0\<close> by auto |
|
1981 |
finally show ?thesis |
|
1982 |
using False |
|
1983 |
unfolding lb_exp.simps if_not_P[OF \<open>\<not> 0 < x\<close>] if_P[OF \<open>x < - 1\<close>] |
|
1984 |
int_floor_fl_def Let_def if_not_P[OF False] |
|
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
1985 |
by (auto simp: real_power_down_fl intro!: power_down_le) |
| 29805 | 1986 |
next |
|
32960
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32920
diff
changeset
|
1987 |
case True |
|
59741
5b762cd73a8e
Lots of new material on complex-valued functions. Modified simplification of (x/n)^k
paulson <lp15@cam.ac.uk>
parents:
59730
diff
changeset
|
1988 |
have "power_down_fl prec (Float 1 (- 2)) ?num \<le> (Float 1 (- 2)) ^ ?num" |
| 60680 | 1989 |
by (metis Float_le_zero_iff less_imp_le linorder_not_less |
1990 |
not_numeral_le_zero numeral_One power_down_fl) |
|
|
59741
5b762cd73a8e
Lots of new material on complex-valued functions. Modified simplification of (x/n)^k
paulson <lp15@cam.ac.uk>
parents:
59730
diff
changeset
|
1991 |
then have "power_down_fl prec (Float 1 (- 2)) ?num \<le> real (Float 1 (- 2)) ^ ?num" |
|
5b762cd73a8e
Lots of new material on complex-valued functions. Modified simplification of (x/n)^k
paulson <lp15@cam.ac.uk>
parents:
59730
diff
changeset
|
1992 |
by simp |
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
1993 |
also |
| 60680 | 1994 |
have "real (floor_fl x) \<noteq> 0" and "real (floor_fl x) \<le> 0" |
1995 |
using \<open>real (floor_fl x) < 0\<close> by auto |
|
| 60533 | 1996 |
from divide_right_mono_neg[OF floor_fl[of x] \<open>real (floor_fl x) \<le> 0\<close>, unfolded divide_self[OF \<open>real (floor_fl x) \<noteq> 0\<close>]] |
| 60680 | 1997 |
have "- 1 \<le> x / (- floor_fl x)" |
1998 |
unfolding minus_float.rep_eq by auto |
|
|
32960
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32920
diff
changeset
|
1999 |
from order_trans[OF exp_m1_ge_quarter this[unfolded exp_le_cancel_iff[where x="- 1", symmetric]]] |
| 60680 | 2000 |
have "Float 1 (- 2) \<le> exp (x / (- floor_fl x))" |
2001 |
unfolding Float_num . |
|
|
58410
6d46ad54a2ab
explicit separation of signed and unsigned numerals using existing lexical categories num and xnum
haftmann
parents:
58310
diff
changeset
|
2002 |
hence "real (Float 1 (- 2)) ^ ?num \<le> exp (x / (- floor_fl x)) ^ ?num" |
|
59741
5b762cd73a8e
Lots of new material on complex-valued functions. Modified simplification of (x/n)^k
paulson <lp15@cam.ac.uk>
parents:
59730
diff
changeset
|
2003 |
by (metis Float_num(5) power_mono zero_le_divide_1_iff zero_le_numeral) |
| 60680 | 2004 |
also have "\<dots> = exp x" |
2005 |
unfolding num_eq fl_eq exp_real_of_nat_mult[symmetric] |
|
2006 |
using \<open>real (floor_fl x) \<noteq> 0\<close> by auto |
|
|
32960
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32920
diff
changeset
|
2007 |
finally show ?thesis |
| 60680 | 2008 |
unfolding lb_exp.simps if_not_P[OF \<open>\<not> 0 < x\<close>] if_P[OF \<open>x < - 1\<close>] |
2009 |
int_floor_fl_def Let_def if_P[OF True] real_of_float_power . |
|
| 29805 | 2010 |
qed |
2011 |
qed |
|
2012 |
ultimately show ?thesis by auto |
|
2013 |
qed |
|
2014 |
qed |
|
2015 |
||
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
2016 |
lemma exp_boundaries: "exp x \<in> { lb_exp prec x .. ub_exp prec x }"
|
| 29805 | 2017 |
proof - |
2018 |
show ?thesis |
|
2019 |
proof (cases "0 < x") |
|
| 60680 | 2020 |
case False |
2021 |
hence "x \<le> 0" by auto |
|
| 29805 | 2022 |
from exp_boundaries'[OF this] show ?thesis . |
2023 |
next |
|
| 60680 | 2024 |
case True |
2025 |
hence "-x \<le> 0" by auto |
|
| 31809 | 2026 |
|
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
2027 |
have "lb_exp prec x \<le> exp x" |
| 29805 | 2028 |
proof - |
| 60533 | 2029 |
from exp_boundaries'[OF \<open>-x \<le> 0\<close>] |
| 60680 | 2030 |
have ub_exp: "exp (- real x) \<le> ub_exp prec (-x)" |
2031 |
unfolding atLeastAtMost_iff minus_float.rep_eq by auto |
|
2032 |
||
2033 |
have "float_divl prec 1 (ub_exp prec (-x)) \<le> 1 / ub_exp prec (-x)" |
|
2034 |
using float_divl[where x=1] by auto |
|
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
2035 |
also have "\<dots> \<le> exp x" |
| 60680 | 2036 |
using ub_exp[unfolded inverse_le_iff_le[OF order_less_le_trans[OF exp_gt_zero ub_exp] |
2037 |
exp_gt_zero, symmetric]] |
|
2038 |
unfolding exp_minus nonzero_inverse_inverse_eq[OF exp_not_eq_zero] inverse_eq_divide |
|
2039 |
by auto |
|
2040 |
finally show ?thesis |
|
2041 |
unfolding lb_exp.simps if_P[OF True] . |
|
| 29805 | 2042 |
qed |
2043 |
moreover |
|
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
2044 |
have "exp x \<le> ub_exp prec x" |
| 29805 | 2045 |
proof - |
| 60533 | 2046 |
have "\<not> 0 < -x" using \<open>0 < x\<close> by auto |
2047 |
||
2048 |
from exp_boundaries'[OF \<open>-x \<le> 0\<close>] |
|
| 60680 | 2049 |
have lb_exp: "lb_exp prec (-x) \<le> exp (- real x)" |
2050 |
unfolding atLeastAtMost_iff minus_float.rep_eq by auto |
|
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
2051 |
|
|
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
2052 |
have "exp x \<le> (1 :: float) / lb_exp prec (-x)" |
| 60533 | 2053 |
using lb_exp lb_exp_pos[OF \<open>\<not> 0 < -x\<close>, of prec] |
| 47600 | 2054 |
by (simp del: lb_exp.simps add: exp_minus inverse_eq_divide field_simps) |
| 60680 | 2055 |
also have "\<dots> \<le> float_divr prec 1 (lb_exp prec (-x))" |
2056 |
using float_divr . |
|
2057 |
finally show ?thesis |
|
2058 |
unfolding ub_exp.simps if_P[OF True] . |
|
| 29805 | 2059 |
qed |
| 60680 | 2060 |
ultimately show ?thesis |
2061 |
by auto |
|
| 29805 | 2062 |
qed |
2063 |
qed |
|
2064 |
||
| 60680 | 2065 |
lemma bnds_exp: "\<forall>(x::real) lx ux. (l, u) = |
2066 |
(lb_exp prec lx, ub_exp prec ux) \<and> x \<in> {lx .. ux} \<longrightarrow> l \<le> exp x \<and> exp x \<le> u"
|
|
| 29805 | 2067 |
proof (rule allI, rule allI, rule allI, rule impI) |
| 60680 | 2068 |
fix x :: real and lx ux |
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
2069 |
assume "(l, u) = (lb_exp prec lx, ub_exp prec ux) \<and> x \<in> {lx .. ux}"
|
| 60680 | 2070 |
hence l: "lb_exp prec lx = l " and u: "ub_exp prec ux = u" and x: "x \<in> {lx .. ux}"
|
2071 |
by auto |
|
2072 |
show "l \<le> exp x \<and> exp x \<le> u" |
|
2073 |
proof |
|
2074 |
show "l \<le> exp x" |
|
2075 |
proof - |
|
2076 |
from exp_boundaries[of lx prec, unfolded l] |
|
2077 |
have "l \<le> exp lx" by (auto simp del: lb_exp.simps) |
|
2078 |
also have "\<dots> \<le> exp x" using x by auto |
|
2079 |
finally show ?thesis . |
|
2080 |
qed |
|
2081 |
show "exp x \<le> u" |
|
2082 |
proof - |
|
2083 |
have "exp x \<le> exp ux" using x by auto |
|
2084 |
also have "\<dots> \<le> u" using exp_boundaries[of ux prec, unfolded u] by (auto simp del: ub_exp.simps) |
|
2085 |
finally show ?thesis . |
|
2086 |
qed |
|
2087 |
qed |
|
| 29805 | 2088 |
qed |
2089 |
||
| 60680 | 2090 |
|
| 29805 | 2091 |
section "Logarithm" |
2092 |
||
2093 |
subsection "Compute the logarithm series" |
|
2094 |
||
| 31809 | 2095 |
fun ub_ln_horner :: "nat \<Rightarrow> nat \<Rightarrow> nat \<Rightarrow> float \<Rightarrow> float" |
| 29805 | 2096 |
and lb_ln_horner :: "nat \<Rightarrow> nat \<Rightarrow> nat \<Rightarrow> float \<Rightarrow> float" where |
2097 |
"ub_ln_horner prec 0 i x = 0" | |
|
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
2098 |
"ub_ln_horner prec (Suc n) i x = float_plus_up prec |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
2099 |
(rapprox_rat prec 1 (int i)) (- float_round_down prec (x * lb_ln_horner prec n (Suc i) x))" | |
| 29805 | 2100 |
"lb_ln_horner prec 0 i x = 0" | |
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
2101 |
"lb_ln_horner prec (Suc n) i x = float_plus_down prec |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
2102 |
(lapprox_rat prec 1 (int i)) (- float_round_up prec (x * ub_ln_horner prec n (Suc i) x))" |
| 29805 | 2103 |
|
2104 |
lemma ln_bounds: |
|
| 60680 | 2105 |
assumes "0 \<le> x" |
2106 |
and "x < 1" |
|
|
58410
6d46ad54a2ab
explicit separation of signed and unsigned numerals using existing lexical categories num and xnum
haftmann
parents:
58310
diff
changeset
|
2107 |
shows "(\<Sum>i=0..<2*n. (- 1) ^ i * (1 / real (i + 1)) * x ^ (Suc i)) \<le> ln (x + 1)" (is "?lb") |
|
6d46ad54a2ab
explicit separation of signed and unsigned numerals using existing lexical categories num and xnum
haftmann
parents:
58310
diff
changeset
|
2108 |
and "ln (x + 1) \<le> (\<Sum>i=0..<2*n + 1. (- 1) ^ i * (1 / real (i + 1)) * x ^ (Suc i))" (is "?ub") |
| 29805 | 2109 |
proof - |
|
30952
7ab2716dd93b
power operation on functions with syntax o^; power operation on relations with syntax ^^
haftmann
parents:
30886
diff
changeset
|
2110 |
let "?a n" = "(1/real (n +1)) * x ^ (Suc n)" |
| 29805 | 2111 |
|
|
58410
6d46ad54a2ab
explicit separation of signed and unsigned numerals using existing lexical categories num and xnum
haftmann
parents:
58310
diff
changeset
|
2112 |
have ln_eq: "(\<Sum> i. (- 1) ^ i * ?a i) = ln (x + 1)" |
| 60533 | 2113 |
using ln_series[of "x + 1"] \<open>0 \<le> x\<close> \<open>x < 1\<close> by auto |
| 29805 | 2114 |
|
2115 |
have "norm x < 1" using assms by auto |
|
| 31809 | 2116 |
have "?a ----> 0" unfolding Suc_eq_plus1[symmetric] inverse_eq_divide[symmetric] |
| 60533 | 2117 |
using tendsto_mult[OF LIMSEQ_inverse_real_of_nat LIMSEQ_Suc[OF LIMSEQ_power_zero[OF \<open>norm x < 1\<close>]]] by auto |
| 60680 | 2118 |
have "0 \<le> ?a n" for n |
2119 |
by (rule mult_nonneg_nonneg) (auto simp: \<open>0 \<le> x\<close>) |
|
2120 |
have "?a (Suc n) \<le> ?a n" for n |
|
2121 |
unfolding inverse_eq_divide[symmetric] |
|
2122 |
proof (rule mult_mono) |
|
2123 |
show "0 \<le> x ^ Suc (Suc n)" |
|
2124 |
by (auto simp add: \<open>0 \<le> x\<close>) |
|
2125 |
have "x ^ Suc (Suc n) \<le> x ^ Suc n * 1" |
|
2126 |
unfolding power_Suc2 mult.assoc[symmetric] |
|
2127 |
by (rule mult_left_mono, fact less_imp_le[OF \<open>x < 1\<close>]) (auto simp: \<open>0 \<le> x\<close>) |
|
2128 |
thus "x ^ Suc (Suc n) \<le> x ^ Suc n" by auto |
|
2129 |
qed auto |
|
| 60533 | 2130 |
from summable_Leibniz'(2,4)[OF \<open>?a ----> 0\<close> \<open>\<And>n. 0 \<le> ?a n\<close>, OF \<open>\<And>n. ?a (Suc n) \<le> ?a n\<close>, unfolded ln_eq] |
| 60680 | 2131 |
show ?lb and ?ub |
2132 |
unfolding atLeast0LessThan by auto |
|
| 29805 | 2133 |
qed |
2134 |
||
| 31809 | 2135 |
lemma ln_float_bounds: |
| 60680 | 2136 |
assumes "0 \<le> real x" |
2137 |
and "real x < 1" |
|
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
2138 |
shows "x * lb_ln_horner prec (get_even n) 1 x \<le> ln (x + 1)" (is "?lb \<le> ?ln") |
| 60680 | 2139 |
and "ln (x + 1) \<le> x * ub_ln_horner prec (get_odd n) 1 x" (is "?ln \<le> ?ub") |
| 29805 | 2140 |
proof - |
2141 |
obtain ev where ev: "get_even n = 2 * ev" using get_even_double .. |
|
2142 |
obtain od where od: "get_odd n = 2 * od + 1" using get_odd_double .. |
|
2143 |
||
|
58410
6d46ad54a2ab
explicit separation of signed and unsigned numerals using existing lexical categories num and xnum
haftmann
parents:
58310
diff
changeset
|
2144 |
let "?s n" = "(- 1) ^ n * (1 / real (1 + n)) * (real x)^(Suc n)" |
| 29805 | 2145 |
|
| 60680 | 2146 |
have "?lb \<le> setsum ?s {0 ..< 2 * ev}"
|
2147 |
unfolding power_Suc2 mult.assoc[symmetric] times_float.rep_eq setsum_left_distrib[symmetric] |
|
2148 |
unfolding mult.commute[of "real x"] ev |
|
| 29805 | 2149 |
using horner_bounds(1)[where G="\<lambda> i k. Suc k" and F="\<lambda>x. x" and f="\<lambda>x. x" and lb="\<lambda>n i k x. lb_ln_horner prec n k x" and ub="\<lambda>n i k x. ub_ln_horner prec n k x" and j'=1 and n="2*ev", |
| 60533 | 2150 |
OF \<open>0 \<le> real x\<close> refl lb_ln_horner.simps ub_ln_horner.simps] \<open>0 \<le> real x\<close> |
| 29805 | 2151 |
by (rule mult_right_mono) |
| 60680 | 2152 |
also have "\<dots> \<le> ?ln" |
2153 |
using ln_bounds(1)[OF \<open>0 \<le> real x\<close> \<open>real x < 1\<close>] by auto |
|
| 31809 | 2154 |
finally show "?lb \<le> ?ln" . |
| 29805 | 2155 |
|
| 60680 | 2156 |
have "?ln \<le> setsum ?s {0 ..< 2 * od + 1}"
|
2157 |
using ln_bounds(2)[OF \<open>0 \<le> real x\<close> \<open>real x < 1\<close>] by auto |
|
2158 |
also have "\<dots> \<le> ?ub" |
|
2159 |
unfolding power_Suc2 mult.assoc[symmetric] times_float.rep_eq setsum_left_distrib[symmetric] |
|
2160 |
unfolding mult.commute[of "real x"] od |
|
| 29805 | 2161 |
using horner_bounds(2)[where G="\<lambda> i k. Suc k" and F="\<lambda>x. x" and f="\<lambda>x. x" and lb="\<lambda>n i k x. lb_ln_horner prec n k x" and ub="\<lambda>n i k x. ub_ln_horner prec n k x" and j'=1 and n="2*od+1", |
| 60533 | 2162 |
OF \<open>0 \<le> real x\<close> refl lb_ln_horner.simps ub_ln_horner.simps] \<open>0 \<le> real x\<close> |
| 29805 | 2163 |
by (rule mult_right_mono) |
| 31809 | 2164 |
finally show "?ln \<le> ?ub" . |
| 29805 | 2165 |
qed |
2166 |
||
| 60680 | 2167 |
lemma ln_add: |
2168 |
fixes x :: real |
|
2169 |
assumes "0 < x" and "0 < y" |
|
2170 |
shows "ln (x + y) = ln x + ln (1 + y / x)" |
|
| 29805 | 2171 |
proof - |
2172 |
have "x \<noteq> 0" using assms by auto |
|
| 60680 | 2173 |
have "x + y = x * (1 + y / x)" |
2174 |
unfolding distrib_left times_divide_eq_right nonzero_mult_divide_cancel_left[OF \<open>x \<noteq> 0\<close>] |
|
2175 |
by auto |
|
| 31809 | 2176 |
moreover |
| 56541 | 2177 |
have "0 < y / x" using assms by auto |
| 29805 | 2178 |
hence "0 < 1 + y / x" by auto |
| 60680 | 2179 |
ultimately show ?thesis |
2180 |
using ln_mult assms by auto |
|
| 29805 | 2181 |
qed |
2182 |
||
| 60680 | 2183 |
|
| 29805 | 2184 |
subsection "Compute the logarithm of 2" |
2185 |
||
| 31809 | 2186 |
definition ub_ln2 where "ub_ln2 prec = (let third = rapprox_rat (max prec 1) 1 3 |
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
2187 |
in float_plus_up prec |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
2188 |
((Float 1 (- 1) * ub_ln_horner prec (get_odd prec) 1 (Float 1 (- 1)))) |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
2189 |
(float_round_up prec (third * ub_ln_horner prec (get_odd prec) 1 third)))" |
| 31809 | 2190 |
definition lb_ln2 where "lb_ln2 prec = (let third = lapprox_rat prec 1 3 |
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
2191 |
in float_plus_down prec |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
2192 |
((Float 1 (- 1) * lb_ln_horner prec (get_even prec) 1 (Float 1 (- 1)))) |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
2193 |
(float_round_down prec (third * lb_ln_horner prec (get_even prec) 1 third)))" |
| 29805 | 2194 |
|
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
2195 |
lemma ub_ln2: "ln 2 \<le> ub_ln2 prec" (is "?ub_ln2") |
|
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
2196 |
and lb_ln2: "lb_ln2 prec \<le> ln 2" (is "?lb_ln2") |
| 29805 | 2197 |
proof - |
2198 |
let ?uthird = "rapprox_rat (max prec 1) 1 3" |
|
2199 |
let ?lthird = "lapprox_rat prec 1 3" |
|
2200 |
||
|
60017
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
paulson <lp15@cam.ac.uk>
parents:
59850
diff
changeset
|
2201 |
have ln2_sum: "ln 2 = ln (1/2 + 1) + ln (1 / 3 + 1::real)" |
| 29805 | 2202 |
using ln_add[of "3 / 2" "1 / 2"] by auto |
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
2203 |
have lb3: "?lthird \<le> 1 / 3" using lapprox_rat[of prec 1 3] by auto |
|
31098
73dd67adf90a
replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents:
30971
diff
changeset
|
2204 |
hence lb3_ub: "real ?lthird < 1" by auto |
|
47599
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
2205 |
have lb3_lb: "0 \<le> real ?lthird" using lapprox_rat_nonneg[of 1 3] by auto |
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
2206 |
have ub3: "1 / 3 \<le> ?uthird" using rapprox_rat[of 1 3] by auto |
|
31098
73dd67adf90a
replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents:
30971
diff
changeset
|
2207 |
hence ub3_lb: "0 \<le> real ?uthird" by auto |
| 29805 | 2208 |
|
| 60680 | 2209 |
have lb2: "0 \<le> real (Float 1 (- 1))" and ub2: "real (Float 1 (- 1)) < 1" |
2210 |
unfolding Float_num by auto |
|
| 29805 | 2211 |
|
2212 |
have "0 \<le> (1::int)" and "0 < (3::int)" by auto |
|
|
58982
27e7e3f9e665
simplified computations based on round_up by reducing to round_down;
immler
parents:
58889
diff
changeset
|
2213 |
have ub3_ub: "real ?uthird < 1" |
|
27e7e3f9e665
simplified computations based on round_up by reducing to round_down;
immler
parents:
58889
diff
changeset
|
2214 |
by (simp add: Float.compute_rapprox_rat Float.compute_lapprox_rat rapprox_posrat_less1) |
| 29805 | 2215 |
|
2216 |
have third_gt0: "(0 :: real) < 1 / 3 + 1" by auto |
|
|
31098
73dd67adf90a
replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents:
30971
diff
changeset
|
2217 |
have uthird_gt0: "0 < real ?uthird + 1" using ub3_lb by auto |
|
73dd67adf90a
replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents:
30971
diff
changeset
|
2218 |
have lthird_gt0: "0 < real ?lthird + 1" using lb3_lb by auto |
| 29805 | 2219 |
|
| 60680 | 2220 |
show ?ub_ln2 |
2221 |
unfolding ub_ln2_def Let_def ln2_sum Float_num(4)[symmetric] |
|
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
2222 |
proof (rule float_plus_up_le, rule add_mono, fact ln_float_bounds(2)[OF lb2 ub2]) |
| 60680 | 2223 |
have "ln (1 / 3 + 1) \<le> ln (real ?uthird + 1)" |
2224 |
unfolding ln_le_cancel_iff[OF third_gt0 uthird_gt0] using ub3 by auto |
|
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
2225 |
also have "\<dots> \<le> ?uthird * ub_ln_horner prec (get_odd prec) 1 ?uthird" |
| 29805 | 2226 |
using ln_float_bounds(2)[OF ub3_lb ub3_ub] . |
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
2227 |
also note float_round_up |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
2228 |
finally show "ln (1 / 3 + 1) \<le> float_round_up prec (?uthird * ub_ln_horner prec (get_odd prec) 1 ?uthird)" . |
| 29805 | 2229 |
qed |
| 60680 | 2230 |
show ?lb_ln2 |
2231 |
unfolding lb_ln2_def Let_def ln2_sum Float_num(4)[symmetric] |
|
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
2232 |
proof (rule float_plus_down_le, rule add_mono, fact ln_float_bounds(1)[OF lb2 ub2]) |
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
2233 |
have "?lthird * lb_ln_horner prec (get_even prec) 1 ?lthird \<le> ln (real ?lthird + 1)" |
| 29805 | 2234 |
using ln_float_bounds(1)[OF lb3_lb lb3_ub] . |
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
2235 |
note float_round_down_le[OF this] |
| 60680 | 2236 |
also have "\<dots> \<le> ln (1 / 3 + 1)" |
2237 |
unfolding ln_le_cancel_iff[OF lthird_gt0 third_gt0] |
|
2238 |
using lb3 by auto |
|
2239 |
finally show "float_round_down prec (?lthird * lb_ln_horner prec (get_even prec) 1 ?lthird) \<le> |
|
2240 |
ln (1 / 3 + 1)" . |
|
| 29805 | 2241 |
qed |
2242 |
qed |
|
2243 |
||
| 60680 | 2244 |
|
| 29805 | 2245 |
subsection "Compute the logarithm in the entire domain" |
2246 |
||
2247 |
function ub_ln :: "nat \<Rightarrow> float \<Rightarrow> float option" and lb_ln :: "nat \<Rightarrow> float \<Rightarrow> float option" where |
|
|
31468
b8267feaf342
Approximation: Corrected precision of ln on all real values
hoelzl
parents:
31467
diff
changeset
|
2248 |
"ub_ln prec x = (if x \<le> 0 then None |
|
b8267feaf342
Approximation: Corrected precision of ln on all real values
hoelzl
parents:
31467
diff
changeset
|
2249 |
else if x < 1 then Some (- the (lb_ln prec (float_divl (max prec 1) 1 x))) |
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
2250 |
else let horner = \<lambda>x. float_round_up prec (x * ub_ln_horner prec (get_odd prec) 1 x) in |
|
58410
6d46ad54a2ab
explicit separation of signed and unsigned numerals using existing lexical categories num and xnum
haftmann
parents:
58310
diff
changeset
|
2251 |
if x \<le> Float 3 (- 1) then Some (horner (x - 1)) |
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
2252 |
else if x < Float 1 1 then Some (float_round_up prec (horner (Float 1 (- 1)) + horner (x * rapprox_rat prec 2 3 - 1))) |
|
31468
b8267feaf342
Approximation: Corrected precision of ln on all real values
hoelzl
parents:
31467
diff
changeset
|
2253 |
else let l = bitlen (mantissa x) - 1 in |
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
2254 |
Some (float_plus_up prec (float_round_up prec (ub_ln2 prec * (Float (exponent x + l) 0))) (horner (Float (mantissa x) (- l) - 1))))" | |
|
31468
b8267feaf342
Approximation: Corrected precision of ln on all real values
hoelzl
parents:
31467
diff
changeset
|
2255 |
"lb_ln prec x = (if x \<le> 0 then None |
|
b8267feaf342
Approximation: Corrected precision of ln on all real values
hoelzl
parents:
31467
diff
changeset
|
2256 |
else if x < 1 then Some (- the (ub_ln prec (float_divr prec 1 x))) |
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
2257 |
else let horner = \<lambda>x. float_round_down prec (x * lb_ln_horner prec (get_even prec) 1 x) in |
|
58410
6d46ad54a2ab
explicit separation of signed and unsigned numerals using existing lexical categories num and xnum
haftmann
parents:
58310
diff
changeset
|
2258 |
if x \<le> Float 3 (- 1) then Some (horner (x - 1)) |
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
2259 |
else if x < Float 1 1 then Some (float_round_down prec (horner (Float 1 (- 1)) + |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
2260 |
horner (max (x * lapprox_rat prec 2 3 - 1) 0))) |
|
31468
b8267feaf342
Approximation: Corrected precision of ln on all real values
hoelzl
parents:
31467
diff
changeset
|
2261 |
else let l = bitlen (mantissa x) - 1 in |
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
2262 |
Some (float_plus_down prec (float_round_down prec (lb_ln2 prec * (Float (exponent x + l) 0))) (horner (Float (mantissa x) (- l) - 1))))" |
| 60680 | 2263 |
by pat_completeness auto |
2264 |
||
2265 |
termination |
|
2266 |
proof (relation "measure (\<lambda> v. let (prec, x) = case_sum id id v in (if x < 1 then 1 else 0))", auto) |
|
2267 |
fix prec and x :: float |
|
2268 |
assume "\<not> real x \<le> 0" and "real x < 1" and "real (float_divl (max prec (Suc 0)) 1 x) < 1" |
|
2269 |
hence "0 < real x" "1 \<le> max prec (Suc 0)" "real x < 1" |
|
2270 |
by auto |
|
| 60533 | 2271 |
from float_divl_pos_less1_bound[OF \<open>0 < real x\<close> \<open>real x < 1\<close>[THEN less_imp_le] \<open>1 \<le> max prec (Suc 0)\<close>] |
| 60680 | 2272 |
show False |
2273 |
using \<open>real (float_divl (max prec (Suc 0)) 1 x) < 1\<close> by auto |
|
| 29805 | 2274 |
next |
| 60680 | 2275 |
fix prec x |
2276 |
assume "\<not> real x \<le> 0" and "real x < 1" and "real (float_divr prec 1 x) < 1" |
|
| 47600 | 2277 |
hence "0 < x" by auto |
| 60680 | 2278 |
from float_divr_pos_less1_lower_bound[OF \<open>0 < x\<close>, of prec] \<open>real x < 1\<close> show False |
2279 |
using \<open>real (float_divr prec 1 x) < 1\<close> by auto |
|
|
47599
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
2280 |
qed |
|
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
2281 |
|
| 60680 | 2282 |
lemma float_pos_eq_mantissa_pos: "x > 0 \<longleftrightarrow> mantissa x > 0" |
|
47599
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
2283 |
apply (subst Float_mantissa_exponent[of x, symmetric]) |
|
60017
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
paulson <lp15@cam.ac.uk>
parents:
59850
diff
changeset
|
2284 |
apply (auto simp add: zero_less_mult_iff zero_float_def dest: less_zeroE) |
| 60680 | 2285 |
apply (metis not_le powr_ge_pzero) |
2286 |
done |
|
2287 |
||
2288 |
lemma Float_pos_eq_mantissa_pos: "Float m e > 0 \<longleftrightarrow> m > 0" |
|
|
47599
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
2289 |
using powr_gt_zero[of 2 "e"] |
| 54269 | 2290 |
by (auto simp add: zero_less_mult_iff zero_float_def simp del: powr_gt_zero dest: less_zeroE) |
|
47599
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
2291 |
|
|
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
2292 |
lemma Float_representation_aux: |
|
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
2293 |
fixes m e |
|
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
2294 |
defines "x \<equiv> Float m e" |
|
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
2295 |
assumes "x > 0" |
|
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
2296 |
shows "Float (exponent x + (bitlen (mantissa x) - 1)) 0 = Float (e + (bitlen m - 1)) 0" (is ?th1) |
|
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
2297 |
and "Float (mantissa x) (- (bitlen (mantissa x) - 1)) = Float m ( - (bitlen m - 1))" (is ?th2) |
|
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
2298 |
proof - |
|
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
2299 |
from assms have mantissa_pos: "m > 0" "mantissa x > 0" |
| 47600 | 2300 |
using Float_pos_eq_mantissa_pos[of m e] float_pos_eq_mantissa_pos[of x] by simp_all |
| 60680 | 2301 |
thus ?th1 |
2302 |
using bitlen_Float[of m e] assms |
|
2303 |
by (auto simp add: zero_less_mult_iff intro!: arg_cong2[where f=Float]) |
|
| 47600 | 2304 |
have "x \<noteq> float_of 0" |
| 60533 | 2305 |
unfolding zero_float_def[symmetric] using \<open>0 < x\<close> by auto |
|
47599
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
2306 |
from denormalize_shift[OF assms(1) this] guess i . note i = this |
| 47600 | 2307 |
|
|
47599
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
2308 |
have "2 powr (1 - (real (bitlen (mantissa x)) + real i)) = |
|
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
2309 |
2 powr (1 - (real (bitlen (mantissa x)))) * inverse (2 powr (real i))" |
|
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
2310 |
by (simp add: powr_minus[symmetric] powr_add[symmetric] field_simps) |
|
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
2311 |
hence "real (mantissa x) * 2 powr (1 - real (bitlen (mantissa x))) = |
|
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
2312 |
(real (mantissa x) * 2 ^ i) * 2 powr (1 - real (bitlen (mantissa x * 2 ^ i)))" |
| 60533 | 2313 |
using \<open>mantissa x > 0\<close> by (simp add: powr_realpow) |
| 47600 | 2314 |
then show ?th2 |
2315 |
unfolding i by transfer auto |
|
|
47599
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
2316 |
qed |
|
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
2317 |
|
|
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
2318 |
lemma compute_ln[code]: |
|
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
2319 |
fixes m e |
|
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
2320 |
defines "x \<equiv> Float m e" |
|
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
2321 |
shows "ub_ln prec x = (if x \<le> 0 then None |
|
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
2322 |
else if x < 1 then Some (- the (lb_ln prec (float_divl (max prec 1) 1 x))) |
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
2323 |
else let horner = \<lambda>x. float_round_up prec (x * ub_ln_horner prec (get_odd prec) 1 x) in |
|
58410
6d46ad54a2ab
explicit separation of signed and unsigned numerals using existing lexical categories num and xnum
haftmann
parents:
58310
diff
changeset
|
2324 |
if x \<le> Float 3 (- 1) then Some (horner (x - 1)) |
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
2325 |
else if x < Float 1 1 then Some (float_round_up prec (horner (Float 1 (- 1)) + horner (x * rapprox_rat prec 2 3 - 1))) |
|
47599
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
2326 |
else let l = bitlen m - 1 in |
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
2327 |
Some (float_plus_up prec (float_round_up prec (ub_ln2 prec * (Float (e + l) 0))) (horner (Float m (- l) - 1))))" |
|
47599
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
2328 |
(is ?th1) |
|
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
2329 |
and "lb_ln prec x = (if x \<le> 0 then None |
|
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
2330 |
else if x < 1 then Some (- the (ub_ln prec (float_divr prec 1 x))) |
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
2331 |
else let horner = \<lambda>x. float_round_down prec (x * lb_ln_horner prec (get_even prec) 1 x) in |
|
58410
6d46ad54a2ab
explicit separation of signed and unsigned numerals using existing lexical categories num and xnum
haftmann
parents:
58310
diff
changeset
|
2332 |
if x \<le> Float 3 (- 1) then Some (horner (x - 1)) |
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
2333 |
else if x < Float 1 1 then Some (float_round_down prec (horner (Float 1 (- 1)) + |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
2334 |
horner (max (x * lapprox_rat prec 2 3 - 1) 0))) |
|
47599
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
2335 |
else let l = bitlen m - 1 in |
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
2336 |
Some (float_plus_down prec (float_round_down prec (lb_ln2 prec * (Float (e + l) 0))) (horner (Float m (- l) - 1))))" |
|
47599
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
2337 |
(is ?th2) |
|
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
2338 |
proof - |
| 60680 | 2339 |
from assms Float_pos_eq_mantissa_pos have "x > 0 \<Longrightarrow> m > 0" |
2340 |
by simp |
|
2341 |
thus ?th1 ?th2 |
|
2342 |
using Float_representation_aux[of m e] |
|
2343 |
unfolding x_def[symmetric] |
|
| 47600 | 2344 |
by (auto dest: not_leE) |
| 29805 | 2345 |
qed |
2346 |
||
| 60680 | 2347 |
lemma ln_shifted_float: |
2348 |
assumes "0 < m" |
|
2349 |
shows "ln (Float m e) = ln 2 * (e + (bitlen m - 1)) + ln (Float m (- (bitlen m - 1)))" |
|
| 29805 | 2350 |
proof - |
2351 |
let ?B = "2^nat (bitlen m - 1)" |
|
|
47599
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
2352 |
def bl \<equiv> "bitlen m - 1" |
| 60680 | 2353 |
have "0 < real m" and "\<And>X. (0 :: real) < 2^X" and "0 < (2 :: real)" and "m \<noteq> 0" |
2354 |
using assms by auto |
|
|
47599
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
2355 |
hence "0 \<le> bl" by (simp add: bitlen_def bl_def) |
|
31468
b8267feaf342
Approximation: Corrected precision of ln on all real values
hoelzl
parents:
31467
diff
changeset
|
2356 |
show ?thesis |
| 29805 | 2357 |
proof (cases "0 \<le> e") |
|
59751
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59741
diff
changeset
|
2358 |
case True |
|
47599
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
2359 |
thus ?thesis |
| 60533 | 2360 |
unfolding bl_def[symmetric] using \<open>0 < real m\<close> \<open>0 \<le> bl\<close> |
|
47599
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
2361 |
apply (simp add: ln_mult) |
|
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
2362 |
apply (cases "e=0") |
|
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
2363 |
apply (cases "bl = 0", simp_all add: powr_minus ln_inverse ln_powr) |
|
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
2364 |
apply (cases "bl = 0", simp_all add: powr_minus ln_inverse ln_powr field_simps) |
|
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
2365 |
done |
| 29805 | 2366 |
next |
| 60680 | 2367 |
case False |
2368 |
hence "0 < -e" by auto |
|
2369 |
have lne: "ln (2 powr real e) = ln (inverse (2 powr - e))" |
|
2370 |
by (simp add: powr_minus) |
|
2371 |
hence pow_gt0: "(0::real) < 2^nat (-e)" |
|
2372 |
by auto |
|
2373 |
hence inv_gt0: "(0::real) < inverse (2^nat (-e))" |
|
2374 |
by auto |
|
2375 |
show ?thesis |
|
2376 |
using False unfolding bl_def[symmetric] |
|
2377 |
using \<open>0 < real m\<close> \<open>0 \<le> bl\<close> |
|
| 56483 | 2378 |
by (auto simp add: lne ln_mult ln_powr ln_div field_simps) |
| 29805 | 2379 |
qed |
2380 |
qed |
|
2381 |
||
| 60680 | 2382 |
lemma ub_ln_lb_ln_bounds': |
2383 |
assumes "1 \<le> x" |
|
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
2384 |
shows "the (lb_ln prec x) \<le> ln x \<and> ln x \<le> the (ub_ln prec x)" |
| 60680 | 2385 |
(is "?lb \<le> ?ln \<and> ?ln \<le> ?ub") |
| 29805 | 2386 |
proof (cases "x < Float 1 1") |
|
31468
b8267feaf342
Approximation: Corrected precision of ln on all real values
hoelzl
parents:
31467
diff
changeset
|
2387 |
case True |
| 47600 | 2388 |
hence "real (x - 1) < 1" and "real x < 2" by auto |
| 60533 | 2389 |
have "\<not> x \<le> 0" and "\<not> x < 1" using \<open>1 \<le> x\<close> by auto |
2390 |
hence "0 \<le> real (x - 1)" using \<open>1 \<le> x\<close> by auto |
|
|
31468
b8267feaf342
Approximation: Corrected precision of ln on all real values
hoelzl
parents:
31467
diff
changeset
|
2391 |
|
|
58410
6d46ad54a2ab
explicit separation of signed and unsigned numerals using existing lexical categories num and xnum
haftmann
parents:
58310
diff
changeset
|
2392 |
have [simp]: "(Float 3 (- 1)) = 3 / 2" by simp |
|
31468
b8267feaf342
Approximation: Corrected precision of ln on all real values
hoelzl
parents:
31467
diff
changeset
|
2393 |
|
|
b8267feaf342
Approximation: Corrected precision of ln on all real values
hoelzl
parents:
31467
diff
changeset
|
2394 |
show ?thesis |
|
58410
6d46ad54a2ab
explicit separation of signed and unsigned numerals using existing lexical categories num and xnum
haftmann
parents:
58310
diff
changeset
|
2395 |
proof (cases "x \<le> Float 3 (- 1)") |
|
31468
b8267feaf342
Approximation: Corrected precision of ln on all real values
hoelzl
parents:
31467
diff
changeset
|
2396 |
case True |
| 60680 | 2397 |
show ?thesis |
2398 |
unfolding lb_ln.simps |
|
2399 |
unfolding ub_ln.simps Let_def |
|
2400 |
using ln_float_bounds[OF \<open>0 \<le> real (x - 1)\<close> \<open>real (x - 1) < 1\<close>, of prec] |
|
2401 |
\<open>\<not> x \<le> 0\<close> \<open>\<not> x < 1\<close> True |
|
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
2402 |
by (auto intro!: float_round_down_le float_round_up_le) |
|
31468
b8267feaf342
Approximation: Corrected precision of ln on all real values
hoelzl
parents:
31467
diff
changeset
|
2403 |
next |
| 60680 | 2404 |
case False |
2405 |
hence *: "3 / 2 < x" by auto |
|
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
2406 |
|
|
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
2407 |
with ln_add[of "3 / 2" "x - 3 / 2"] |
|
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
2408 |
have add: "ln x = ln (3 / 2) + ln (real x * 2 / 3)" |
|
31468
b8267feaf342
Approximation: Corrected precision of ln on all real values
hoelzl
parents:
31467
diff
changeset
|
2409 |
by (auto simp add: algebra_simps diff_divide_distrib) |
|
b8267feaf342
Approximation: Corrected precision of ln on all real values
hoelzl
parents:
31467
diff
changeset
|
2410 |
|
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
2411 |
let "?ub_horner x" = "float_round_up prec (x * ub_ln_horner prec (get_odd prec) 1 x)" |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
2412 |
let "?lb_horner x" = "float_round_down prec (x * lb_ln_horner prec (get_even prec) 1 x)" |
|
31468
b8267feaf342
Approximation: Corrected precision of ln on all real values
hoelzl
parents:
31467
diff
changeset
|
2413 |
|
|
b8267feaf342
Approximation: Corrected precision of ln on all real values
hoelzl
parents:
31467
diff
changeset
|
2414 |
{ have up: "real (rapprox_rat prec 2 3) \<le> 1"
|
|
32960
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32920
diff
changeset
|
2415 |
by (rule rapprox_rat_le1) simp_all |
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
2416 |
have low: "2 / 3 \<le> rapprox_rat prec 2 3" |
|
32960
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32920
diff
changeset
|
2417 |
by (rule order_trans[OF _ rapprox_rat]) simp |
|
31468
b8267feaf342
Approximation: Corrected precision of ln on all real values
hoelzl
parents:
31467
diff
changeset
|
2418 |
from mult_less_le_imp_less[OF * low] * |
|
b8267feaf342
Approximation: Corrected precision of ln on all real values
hoelzl
parents:
31467
diff
changeset
|
2419 |
have pos: "0 < real (x * rapprox_rat prec 2 3 - 1)" by auto |
|
b8267feaf342
Approximation: Corrected precision of ln on all real values
hoelzl
parents:
31467
diff
changeset
|
2420 |
|
|
b8267feaf342
Approximation: Corrected precision of ln on all real values
hoelzl
parents:
31467
diff
changeset
|
2421 |
have "ln (real x * 2/3) |
|
32960
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32920
diff
changeset
|
2422 |
\<le> ln (real (x * rapprox_rat prec 2 3 - 1) + 1)" |
|
31468
b8267feaf342
Approximation: Corrected precision of ln on all real values
hoelzl
parents:
31467
diff
changeset
|
2423 |
proof (rule ln_le_cancel_iff[symmetric, THEN iffD1]) |
|
32960
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32920
diff
changeset
|
2424 |
show "real x * 2 / 3 \<le> real (x * rapprox_rat prec 2 3 - 1) + 1" |
|
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32920
diff
changeset
|
2425 |
using * low by auto |
|
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32920
diff
changeset
|
2426 |
show "0 < real x * 2 / 3" using * by simp |
|
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32920
diff
changeset
|
2427 |
show "0 < real (x * rapprox_rat prec 2 3 - 1) + 1" using pos by auto |
|
31468
b8267feaf342
Approximation: Corrected precision of ln on all real values
hoelzl
parents:
31467
diff
changeset
|
2428 |
qed |
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
2429 |
also have "\<dots> \<le> ?ub_horner (x * rapprox_rat prec 2 3 - 1)" |
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
2430 |
proof (rule float_round_up_le, rule ln_float_bounds(2)) |
| 60533 | 2431 |
from mult_less_le_imp_less[OF \<open>real x < 2\<close> up] low * |
|
32960
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32920
diff
changeset
|
2432 |
show "real (x * rapprox_rat prec 2 3 - 1) < 1" by auto |
|
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32920
diff
changeset
|
2433 |
show "0 \<le> real (x * rapprox_rat prec 2 3 - 1)" using pos by auto |
|
31468
b8267feaf342
Approximation: Corrected precision of ln on all real values
hoelzl
parents:
31467
diff
changeset
|
2434 |
qed |
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
2435 |
finally have "ln x \<le> ?ub_horner (Float 1 (-1)) |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
2436 |
+ ?ub_horner ((x * rapprox_rat prec 2 3 - 1))" |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
2437 |
using ln_float_bounds(2)[of "Float 1 (- 1)" prec prec] add |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
2438 |
by (auto intro!: add_mono float_round_up_le) |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
2439 |
note float_round_up_le[OF this, of prec] |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
2440 |
} |
|
31468
b8267feaf342
Approximation: Corrected precision of ln on all real values
hoelzl
parents:
31467
diff
changeset
|
2441 |
moreover |
|
b8267feaf342
Approximation: Corrected precision of ln on all real values
hoelzl
parents:
31467
diff
changeset
|
2442 |
{ let ?max = "max (x * lapprox_rat prec 2 3 - 1) 0"
|
|
b8267feaf342
Approximation: Corrected precision of ln on all real values
hoelzl
parents:
31467
diff
changeset
|
2443 |
|
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
2444 |
have up: "lapprox_rat prec 2 3 \<le> 2/3" |
|
32960
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32920
diff
changeset
|
2445 |
by (rule order_trans[OF lapprox_rat], simp) |
|
31468
b8267feaf342
Approximation: Corrected precision of ln on all real values
hoelzl
parents:
31467
diff
changeset
|
2446 |
|
|
b8267feaf342
Approximation: Corrected precision of ln on all real values
hoelzl
parents:
31467
diff
changeset
|
2447 |
have low: "0 \<le> real (lapprox_rat prec 2 3)" |
|
47599
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
2448 |
using lapprox_rat_nonneg[of 2 3 prec] by simp |
|
31468
b8267feaf342
Approximation: Corrected precision of ln on all real values
hoelzl
parents:
31467
diff
changeset
|
2449 |
|
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
2450 |
have "?lb_horner ?max |
|
32960
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32920
diff
changeset
|
2451 |
\<le> ln (real ?max + 1)" |
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
2452 |
proof (rule float_round_down_le, rule ln_float_bounds(1)) |
| 60533 | 2453 |
from mult_less_le_imp_less[OF \<open>real x < 2\<close> up] * low |
|
32960
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32920
diff
changeset
|
2454 |
show "real ?max < 1" by (cases "real (lapprox_rat prec 2 3) = 0", |
|
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32920
diff
changeset
|
2455 |
auto simp add: real_of_float_max) |
|
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32920
diff
changeset
|
2456 |
show "0 \<le> real ?max" by (auto simp add: real_of_float_max) |
|
31468
b8267feaf342
Approximation: Corrected precision of ln on all real values
hoelzl
parents:
31467
diff
changeset
|
2457 |
qed |
|
b8267feaf342
Approximation: Corrected precision of ln on all real values
hoelzl
parents:
31467
diff
changeset
|
2458 |
also have "\<dots> \<le> ln (real x * 2/3)" |
|
b8267feaf342
Approximation: Corrected precision of ln on all real values
hoelzl
parents:
31467
diff
changeset
|
2459 |
proof (rule ln_le_cancel_iff[symmetric, THEN iffD1]) |
|
32960
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32920
diff
changeset
|
2460 |
show "0 < real ?max + 1" by (auto simp add: real_of_float_max) |
|
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32920
diff
changeset
|
2461 |
show "0 < real x * 2/3" using * by auto |
|
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32920
diff
changeset
|
2462 |
show "real ?max + 1 \<le> real x * 2/3" using * up |
|
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32920
diff
changeset
|
2463 |
by (cases "0 < real x * real (lapprox_posrat prec 2 3) - 1", |
|
47599
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
2464 |
auto simp add: max_def) |
|
31468
b8267feaf342
Approximation: Corrected precision of ln on all real values
hoelzl
parents:
31467
diff
changeset
|
2465 |
qed |
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
2466 |
finally have "?lb_horner (Float 1 (- 1)) + ?lb_horner ?max \<le> ln x" |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
2467 |
using ln_float_bounds(1)[of "Float 1 (- 1)" prec prec] add |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
2468 |
by (auto intro!: add_mono float_round_down_le) |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
2469 |
note float_round_down_le[OF this, of prec] |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
2470 |
} |
|
31468
b8267feaf342
Approximation: Corrected precision of ln on all real values
hoelzl
parents:
31467
diff
changeset
|
2471 |
ultimately |
|
b8267feaf342
Approximation: Corrected precision of ln on all real values
hoelzl
parents:
31467
diff
changeset
|
2472 |
show ?thesis unfolding lb_ln.simps unfolding ub_ln.simps Let_def |
| 60533 | 2473 |
using \<open>\<not> x \<le> 0\<close> \<open>\<not> x < 1\<close> True False by auto |
|
31468
b8267feaf342
Approximation: Corrected precision of ln on all real values
hoelzl
parents:
31467
diff
changeset
|
2474 |
qed |
| 29805 | 2475 |
next |
2476 |
case False |
|
|
58410
6d46ad54a2ab
explicit separation of signed and unsigned numerals using existing lexical categories num and xnum
haftmann
parents:
58310
diff
changeset
|
2477 |
hence "\<not> x \<le> 0" and "\<not> x < 1" "0 < x" "\<not> x \<le> Float 3 (- 1)" |
| 60533 | 2478 |
using \<open>1 \<le> x\<close> by auto |
| 29805 | 2479 |
show ?thesis |
|
47599
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
2480 |
proof - |
|
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
2481 |
def m \<equiv> "mantissa x" |
|
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
2482 |
def e \<equiv> "exponent x" |
| 60680 | 2483 |
from Float_mantissa_exponent[of x] have Float: "x = Float m e" |
2484 |
by (simp add: m_def e_def) |
|
| 29805 | 2485 |
let ?s = "Float (e + (bitlen m - 1)) 0" |
2486 |
let ?x = "Float m (- (bitlen m - 1))" |
|
2487 |
||
| 60680 | 2488 |
have "0 < m" and "m \<noteq> 0" using \<open>0 < x\<close> Float powr_gt_zero[of 2 e] |
|
60017
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
paulson <lp15@cam.ac.uk>
parents:
59850
diff
changeset
|
2489 |
apply (auto simp add: zero_less_mult_iff) |
| 60680 | 2490 |
using not_le powr_ge_pzero apply blast |
2491 |
done |
|
2492 |
def bl \<equiv> "bitlen m - 1" |
|
2493 |
hence "bl \<ge> 0" |
|
2494 |
using \<open>m > 0\<close> by (simp add: bitlen_def) |
|
2495 |
have "1 \<le> Float m e" |
|
2496 |
using \<open>1 \<le> x\<close> Float unfolding less_eq_float_def by auto |
|
| 60533 | 2497 |
from bitlen_div[OF \<open>0 < m\<close>] float_gt1_scale[OF \<open>1 \<le> Float m e\<close>] \<open>bl \<ge> 0\<close> |
|
47599
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
2498 |
have x_bnds: "0 \<le> real (?x - 1)" "real (?x - 1) < 1" |
|
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
2499 |
unfolding bl_def[symmetric] |
|
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
2500 |
by (auto simp: powr_realpow[symmetric] field_simps inverse_eq_divide) |
|
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
2501 |
(auto simp : powr_minus field_simps inverse_eq_divide) |
| 29805 | 2502 |
|
2503 |
{
|
|
| 60680 | 2504 |
have "float_round_down prec (lb_ln2 prec * ?s) \<le> ln 2 * (e + (bitlen m - 1))" |
2505 |
(is "real ?lb2 \<le> _") |
|
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
2506 |
apply (rule float_round_down_le) |
|
47601
050718fe6eee
use real :: float => real as lifting-morphism so we can directlry use the rep_eq theorems
hoelzl
parents:
47600
diff
changeset
|
2507 |
unfolding nat_0 power_0 mult_1_right times_float.rep_eq |
|
32960
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32920
diff
changeset
|
2508 |
using lb_ln2[of prec] |
|
47599
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
2509 |
proof (rule mult_mono) |
| 60533 | 2510 |
from float_gt1_scale[OF \<open>1 \<le> Float m e\<close>] |
|
47599
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
2511 |
show "0 \<le> real (Float (e + (bitlen m - 1)) 0)" by simp |
|
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
2512 |
qed auto |
| 29805 | 2513 |
moreover |
|
47599
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
2514 |
from ln_float_bounds(1)[OF x_bnds] |
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
2515 |
have "float_round_down prec ((?x - 1) * lb_ln_horner prec (get_even prec) 1 (?x - 1)) \<le> ln ?x" (is "real ?lb_horner \<le> _") |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
2516 |
by (auto intro!: float_round_down_le) |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
2517 |
ultimately have "float_plus_down prec ?lb2 ?lb_horner \<le> ln x" |
| 60533 | 2518 |
unfolding Float ln_shifted_float[OF \<open>0 < m\<close>, of e] by (auto intro!: float_plus_down_le) |
|
31468
b8267feaf342
Approximation: Corrected precision of ln on all real values
hoelzl
parents:
31467
diff
changeset
|
2519 |
} |
| 29805 | 2520 |
moreover |
2521 |
{
|
|
|
47599
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
2522 |
from ln_float_bounds(2)[OF x_bnds] |
| 60680 | 2523 |
have "ln ?x \<le> float_round_up prec ((?x - 1) * ub_ln_horner prec (get_odd prec) 1 (?x - 1))" |
2524 |
(is "_ \<le> real ?ub_horner") |
|
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
2525 |
by (auto intro!: float_round_up_le) |
| 29805 | 2526 |
moreover |
| 60680 | 2527 |
have "ln 2 * (e + (bitlen m - 1)) \<le> float_round_up prec (ub_ln2 prec * ?s)" |
2528 |
(is "_ \<le> real ?ub2") |
|
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
2529 |
apply (rule float_round_up_le) |
|
47601
050718fe6eee
use real :: float => real as lifting-morphism so we can directlry use the rep_eq theorems
hoelzl
parents:
47600
diff
changeset
|
2530 |
unfolding nat_0 power_0 mult_1_right times_float.rep_eq |
|
32960
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32920
diff
changeset
|
2531 |
using ub_ln2[of prec] |
|
47599
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
2532 |
proof (rule mult_mono) |
| 60533 | 2533 |
from float_gt1_scale[OF \<open>1 \<le> Float m e\<close>] |
|
32960
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32920
diff
changeset
|
2534 |
show "0 \<le> real (e + (bitlen m - 1))" by auto |
|
60017
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
paulson <lp15@cam.ac.uk>
parents:
59850
diff
changeset
|
2535 |
have "0 \<le> ln (2 :: real)" by simp |
|
47599
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
2536 |
thus "0 \<le> real (ub_ln2 prec)" using ub_ln2[of prec] by arith |
|
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
2537 |
qed auto |
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
2538 |
ultimately have "ln x \<le> float_plus_up prec ?ub2 ?ub_horner" |
| 60533 | 2539 |
unfolding Float ln_shifted_float[OF \<open>0 < m\<close>, of e] |
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
2540 |
by (auto intro!: float_plus_up_le) |
| 29805 | 2541 |
} |
| 60680 | 2542 |
ultimately show ?thesis |
2543 |
unfolding lb_ln.simps |
|
2544 |
unfolding ub_ln.simps |
|
2545 |
unfolding if_not_P[OF \<open>\<not> x \<le> 0\<close>] if_not_P[OF \<open>\<not> x < 1\<close>] |
|
2546 |
if_not_P[OF False] if_not_P[OF \<open>\<not> x \<le> Float 3 (- 1)\<close>] Let_def |
|
2547 |
unfolding plus_float.rep_eq e_def[symmetric] m_def[symmetric] |
|
2548 |
by simp |
|
| 29805 | 2549 |
qed |
2550 |
qed |
|
2551 |
||
| 49351 | 2552 |
lemma ub_ln_lb_ln_bounds: |
2553 |
assumes "0 < x" |
|
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
2554 |
shows "the (lb_ln prec x) \<le> ln x \<and> ln x \<le> the (ub_ln prec x)" |
| 60680 | 2555 |
(is "?lb \<le> ?ln \<and> ?ln \<le> ?ub") |
| 29805 | 2556 |
proof (cases "x < 1") |
| 60680 | 2557 |
case False |
2558 |
hence "1 \<le> x" |
|
2559 |
unfolding less_float_def less_eq_float_def by auto |
|
2560 |
show ?thesis |
|
2561 |
using ub_ln_lb_ln_bounds'[OF \<open>1 \<le> x\<close>] . |
|
| 29805 | 2562 |
next |
| 60680 | 2563 |
case True |
2564 |
have "\<not> x \<le> 0" using \<open>0 < x\<close> by auto |
|
2565 |
from True have "real x \<le> 1" "x \<le> 1" |
|
2566 |
by simp_all |
|
2567 |
have "0 < real x" and "real x \<noteq> 0" |
|
2568 |
using \<open>0 < x\<close> by auto |
|
|
31098
73dd67adf90a
replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents:
30971
diff
changeset
|
2569 |
hence A: "0 < 1 / real x" by auto |
| 29805 | 2570 |
|
2571 |
{
|
|
2572 |
let ?divl = "float_divl (max prec 1) 1 x" |
|
| 60533 | 2573 |
have A': "1 \<le> ?divl" using float_divl_pos_less1_bound[OF \<open>0 < real x\<close> \<open>real x \<le> 1\<close>] by auto |
| 47600 | 2574 |
hence B: "0 < real ?divl" by auto |
|
31468
b8267feaf342
Approximation: Corrected precision of ln on all real values
hoelzl
parents:
31467
diff
changeset
|
2575 |
|
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
2576 |
have "ln ?divl \<le> ln (1 / x)" unfolding ln_le_cancel_iff[OF B A] using float_divl[of _ 1 x] by auto |
| 60533 | 2577 |
hence "ln x \<le> - ln ?divl" unfolding nonzero_inverse_eq_divide[OF \<open>real x \<noteq> 0\<close>, symmetric] ln_inverse[OF \<open>0 < real x\<close>] by auto |
|
31468
b8267feaf342
Approximation: Corrected precision of ln on all real values
hoelzl
parents:
31467
diff
changeset
|
2578 |
from this ub_ln_lb_ln_bounds'[OF A', THEN conjunct1, THEN le_imp_neg_le] |
|
47601
050718fe6eee
use real :: float => real as lifting-morphism so we can directlry use the rep_eq theorems
hoelzl
parents:
47600
diff
changeset
|
2579 |
have "?ln \<le> - the (lb_ln prec ?divl)" unfolding uminus_float.rep_eq by (rule order_trans) |
| 29805 | 2580 |
} moreover |
2581 |
{
|
|
2582 |
let ?divr = "float_divr prec 1 x" |
|
| 60533 | 2583 |
have A': "1 \<le> ?divr" using float_divr_pos_less1_lower_bound[OF \<open>0 < x\<close> \<open>x \<le> 1\<close>] unfolding less_eq_float_def less_float_def by auto |
| 47600 | 2584 |
hence B: "0 < real ?divr" by auto |
|
31468
b8267feaf342
Approximation: Corrected precision of ln on all real values
hoelzl
parents:
31467
diff
changeset
|
2585 |
|
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
2586 |
have "ln (1 / x) \<le> ln ?divr" unfolding ln_le_cancel_iff[OF A B] using float_divr[of 1 x] by auto |
| 60533 | 2587 |
hence "- ln ?divr \<le> ln x" unfolding nonzero_inverse_eq_divide[OF \<open>real x \<noteq> 0\<close>, symmetric] ln_inverse[OF \<open>0 < real x\<close>] by auto |
| 29805 | 2588 |
from ub_ln_lb_ln_bounds'[OF A', THEN conjunct2, THEN le_imp_neg_le] this |
|
47601
050718fe6eee
use real :: float => real as lifting-morphism so we can directlry use the rep_eq theorems
hoelzl
parents:
47600
diff
changeset
|
2589 |
have "- the (ub_ln prec ?divr) \<le> ?ln" unfolding uminus_float.rep_eq by (rule order_trans) |
| 29805 | 2590 |
} |
2591 |
ultimately show ?thesis unfolding lb_ln.simps[where x=x] ub_ln.simps[where x=x] |
|
| 60533 | 2592 |
unfolding if_not_P[OF \<open>\<not> x \<le> 0\<close>] if_P[OF True] by auto |
| 29805 | 2593 |
qed |
2594 |
||
| 49351 | 2595 |
lemma lb_ln: |
2596 |
assumes "Some y = lb_ln prec x" |
|
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
2597 |
shows "y \<le> ln x" and "0 < real x" |
| 29805 | 2598 |
proof - |
2599 |
have "0 < x" |
|
2600 |
proof (rule ccontr) |
|
| 60680 | 2601 |
assume "\<not> 0 < x" |
2602 |
hence "x \<le> 0" |
|
2603 |
unfolding less_eq_float_def less_float_def by auto |
|
2604 |
thus False |
|
2605 |
using assms by auto |
|
| 29805 | 2606 |
qed |
| 47600 | 2607 |
thus "0 < real x" by auto |
| 60680 | 2608 |
have "the (lb_ln prec x) \<le> ln x" |
2609 |
using ub_ln_lb_ln_bounds[OF \<open>0 < x\<close>] .. |
|
2610 |
thus "y \<le> ln x" |
|
2611 |
unfolding assms[symmetric] by auto |
|
| 29805 | 2612 |
qed |
2613 |
||
| 49351 | 2614 |
lemma ub_ln: |
2615 |
assumes "Some y = ub_ln prec x" |
|
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
2616 |
shows "ln x \<le> y" and "0 < real x" |
| 29805 | 2617 |
proof - |
2618 |
have "0 < x" |
|
2619 |
proof (rule ccontr) |
|
| 60680 | 2620 |
assume "\<not> 0 < x" |
2621 |
hence "x \<le> 0" by auto |
|
2622 |
thus False |
|
2623 |
using assms by auto |
|
| 29805 | 2624 |
qed |
| 47600 | 2625 |
thus "0 < real x" by auto |
| 60680 | 2626 |
have "ln x \<le> the (ub_ln prec x)" |
2627 |
using ub_ln_lb_ln_bounds[OF \<open>0 < x\<close>] .. |
|
2628 |
thus "ln x \<le> y" |
|
2629 |
unfolding assms[symmetric] by auto |
|
| 29805 | 2630 |
qed |
2631 |
||
| 60680 | 2632 |
lemma bnds_ln: "\<forall>(x::real) lx ux. (Some l, Some u) = |
2633 |
(lb_ln prec lx, ub_ln prec ux) \<and> x \<in> {lx .. ux} \<longrightarrow> l \<le> ln x \<and> ln x \<le> u"
|
|
| 29805 | 2634 |
proof (rule allI, rule allI, rule allI, rule impI) |
| 60680 | 2635 |
fix x :: real |
2636 |
fix lx ux |
|
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
2637 |
assume "(Some l, Some u) = (lb_ln prec lx, ub_ln prec ux) \<and> x \<in> {lx .. ux}"
|
| 60680 | 2638 |
hence l: "Some l = lb_ln prec lx " and u: "Some u = ub_ln prec ux" and x: "x \<in> {lx .. ux}"
|
2639 |
by auto |
|
2640 |
||
2641 |
have "ln ux \<le> u" and "0 < real ux" |
|
2642 |
using ub_ln u by auto |
|
2643 |
have "l \<le> ln lx" and "0 < real lx" and "0 < x" |
|
2644 |
using lb_ln[OF l] x by auto |
|
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
2645 |
|
| 60533 | 2646 |
from ln_le_cancel_iff[OF \<open>0 < real lx\<close> \<open>0 < x\<close>] \<open>l \<le> ln lx\<close> |
| 60680 | 2647 |
have "l \<le> ln x" |
2648 |
using x unfolding atLeastAtMost_iff by auto |
|
| 29805 | 2649 |
moreover |
| 60533 | 2650 |
from ln_le_cancel_iff[OF \<open>0 < x\<close> \<open>0 < real ux\<close>] \<open>ln ux \<le> real u\<close> |
| 60680 | 2651 |
have "ln x \<le> u" |
2652 |
using x unfolding atLeastAtMost_iff by auto |
|
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
2653 |
ultimately show "l \<le> ln x \<and> ln x \<le> u" .. |
| 29805 | 2654 |
qed |
2655 |
||
| 60680 | 2656 |
|
| 29805 | 2657 |
section "Implement floatarith" |
2658 |
||
2659 |
subsection "Define syntax and semantics" |
|
2660 |
||
| 58310 | 2661 |
datatype floatarith |
| 29805 | 2662 |
= Add floatarith floatarith |
2663 |
| Minus floatarith |
|
2664 |
| Mult floatarith floatarith |
|
2665 |
| Inverse floatarith |
|
2666 |
| Cos floatarith |
|
2667 |
| Arctan floatarith |
|
2668 |
| Abs floatarith |
|
2669 |
| Max floatarith floatarith |
|
2670 |
| Min floatarith floatarith |
|
2671 |
| Pi |
|
2672 |
| Sqrt floatarith |
|
2673 |
| Exp floatarith |
|
2674 |
| Ln floatarith |
|
2675 |
| Power floatarith nat |
|
|
32919
37adfa07b54b
approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents:
32650
diff
changeset
|
2676 |
| Var nat |
| 29805 | 2677 |
| Num float |
2678 |
||
|
31863
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
2679 |
fun interpret_floatarith :: "floatarith \<Rightarrow> real list \<Rightarrow> real" where |
|
31098
73dd67adf90a
replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents:
30971
diff
changeset
|
2680 |
"interpret_floatarith (Add a b) vs = (interpret_floatarith a vs) + (interpret_floatarith b vs)" | |
|
73dd67adf90a
replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents:
30971
diff
changeset
|
2681 |
"interpret_floatarith (Minus a) vs = - (interpret_floatarith a vs)" | |
|
73dd67adf90a
replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents:
30971
diff
changeset
|
2682 |
"interpret_floatarith (Mult a b) vs = (interpret_floatarith a vs) * (interpret_floatarith b vs)" | |
|
73dd67adf90a
replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents:
30971
diff
changeset
|
2683 |
"interpret_floatarith (Inverse a) vs = inverse (interpret_floatarith a vs)" | |
|
73dd67adf90a
replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents:
30971
diff
changeset
|
2684 |
"interpret_floatarith (Cos a) vs = cos (interpret_floatarith a vs)" | |
|
73dd67adf90a
replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents:
30971
diff
changeset
|
2685 |
"interpret_floatarith (Arctan a) vs = arctan (interpret_floatarith a vs)" | |
|
73dd67adf90a
replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents:
30971
diff
changeset
|
2686 |
"interpret_floatarith (Min a b) vs = min (interpret_floatarith a vs) (interpret_floatarith b vs)" | |
|
73dd67adf90a
replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents:
30971
diff
changeset
|
2687 |
"interpret_floatarith (Max a b) vs = max (interpret_floatarith a vs) (interpret_floatarith b vs)" | |
|
73dd67adf90a
replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents:
30971
diff
changeset
|
2688 |
"interpret_floatarith (Abs a) vs = abs (interpret_floatarith a vs)" | |
|
73dd67adf90a
replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents:
30971
diff
changeset
|
2689 |
"interpret_floatarith Pi vs = pi" | |
|
73dd67adf90a
replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents:
30971
diff
changeset
|
2690 |
"interpret_floatarith (Sqrt a) vs = sqrt (interpret_floatarith a vs)" | |
|
73dd67adf90a
replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents:
30971
diff
changeset
|
2691 |
"interpret_floatarith (Exp a) vs = exp (interpret_floatarith a vs)" | |
|
73dd67adf90a
replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents:
30971
diff
changeset
|
2692 |
"interpret_floatarith (Ln a) vs = ln (interpret_floatarith a vs)" | |
|
73dd67adf90a
replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents:
30971
diff
changeset
|
2693 |
"interpret_floatarith (Power a n) vs = (interpret_floatarith a vs)^n" | |
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
2694 |
"interpret_floatarith (Num f) vs = f" | |
|
32919
37adfa07b54b
approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents:
32650
diff
changeset
|
2695 |
"interpret_floatarith (Var n) vs = vs ! n" |
| 29805 | 2696 |
|
| 60680 | 2697 |
lemma interpret_floatarith_divide: |
2698 |
"interpret_floatarith (Mult a (Inverse b)) vs = |
|
2699 |
(interpret_floatarith a vs) / (interpret_floatarith b vs)" |
|
|
36778
739a9379e29b
avoid using real-specific versions of generic lemmas
huffman
parents:
36531
diff
changeset
|
2700 |
unfolding divide_inverse interpret_floatarith.simps .. |
|
31811
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
2701 |
|
| 60680 | 2702 |
lemma interpret_floatarith_diff: |
2703 |
"interpret_floatarith (Add a (Minus b)) vs = |
|
2704 |
(interpret_floatarith a vs) - (interpret_floatarith b vs)" |
|
|
54230
b1d955791529
more simplification rules on unary and binary minus
haftmann
parents:
53077
diff
changeset
|
2705 |
unfolding interpret_floatarith.simps by simp |
|
31811
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
2706 |
|
| 60680 | 2707 |
lemma interpret_floatarith_sin: |
2708 |
"interpret_floatarith (Cos (Add (Mult Pi (Num (Float 1 (- 1)))) (Minus a))) vs = |
|
2709 |
sin (interpret_floatarith a vs)" |
|
|
31811
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
2710 |
unfolding sin_cos_eq interpret_floatarith.simps |
| 60680 | 2711 |
interpret_floatarith_divide interpret_floatarith_diff |
|
31811
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
2712 |
by auto |
|
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
2713 |
|
|
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
2714 |
lemma interpret_floatarith_tan: |
|
58410
6d46ad54a2ab
explicit separation of signed and unsigned numerals using existing lexical categories num and xnum
haftmann
parents:
58310
diff
changeset
|
2715 |
"interpret_floatarith (Mult (Cos (Add (Mult Pi (Num (Float 1 (- 1)))) (Minus a))) (Inverse (Cos a))) vs = |
| 60680 | 2716 |
tan (interpret_floatarith a vs)" |
|
36778
739a9379e29b
avoid using real-specific versions of generic lemmas
huffman
parents:
36531
diff
changeset
|
2717 |
unfolding interpret_floatarith.simps(3,4) interpret_floatarith_sin tan_def divide_inverse |
|
31811
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
2718 |
by auto |
|
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
2719 |
|
| 60680 | 2720 |
lemma interpret_floatarith_log: |
2721 |
"interpret_floatarith ((Mult (Ln x) (Inverse (Ln b)))) vs = |
|
2722 |
log (interpret_floatarith b vs) (interpret_floatarith x vs)" |
|
|
36778
739a9379e29b
avoid using real-specific versions of generic lemmas
huffman
parents:
36531
diff
changeset
|
2723 |
unfolding log_def interpret_floatarith.simps divide_inverse .. |
|
31811
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
2724 |
|
|
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
2725 |
lemma interpret_floatarith_num: |
|
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
2726 |
shows "interpret_floatarith (Num (Float 0 0)) vs = 0" |
| 60680 | 2727 |
and "interpret_floatarith (Num (Float 1 0)) vs = 1" |
2728 |
and "interpret_floatarith (Num (Float (- 1) 0)) vs = - 1" |
|
2729 |
and "interpret_floatarith (Num (Float (numeral a) 0)) vs = numeral a" |
|
2730 |
and "interpret_floatarith (Num (Float (- numeral a) 0)) vs = - numeral a" |
|
2731 |
by auto |
|
2732 |
||
|
31811
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
2733 |
|
| 29805 | 2734 |
subsection "Implement approximation function" |
2735 |
||
2736 |
fun lift_bin' :: "(float * float) option \<Rightarrow> (float * float) option \<Rightarrow> (float \<Rightarrow> float \<Rightarrow> float \<Rightarrow> float \<Rightarrow> (float * float)) \<Rightarrow> (float * float) option" where |
|
2737 |
"lift_bin' (Some (l1, u1)) (Some (l2, u2)) f = Some (f l1 u1 l2 u2)" | |
|
2738 |
"lift_bin' a b f = None" |
|
2739 |
||
2740 |
fun lift_un :: "(float * float) option \<Rightarrow> (float \<Rightarrow> float \<Rightarrow> ((float option) * (float option))) \<Rightarrow> (float * float) option" where |
|
2741 |
"lift_un (Some (l1, u1)) f = (case (f l1 u1) of (Some l, Some u) \<Rightarrow> Some (l, u) |
|
2742 |
| t \<Rightarrow> None)" | |
|
2743 |
"lift_un b f = None" |
|
2744 |
||
2745 |
fun lift_un' :: "(float * float) option \<Rightarrow> (float \<Rightarrow> float \<Rightarrow> (float * float)) \<Rightarrow> (float * float) option" where |
|
2746 |
"lift_un' (Some (l1, u1)) f = Some (f l1 u1)" | |
|
2747 |
"lift_un' b f = None" |
|
2748 |
||
| 60680 | 2749 |
definition "bounded_by xs vs \<longleftrightarrow> |
|
31811
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
2750 |
(\<forall> i < length vs. case vs ! i of None \<Rightarrow> True |
|
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
2751 |
| Some (l, u) \<Rightarrow> xs ! i \<in> { real l .. real u })"
|
|
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
2752 |
|
|
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
2753 |
lemma bounded_byE: |
|
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
2754 |
assumes "bounded_by xs vs" |
|
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
2755 |
shows "\<And> i. i < length vs \<Longrightarrow> case vs ! i of None \<Rightarrow> True |
|
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
2756 |
| Some (l, u) \<Rightarrow> xs ! i \<in> { real l .. real u }"
|
|
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
2757 |
using assms bounded_by_def by blast |
|
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
2758 |
|
|
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
2759 |
lemma bounded_by_update: |
|
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
2760 |
assumes "bounded_by xs vs" |
| 60680 | 2761 |
and bnd: "xs ! i \<in> { real l .. real u }"
|
|
31811
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
2762 |
shows "bounded_by xs (vs[i := Some (l,u)])" |
|
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
2763 |
proof - |
| 60680 | 2764 |
{
|
2765 |
fix j |
|
2766 |
let ?vs = "vs[i := Some (l,u)]" |
|
2767 |
assume "j < length ?vs" |
|
2768 |
hence [simp]: "j < length vs" by simp |
|
2769 |
have "case ?vs ! j of None \<Rightarrow> True | Some (l, u) \<Rightarrow> xs ! j \<in> { real l .. real u }"
|
|
2770 |
proof (cases "?vs ! j") |
|
2771 |
case (Some b) |
|
2772 |
thus ?thesis |
|
2773 |
proof (cases "i = j") |
|
2774 |
case True |
|
2775 |
thus ?thesis using \<open>?vs ! j = Some b\<close> and bnd by auto |
|
2776 |
next |
|
2777 |
case False |
|
2778 |
thus ?thesis using \<open>bounded_by xs vs\<close> unfolding bounded_by_def by auto |
|
2779 |
qed |
|
2780 |
qed auto |
|
2781 |
} |
|
|
31811
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
2782 |
thus ?thesis unfolding bounded_by_def by auto |
|
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
2783 |
qed |
|
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
2784 |
|
| 60680 | 2785 |
lemma bounded_by_None: "bounded_by xs (replicate (length xs) None)" |
|
31811
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
2786 |
unfolding bounded_by_def by auto |
|
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
2787 |
|
|
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
2788 |
fun approx approx' :: "nat \<Rightarrow> floatarith \<Rightarrow> (float * float) option list \<Rightarrow> (float * float) option" where |
|
47599
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
2789 |
"approx' prec a bs = (case (approx prec a bs) of Some (l, u) \<Rightarrow> Some (float_round_down prec l, float_round_up prec u) | None \<Rightarrow> None)" | |
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
2790 |
"approx prec (Add a b) bs = |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
2791 |
lift_bin' (approx' prec a bs) (approx' prec b bs) |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
2792 |
(\<lambda> l1 u1 l2 u2. (float_plus_down prec l1 l2, float_plus_up prec u1 u2))" | |
| 29805 | 2793 |
"approx prec (Minus a) bs = lift_un' (approx' prec a bs) (\<lambda> l u. (-u, -l))" | |
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
2794 |
"approx prec (Mult a b) bs = |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
2795 |
lift_bin' (approx' prec a bs) (approx' prec b bs) |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
2796 |
(\<lambda> a1 a2 b1 b2. |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
2797 |
(float_plus_down prec (nprt a1 * pprt b2) |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
2798 |
(float_plus_down prec (nprt a2 * nprt b2) |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
2799 |
(float_plus_down prec (pprt a1 * pprt b1) (pprt a2 * nprt b1))), |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
2800 |
float_plus_up prec (pprt a2 * pprt b2) |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
2801 |
(float_plus_up prec (pprt a1 * nprt b2) |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
2802 |
(float_plus_up prec (nprt a2 * pprt b1) (nprt a1 * nprt b1)))))" | |
| 29805 | 2803 |
"approx prec (Inverse a) bs = lift_un (approx' prec a bs) (\<lambda> l u. if (0 < l \<or> u < 0) then (Some (float_divl prec 1 u), Some (float_divr prec 1 l)) else (None, None))" | |
2804 |
"approx prec (Cos a) bs = lift_un' (approx' prec a bs) (bnds_cos prec)" | |
|
2805 |
"approx prec Pi bs = Some (lb_pi prec, ub_pi prec)" | |
|
2806 |
"approx prec (Min a b) bs = lift_bin' (approx' prec a bs) (approx' prec b bs) (\<lambda> l1 u1 l2 u2. (min l1 l2, min u1 u2))" | |
|
2807 |
"approx prec (Max a b) bs = lift_bin' (approx' prec a bs) (approx' prec b bs) (\<lambda> l1 u1 l2 u2. (max l1 l2, max u1 u2))" | |
|
2808 |
"approx prec (Abs a) bs = lift_un' (approx' prec a bs) (\<lambda>l u. (if l < 0 \<and> 0 < u then 0 else min \<bar>l\<bar> \<bar>u\<bar>, max \<bar>l\<bar> \<bar>u\<bar>))" | |
|
2809 |
"approx prec (Arctan a) bs = lift_un' (approx' prec a bs) (\<lambda> l u. (lb_arctan prec l, ub_arctan prec u))" | |
|
|
31467
f7d2aa438bee
Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents:
31148
diff
changeset
|
2810 |
"approx prec (Sqrt a) bs = lift_un' (approx' prec a bs) (\<lambda> l u. (lb_sqrt prec l, ub_sqrt prec u))" | |
| 29805 | 2811 |
"approx prec (Exp a) bs = lift_un' (approx' prec a bs) (\<lambda> l u. (lb_exp prec l, ub_exp prec u))" | |
2812 |
"approx prec (Ln a) bs = lift_un (approx' prec a bs) (\<lambda> l u. (lb_ln prec l, ub_ln prec u))" | |
|
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
2813 |
"approx prec (Power a n) bs = lift_un' (approx' prec a bs) (float_power_bnds prec n)" | |
| 29805 | 2814 |
"approx prec (Num f) bs = Some (f, f)" | |
|
32919
37adfa07b54b
approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents:
32650
diff
changeset
|
2815 |
"approx prec (Var i) bs = (if i < length bs then bs ! i else None)" |
| 29805 | 2816 |
|
2817 |
lemma lift_bin'_ex: |
|
2818 |
assumes lift_bin'_Some: "Some (l, u) = lift_bin' a b f" |
|
2819 |
shows "\<exists> l1 u1 l2 u2. Some (l1, u1) = a \<and> Some (l2, u2) = b" |
|
2820 |
proof (cases a) |
|
| 60680 | 2821 |
case None |
2822 |
hence "None = lift_bin' a b f" |
|
2823 |
unfolding None lift_bin'.simps .. |
|
2824 |
thus ?thesis |
|
2825 |
using lift_bin'_Some by auto |
|
| 29805 | 2826 |
next |
2827 |
case (Some a') |
|
2828 |
show ?thesis |
|
2829 |
proof (cases b) |
|
| 60680 | 2830 |
case None |
2831 |
hence "None = lift_bin' a b f" |
|
2832 |
unfolding None lift_bin'.simps .. |
|
| 29805 | 2833 |
thus ?thesis using lift_bin'_Some by auto |
2834 |
next |
|
2835 |
case (Some b') |
|
| 60680 | 2836 |
obtain la ua where a': "a' = (la, ua)" |
2837 |
by (cases a') auto |
|
2838 |
obtain lb ub where b': "b' = (lb, ub)" |
|
2839 |
by (cases b') auto |
|
2840 |
thus ?thesis |
|
2841 |
unfolding \<open>a = Some a'\<close> \<open>b = Some b'\<close> a' b' by auto |
|
| 29805 | 2842 |
qed |
2843 |
qed |
|
2844 |
||
2845 |
lemma lift_bin'_f: |
|
2846 |
assumes lift_bin'_Some: "Some (l, u) = lift_bin' (g a) (g b) f" |
|
| 60680 | 2847 |
and Pa: "\<And>l u. Some (l, u) = g a \<Longrightarrow> P l u a" |
2848 |
and Pb: "\<And>l u. Some (l, u) = g b \<Longrightarrow> P l u b" |
|
| 29805 | 2849 |
shows "\<exists> l1 u1 l2 u2. P l1 u1 a \<and> P l2 u2 b \<and> l = fst (f l1 u1 l2 u2) \<and> u = snd (f l1 u1 l2 u2)" |
2850 |
proof - |
|
2851 |
obtain l1 u1 l2 u2 |
|
| 60680 | 2852 |
where Sa: "Some (l1, u1) = g a" |
2853 |
and Sb: "Some (l2, u2) = g b" |
|
2854 |
using lift_bin'_ex[OF assms(1)] by auto |
|
2855 |
have lu: "(l, u) = f l1 u1 l2 u2" |
|
2856 |
using lift_bin'_Some[unfolded Sa[symmetric] Sb[symmetric] lift_bin'.simps] by auto |
|
2857 |
have "l = fst (f l1 u1 l2 u2)" and "u = snd (f l1 u1 l2 u2)" |
|
2858 |
unfolding lu[symmetric] by auto |
|
2859 |
thus ?thesis |
|
2860 |
using Pa[OF Sa] Pb[OF Sb] by auto |
|
| 29805 | 2861 |
qed |
2862 |
||
2863 |
lemma approx_approx': |
|
| 60680 | 2864 |
assumes Pa: "\<And>l u. Some (l, u) = approx prec a vs \<Longrightarrow> |
2865 |
l \<le> interpret_floatarith a xs \<and> interpret_floatarith a xs \<le> u" |
|
2866 |
and approx': "Some (l, u) = approx' prec a vs" |
|
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
2867 |
shows "l \<le> interpret_floatarith a xs \<and> interpret_floatarith a xs \<le> u" |
| 29805 | 2868 |
proof - |
2869 |
obtain l' u' where S: "Some (l', u') = approx prec a vs" |
|
| 60680 | 2870 |
using approx' unfolding approx'.simps by (cases "approx prec a vs") auto |
|
47599
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
2871 |
have l': "l = float_round_down prec l'" and u': "u = float_round_up prec u'" |
| 29805 | 2872 |
using approx' unfolding approx'.simps S[symmetric] by auto |
| 31809 | 2873 |
show ?thesis unfolding l' u' |
|
47599
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
2874 |
using order_trans[OF Pa[OF S, THEN conjunct2] float_round_up[of u']] |
|
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
2875 |
using order_trans[OF float_round_down[of _ l'] Pa[OF S, THEN conjunct1]] by auto |
| 29805 | 2876 |
qed |
2877 |
||
2878 |
lemma lift_bin': |
|
2879 |
assumes lift_bin'_Some: "Some (l, u) = lift_bin' (approx' prec a bs) (approx' prec b bs) f" |
|
| 60680 | 2880 |
and Pa: "\<And>l u. Some (l, u) = approx prec a bs \<Longrightarrow> |
2881 |
l \<le> interpret_floatarith a xs \<and> interpret_floatarith a xs \<le> u" (is "\<And>l u. _ = ?g a \<Longrightarrow> ?P l u a") |
|
2882 |
and Pb: "\<And>l u. Some (l, u) = approx prec b bs \<Longrightarrow> |
|
2883 |
l \<le> interpret_floatarith b xs \<and> interpret_floatarith b xs \<le> u" |
|
2884 |
shows "\<exists>l1 u1 l2 u2. (l1 \<le> interpret_floatarith a xs \<and> interpret_floatarith a xs \<le> u1) \<and> |
|
2885 |
(l2 \<le> interpret_floatarith b xs \<and> interpret_floatarith b xs \<le> u2) \<and> |
|
2886 |
l = fst (f l1 u1 l2 u2) \<and> u = snd (f l1 u1 l2 u2)" |
|
| 29805 | 2887 |
proof - |
2888 |
{ fix l u assume "Some (l, u) = approx' prec a bs"
|
|
2889 |
with approx_approx'[of prec a bs, OF _ this] Pa |
|
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
2890 |
have "l \<le> interpret_floatarith a xs \<and> interpret_floatarith a xs \<le> u" by auto } note Pa = this |
| 29805 | 2891 |
{ fix l u assume "Some (l, u) = approx' prec b bs"
|
2892 |
with approx_approx'[of prec b bs, OF _ this] Pb |
|
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
2893 |
have "l \<le> interpret_floatarith b xs \<and> interpret_floatarith b xs \<le> u" by auto } note Pb = this |
| 29805 | 2894 |
|
2895 |
from lift_bin'_f[where g="\<lambda>a. approx' prec a bs" and P = ?P, OF lift_bin'_Some, OF Pa Pb] |
|
2896 |
show ?thesis by auto |
|
2897 |
qed |
|
2898 |
||
2899 |
lemma lift_un'_ex: |
|
2900 |
assumes lift_un'_Some: "Some (l, u) = lift_un' a f" |
|
2901 |
shows "\<exists> l u. Some (l, u) = a" |
|
2902 |
proof (cases a) |
|
| 60680 | 2903 |
case None |
2904 |
hence "None = lift_un' a f" |
|
2905 |
unfolding None lift_un'.simps .. |
|
2906 |
thus ?thesis |
|
2907 |
using lift_un'_Some by auto |
|
| 29805 | 2908 |
next |
2909 |
case (Some a') |
|
| 60680 | 2910 |
obtain la ua where a': "a' = (la, ua)" |
2911 |
by (cases a') auto |
|
2912 |
thus ?thesis |
|
2913 |
unfolding \<open>a = Some a'\<close> a' by auto |
|
| 29805 | 2914 |
qed |
2915 |
||
2916 |
lemma lift_un'_f: |
|
2917 |
assumes lift_un'_Some: "Some (l, u) = lift_un' (g a) f" |
|
| 60680 | 2918 |
and Pa: "\<And>l u. Some (l, u) = g a \<Longrightarrow> P l u a" |
| 29805 | 2919 |
shows "\<exists> l1 u1. P l1 u1 a \<and> l = fst (f l1 u1) \<and> u = snd (f l1 u1)" |
2920 |
proof - |
|
| 60680 | 2921 |
obtain l1 u1 where Sa: "Some (l1, u1) = g a" |
2922 |
using lift_un'_ex[OF assms(1)] by auto |
|
2923 |
have lu: "(l, u) = f l1 u1" |
|
2924 |
using lift_un'_Some[unfolded Sa[symmetric] lift_un'.simps] by auto |
|
2925 |
have "l = fst (f l1 u1)" and "u = snd (f l1 u1)" |
|
2926 |
unfolding lu[symmetric] by auto |
|
2927 |
thus ?thesis |
|
2928 |
using Pa[OF Sa] by auto |
|
| 29805 | 2929 |
qed |
2930 |
||
2931 |
lemma lift_un': |
|
2932 |
assumes lift_un'_Some: "Some (l, u) = lift_un' (approx' prec a bs) f" |
|
| 60680 | 2933 |
and Pa: "\<And>l u. Some (l, u) = approx prec a bs \<Longrightarrow> |
2934 |
l \<le> interpret_floatarith a xs \<and> interpret_floatarith a xs \<le> u" |
|
2935 |
(is "\<And>l u. _ = ?g a \<Longrightarrow> ?P l u a") |
|
2936 |
shows "\<exists>l1 u1. (l1 \<le> interpret_floatarith a xs \<and> interpret_floatarith a xs \<le> u1) \<and> |
|
2937 |
l = fst (f l1 u1) \<and> u = snd (f l1 u1)" |
|
| 29805 | 2938 |
proof - |
| 60680 | 2939 |
have Pa: "l \<le> interpret_floatarith a xs \<and> interpret_floatarith a xs \<le> u" |
2940 |
if "Some (l, u) = approx' prec a bs" for l u |
|
2941 |
using approx_approx'[of prec a bs, OF _ that] Pa |
|
2942 |
by auto |
|
| 29805 | 2943 |
from lift_un'_f[where g="\<lambda>a. approx' prec a bs" and P = ?P, OF lift_un'_Some, OF Pa] |
2944 |
show ?thesis by auto |
|
2945 |
qed |
|
2946 |
||
2947 |
lemma lift_un'_bnds: |
|
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
2948 |
assumes bnds: "\<forall> (x::real) lx ux. (l, u) = f lx ux \<and> x \<in> { lx .. ux } \<longrightarrow> l \<le> f' x \<and> f' x \<le> u"
|
| 60680 | 2949 |
and lift_un'_Some: "Some (l, u) = lift_un' (approx' prec a bs) f" |
2950 |
and Pa: "\<And>l u. Some (l, u) = approx prec a bs \<Longrightarrow> |
|
2951 |
l \<le> interpret_floatarith a xs \<and> interpret_floatarith a xs \<le> u" |
|
|
31098
73dd67adf90a
replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents:
30971
diff
changeset
|
2952 |
shows "real l \<le> f' (interpret_floatarith a xs) \<and> f' (interpret_floatarith a xs) \<le> real u" |
| 29805 | 2953 |
proof - |
2954 |
from lift_un'[OF lift_un'_Some Pa] |
|
| 60680 | 2955 |
obtain l1 u1 where "l1 \<le> interpret_floatarith a xs" |
2956 |
and "interpret_floatarith a xs \<le> u1" |
|
2957 |
and "l = fst (f l1 u1)" |
|
2958 |
and "u = snd (f l1 u1)" |
|
2959 |
by blast |
|
2960 |
hence "(l, u) = f l1 u1" and "interpret_floatarith a xs \<in> {l1 .. u1}"
|
|
2961 |
by auto |
|
2962 |
thus ?thesis |
|
2963 |
using bnds by auto |
|
| 29805 | 2964 |
qed |
2965 |
||
2966 |
lemma lift_un_ex: |
|
2967 |
assumes lift_un_Some: "Some (l, u) = lift_un a f" |
|
| 60680 | 2968 |
shows "\<exists>l u. Some (l, u) = a" |
| 29805 | 2969 |
proof (cases a) |
| 60680 | 2970 |
case None |
2971 |
hence "None = lift_un a f" |
|
2972 |
unfolding None lift_un.simps .. |
|
2973 |
thus ?thesis |
|
2974 |
using lift_un_Some by auto |
|
| 29805 | 2975 |
next |
2976 |
case (Some a') |
|
| 60680 | 2977 |
obtain la ua where a': "a' = (la, ua)" |
2978 |
by (cases a') auto |
|
2979 |
thus ?thesis |
|
2980 |
unfolding \<open>a = Some a'\<close> a' by auto |
|
| 29805 | 2981 |
qed |
2982 |
||
2983 |
lemma lift_un_f: |
|
2984 |
assumes lift_un_Some: "Some (l, u) = lift_un (g a) f" |
|
| 60680 | 2985 |
and Pa: "\<And>l u. Some (l, u) = g a \<Longrightarrow> P l u a" |
| 29805 | 2986 |
shows "\<exists> l1 u1. P l1 u1 a \<and> Some l = fst (f l1 u1) \<and> Some u = snd (f l1 u1)" |
2987 |
proof - |
|
| 60680 | 2988 |
obtain l1 u1 where Sa: "Some (l1, u1) = g a" |
2989 |
using lift_un_ex[OF assms(1)] by auto |
|
| 29805 | 2990 |
have "fst (f l1 u1) \<noteq> None \<and> snd (f l1 u1) \<noteq> None" |
2991 |
proof (rule ccontr) |
|
2992 |
assume "\<not> (fst (f l1 u1) \<noteq> None \<and> snd (f l1 u1) \<noteq> None)" |
|
2993 |
hence or: "fst (f l1 u1) = None \<or> snd (f l1 u1) = None" by auto |
|
| 31809 | 2994 |
hence "lift_un (g a) f = None" |
| 29805 | 2995 |
proof (cases "fst (f l1 u1) = None") |
2996 |
case True |
|
| 60680 | 2997 |
then obtain b where b: "f l1 u1 = (None, b)" |
2998 |
by (cases "f l1 u1") auto |
|
2999 |
thus ?thesis |
|
3000 |
unfolding Sa[symmetric] lift_un.simps b by auto |
|
| 29805 | 3001 |
next |
| 60680 | 3002 |
case False |
3003 |
hence "snd (f l1 u1) = None" |
|
3004 |
using or by auto |
|
3005 |
with False obtain b where b: "f l1 u1 = (Some b, None)" |
|
3006 |
by (cases "f l1 u1") auto |
|
3007 |
thus ?thesis |
|
3008 |
unfolding Sa[symmetric] lift_un.simps b by auto |
|
| 29805 | 3009 |
qed |
| 60680 | 3010 |
thus False |
3011 |
using lift_un_Some by auto |
|
| 29805 | 3012 |
qed |
| 60680 | 3013 |
then obtain a' b' where f: "f l1 u1 = (Some a', Some b')" |
3014 |
by (cases "f l1 u1") auto |
|
| 29805 | 3015 |
from lift_un_Some[unfolded Sa[symmetric] lift_un.simps f] |
| 60680 | 3016 |
have "Some l = fst (f l1 u1)" and "Some u = snd (f l1 u1)" |
3017 |
unfolding f by auto |
|
3018 |
thus ?thesis |
|
3019 |
unfolding Sa[symmetric] lift_un.simps using Pa[OF Sa] by auto |
|
| 29805 | 3020 |
qed |
3021 |
||
3022 |
lemma lift_un: |
|
3023 |
assumes lift_un_Some: "Some (l, u) = lift_un (approx' prec a bs) f" |
|
| 60680 | 3024 |
and Pa: "\<And>l u. Some (l, u) = approx prec a bs \<Longrightarrow> |
3025 |
l \<le> interpret_floatarith a xs \<and> interpret_floatarith a xs \<le> u" |
|
3026 |
(is "\<And>l u. _ = ?g a \<Longrightarrow> ?P l u a") |
|
3027 |
shows "\<exists>l1 u1. (l1 \<le> interpret_floatarith a xs \<and> interpret_floatarith a xs \<le> u1) \<and> |
|
| 29805 | 3028 |
Some l = fst (f l1 u1) \<and> Some u = snd (f l1 u1)" |
3029 |
proof - |
|
| 60680 | 3030 |
have Pa: "l \<le> interpret_floatarith a xs \<and> interpret_floatarith a xs \<le> u" |
3031 |
if "Some (l, u) = approx' prec a bs" for l u |
|
3032 |
using approx_approx'[of prec a bs, OF _ that] Pa by auto |
|
| 29805 | 3033 |
from lift_un_f[where g="\<lambda>a. approx' prec a bs" and P = ?P, OF lift_un_Some, OF Pa] |
3034 |
show ?thesis by auto |
|
3035 |
qed |
|
3036 |
||
3037 |
lemma lift_un_bnds: |
|
| 60680 | 3038 |
assumes bnds: "\<forall>(x::real) lx ux. (Some l, Some u) = f lx ux \<and> x \<in> { lx .. ux } \<longrightarrow> l \<le> f' x \<and> f' x \<le> u"
|
3039 |
and lift_un_Some: "Some (l, u) = lift_un (approx' prec a bs) f" |
|
3040 |
and Pa: "\<And>l u. Some (l, u) = approx prec a bs \<Longrightarrow> |
|
3041 |
l \<le> interpret_floatarith a xs \<and> interpret_floatarith a xs \<le> u" |
|
|
31098
73dd67adf90a
replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents:
30971
diff
changeset
|
3042 |
shows "real l \<le> f' (interpret_floatarith a xs) \<and> f' (interpret_floatarith a xs) \<le> real u" |
| 29805 | 3043 |
proof - |
3044 |
from lift_un[OF lift_un_Some Pa] |
|
| 60680 | 3045 |
obtain l1 u1 where "l1 \<le> interpret_floatarith a xs" |
3046 |
and "interpret_floatarith a xs \<le> u1" |
|
3047 |
and "Some l = fst (f l1 u1)" |
|
3048 |
and "Some u = snd (f l1 u1)" |
|
3049 |
by blast |
|
3050 |
hence "(Some l, Some u) = f l1 u1" and "interpret_floatarith a xs \<in> {l1 .. u1}"
|
|
3051 |
by auto |
|
3052 |
thus ?thesis |
|
3053 |
using bnds by auto |
|
| 29805 | 3054 |
qed |
3055 |
||
3056 |
lemma approx: |
|
3057 |
assumes "bounded_by xs vs" |
|
| 60680 | 3058 |
and "Some (l, u) = approx prec arith vs" (is "_ = ?g arith") |
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
3059 |
shows "l \<le> interpret_floatarith arith xs \<and> interpret_floatarith arith xs \<le> u" (is "?P l u arith") |
| 60533 | 3060 |
using \<open>Some (l, u) = approx prec arith vs\<close> |
|
45129
1fce03e3e8ad
tuned proofs -- eliminated vacuous "induct arbitrary: ..." situations;
wenzelm
parents:
44821
diff
changeset
|
3061 |
proof (induct arith arbitrary: l u) |
| 29805 | 3062 |
case (Add a b) |
3063 |
from lift_bin'[OF Add.prems[unfolded approx.simps]] Add.hyps |
|
| 60680 | 3064 |
obtain l1 u1 l2 u2 where "l = float_plus_down prec l1 l2" |
3065 |
and "u = float_plus_up prec u1 u2" "l1 \<le> interpret_floatarith a xs" |
|
3066 |
and "interpret_floatarith a xs \<le> u1" "l2 \<le> interpret_floatarith b xs" |
|
3067 |
and "interpret_floatarith b xs \<le> u2" |
|
3068 |
unfolding fst_conv snd_conv by blast |
|
3069 |
thus ?case |
|
3070 |
unfolding interpret_floatarith.simps by (auto intro!: float_plus_up_le float_plus_down_le) |
|
| 29805 | 3071 |
next |
3072 |
case (Minus a) |
|
3073 |
from lift_un'[OF Minus.prems[unfolded approx.simps]] Minus.hyps |
|
| 60680 | 3074 |
obtain l1 u1 where "l = -u1" "u = -l1" |
3075 |
and "l1 \<le> interpret_floatarith a xs" "interpret_floatarith a xs \<le> u1" |
|
3076 |
unfolding fst_conv snd_conv by blast |
|
3077 |
thus ?case |
|
3078 |
unfolding interpret_floatarith.simps using minus_float.rep_eq by auto |
|
| 29805 | 3079 |
next |
3080 |
case (Mult a b) |
|
3081 |
from lift_bin'[OF Mult.prems[unfolded approx.simps]] Mult.hyps |
|
| 31809 | 3082 |
obtain l1 u1 l2 u2 |
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
3083 |
where l: "l = float_plus_down prec (nprt l1 * pprt u2) (float_plus_down prec (nprt u1 * nprt u2) (float_plus_down prec (pprt l1 * pprt l2) (pprt u1 * nprt l2)))" |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
3084 |
and u: "u = float_plus_up prec (pprt u1 * pprt u2) (float_plus_up prec (pprt l1 * nprt u2) (float_plus_up prec (nprt u1 * pprt l2) (nprt l1 * nprt l2)))" |
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
3085 |
and "l1 \<le> interpret_floatarith a xs" and "interpret_floatarith a xs \<le> u1" |
|
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
3086 |
and "l2 \<le> interpret_floatarith b xs" and "interpret_floatarith b xs \<le> u2" unfolding fst_conv snd_conv by blast |
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
3087 |
hence bnds: |
| 60680 | 3088 |
"nprt l1 * pprt u2 + nprt u1 * nprt u2 + pprt l1 * pprt l2 + pprt u1 * nprt l2 \<le> |
3089 |
interpret_floatarith (Mult a b) xs" (is "?l \<le> _") |
|
3090 |
"interpret_floatarith (Mult a b) xs \<le> |
|
3091 |
pprt u1 * pprt u2 + pprt l1 * nprt u2 + nprt u1 * pprt l2 + nprt l1 * nprt l2" (is "_ \<le> ?u") |
|
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
3092 |
unfolding interpret_floatarith.simps l u |
| 29805 | 3093 |
using mult_le_prts mult_ge_prts by auto |
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
3094 |
from l u have "l \<le> ?l" "?u \<le> u" |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
3095 |
by (auto intro!: float_plus_up_le float_plus_down_le) |
| 60680 | 3096 |
thus ?case |
3097 |
using bnds by simp |
|
| 29805 | 3098 |
next |
3099 |
case (Inverse a) |
|
3100 |
from lift_un[OF Inverse.prems[unfolded approx.simps], unfolded if_distrib[of fst] if_distrib[of snd] fst_conv snd_conv] Inverse.hyps |
|
| 31809 | 3101 |
obtain l1 u1 where l': "Some l = (if 0 < l1 \<or> u1 < 0 then Some (float_divl prec 1 u1) else None)" |
| 29805 | 3102 |
and u': "Some u = (if 0 < l1 \<or> u1 < 0 then Some (float_divr prec 1 l1) else None)" |
| 60680 | 3103 |
and l1: "l1 \<le> interpret_floatarith a xs" |
3104 |
and u1: "interpret_floatarith a xs \<le> u1" |
|
3105 |
by blast |
|
3106 |
have either: "0 < l1 \<or> u1 < 0" |
|
3107 |
proof (rule ccontr) |
|
3108 |
assume P: "\<not> (0 < l1 \<or> u1 < 0)" |
|
3109 |
show False |
|
3110 |
using l' unfolding if_not_P[OF P] by auto |
|
3111 |
qed |
|
3112 |
moreover have l1_le_u1: "real l1 \<le> real u1" |
|
3113 |
using l1 u1 by auto |
|
3114 |
ultimately have "real l1 \<noteq> 0" and "real u1 \<noteq> 0" |
|
3115 |
by auto |
|
| 29805 | 3116 |
|
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
3117 |
have inv: "inverse u1 \<le> inverse (interpret_floatarith a xs) |
|
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
3118 |
\<and> inverse (interpret_floatarith a xs) \<le> inverse l1" |
| 29805 | 3119 |
proof (cases "0 < l1") |
| 60680 | 3120 |
case True |
3121 |
hence "0 < real u1" and "0 < real l1" "0 < interpret_floatarith a xs" |
|
| 47600 | 3122 |
using l1_le_u1 l1 by auto |
| 29805 | 3123 |
show ?thesis |
| 60533 | 3124 |
unfolding inverse_le_iff_le[OF \<open>0 < real u1\<close> \<open>0 < interpret_floatarith a xs\<close>] |
3125 |
inverse_le_iff_le[OF \<open>0 < interpret_floatarith a xs\<close> \<open>0 < real l1\<close>] |
|
| 29805 | 3126 |
using l1 u1 by auto |
3127 |
next |
|
| 60680 | 3128 |
case False |
3129 |
hence "u1 < 0" |
|
3130 |
using either by blast |
|
| 31809 | 3131 |
hence "real u1 < 0" and "real l1 < 0" "interpret_floatarith a xs < 0" |
| 47600 | 3132 |
using l1_le_u1 u1 by auto |
| 29805 | 3133 |
show ?thesis |
| 60533 | 3134 |
unfolding inverse_le_iff_le_neg[OF \<open>real u1 < 0\<close> \<open>interpret_floatarith a xs < 0\<close>] |
3135 |
inverse_le_iff_le_neg[OF \<open>interpret_floatarith a xs < 0\<close> \<open>real l1 < 0\<close>] |
|
| 29805 | 3136 |
using l1 u1 by auto |
3137 |
qed |
|
|
31468
b8267feaf342
Approximation: Corrected precision of ln on all real values
hoelzl
parents:
31467
diff
changeset
|
3138 |
|
| 60680 | 3139 |
from l' have "l = float_divl prec 1 u1" |
3140 |
by (cases "0 < l1 \<or> u1 < 0") auto |
|
3141 |
hence "l \<le> inverse u1" |
|
3142 |
unfolding nonzero_inverse_eq_divide[OF \<open>real u1 \<noteq> 0\<close>] |
|
3143 |
using float_divl[of prec 1 u1] by auto |
|
3144 |
also have "\<dots> \<le> inverse (interpret_floatarith a xs)" |
|
3145 |
using inv by auto |
|
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
3146 |
finally have "l \<le> inverse (interpret_floatarith a xs)" . |
| 29805 | 3147 |
moreover |
| 60680 | 3148 |
from u' have "u = float_divr prec 1 l1" |
3149 |
by (cases "0 < l1 \<or> u1 < 0") auto |
|
3150 |
hence "inverse l1 \<le> u" |
|
3151 |
unfolding nonzero_inverse_eq_divide[OF \<open>real l1 \<noteq> 0\<close>] |
|
3152 |
using float_divr[of 1 l1 prec] by auto |
|
3153 |
hence "inverse (interpret_floatarith a xs) \<le> u" |
|
3154 |
by (rule order_trans[OF inv[THEN conjunct2]]) |
|
3155 |
ultimately show ?case |
|
3156 |
unfolding interpret_floatarith.simps using l1 u1 by auto |
|
| 29805 | 3157 |
next |
3158 |
case (Abs x) |
|
3159 |
from lift_un'[OF Abs.prems[unfolded approx.simps], unfolded fst_conv snd_conv] Abs.hyps |
|
| 60680 | 3160 |
obtain l1 u1 where l': "l = (if l1 < 0 \<and> 0 < u1 then 0 else min \<bar>l1\<bar> \<bar>u1\<bar>)" |
3161 |
and u': "u = max \<bar>l1\<bar> \<bar>u1\<bar>" |
|
3162 |
and l1: "l1 \<le> interpret_floatarith x xs" |
|
3163 |
and u1: "interpret_floatarith x xs \<le> u1" |
|
3164 |
by blast |
|
3165 |
thus ?case |
|
3166 |
unfolding l' u' |
|
3167 |
by (cases "l1 < 0 \<and> 0 < u1") (auto simp add: real_of_float_min real_of_float_max) |
|
| 29805 | 3168 |
next |
3169 |
case (Min a b) |
|
3170 |
from lift_bin'[OF Min.prems[unfolded approx.simps], unfolded fst_conv snd_conv] Min.hyps |
|
3171 |
obtain l1 u1 l2 u2 where l': "l = min l1 l2" and u': "u = min u1 u2" |
|
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
3172 |
and l1: "l1 \<le> interpret_floatarith a xs" and u1: "interpret_floatarith a xs \<le> u1" |
| 60680 | 3173 |
and l1: "l2 \<le> interpret_floatarith b xs" and u1: "interpret_floatarith b xs \<le> u2" |
3174 |
by blast |
|
3175 |
thus ?case |
|
3176 |
unfolding l' u' by (auto simp add: real_of_float_min) |
|
| 29805 | 3177 |
next |
3178 |
case (Max a b) |
|
3179 |
from lift_bin'[OF Max.prems[unfolded approx.simps], unfolded fst_conv snd_conv] Max.hyps |
|
3180 |
obtain l1 u1 l2 u2 where l': "l = max l1 l2" and u': "u = max u1 u2" |
|
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
3181 |
and l1: "l1 \<le> interpret_floatarith a xs" and u1: "interpret_floatarith a xs \<le> u1" |
| 60680 | 3182 |
and l1: "l2 \<le> interpret_floatarith b xs" and u1: "interpret_floatarith b xs \<le> u2" |
3183 |
by blast |
|
3184 |
thus ?case |
|
3185 |
unfolding l' u' by (auto simp add: real_of_float_max) |
|
3186 |
next |
|
3187 |
case (Cos a) |
|
3188 |
with lift_un'_bnds[OF bnds_cos] show ?case by auto |
|
3189 |
next |
|
3190 |
case (Arctan a) |
|
3191 |
with lift_un'_bnds[OF bnds_arctan] show ?case by auto |
|
3192 |
next |
|
3193 |
case Pi |
|
3194 |
with pi_boundaries show ?case by auto |
|
3195 |
next |
|
3196 |
case (Sqrt a) |
|
3197 |
with lift_un'_bnds[OF bnds_sqrt] show ?case by auto |
|
3198 |
next |
|
3199 |
case (Exp a) |
|
3200 |
with lift_un'_bnds[OF bnds_exp] show ?case by auto |
|
3201 |
next |
|
3202 |
case (Ln a) |
|
3203 |
with lift_un_bnds[OF bnds_ln] show ?case by auto |
|
3204 |
next |
|
3205 |
case (Power a n) |
|
3206 |
with lift_un'_bnds[OF bnds_power] show ?case by auto |
|
3207 |
next |
|
3208 |
case (Num f) |
|
3209 |
thus ?case by auto |
|
| 29805 | 3210 |
next |
|
32919
37adfa07b54b
approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents:
32650
diff
changeset
|
3211 |
case (Var n) |
| 60533 | 3212 |
from this[symmetric] \<open>bounded_by xs vs\<close>[THEN bounded_byE, of n] |
| 60680 | 3213 |
show ?case by (cases "n < length vs") auto |
|
31811
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
3214 |
qed |
|
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
3215 |
|
| 58310 | 3216 |
datatype form = Bound floatarith floatarith floatarith form |
|
31811
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
3217 |
| Assign floatarith floatarith form |
|
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
3218 |
| Less floatarith floatarith |
|
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
3219 |
| LessEqual floatarith floatarith |
|
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
3220 |
| AtLeastAtMost floatarith floatarith floatarith |
| 58986 | 3221 |
| Conj form form |
3222 |
| Disj form form |
|
|
31811
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
3223 |
|
|
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
3224 |
fun interpret_form :: "form \<Rightarrow> real list \<Rightarrow> bool" where |
|
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
3225 |
"interpret_form (Bound x a b f) vs = (interpret_floatarith x vs \<in> { interpret_floatarith a vs .. interpret_floatarith b vs } \<longrightarrow> interpret_form f vs)" |
|
|
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
3226 |
"interpret_form (Assign x a f) vs = (interpret_floatarith x vs = interpret_floatarith a vs \<longrightarrow> interpret_form f vs)" | |
|
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
3227 |
"interpret_form (Less a b) vs = (interpret_floatarith a vs < interpret_floatarith b vs)" | |
|
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
3228 |
"interpret_form (LessEqual a b) vs = (interpret_floatarith a vs \<le> interpret_floatarith b vs)" | |
| 58986 | 3229 |
"interpret_form (AtLeastAtMost x a b) vs = (interpret_floatarith x vs \<in> { interpret_floatarith a vs .. interpret_floatarith b vs })" |
|
3230 |
"interpret_form (Conj f g) vs \<longleftrightarrow> interpret_form f vs \<and> interpret_form g vs" | |
|
3231 |
"interpret_form (Disj f g) vs \<longleftrightarrow> interpret_form f vs \<or> interpret_form g vs" |
|
|
31811
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
3232 |
|
|
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
3233 |
fun approx_form' and approx_form :: "nat \<Rightarrow> form \<Rightarrow> (float * float) option list \<Rightarrow> nat list \<Rightarrow> bool" where |
|
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
3234 |
"approx_form' prec f 0 n l u bs ss = approx_form prec f (bs[n := Some (l, u)]) ss" | |
|
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
3235 |
"approx_form' prec f (Suc s) n l u bs ss = |
|
58410
6d46ad54a2ab
explicit separation of signed and unsigned numerals using existing lexical categories num and xnum
haftmann
parents:
58310
diff
changeset
|
3236 |
(let m = (l + u) * Float 1 (- 1) |
|
32919
37adfa07b54b
approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents:
32650
diff
changeset
|
3237 |
in (if approx_form' prec f s n l m bs ss then approx_form' prec f s n m u bs ss else False))" | |
|
37adfa07b54b
approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents:
32650
diff
changeset
|
3238 |
"approx_form prec (Bound (Var n) a b f) bs ss = |
|
31811
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
3239 |
(case (approx prec a bs, approx prec b bs) |
|
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
3240 |
of (Some (l, _), Some (_, u)) \<Rightarrow> approx_form' prec f (ss ! n) n l u bs ss |
|
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
3241 |
| _ \<Rightarrow> False)" | |
|
32919
37adfa07b54b
approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents:
32650
diff
changeset
|
3242 |
"approx_form prec (Assign (Var n) a f) bs ss = |
|
31811
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
3243 |
(case (approx prec a bs) |
|
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
3244 |
of (Some (l, u)) \<Rightarrow> approx_form' prec f (ss ! n) n l u bs ss |
|
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
3245 |
| _ \<Rightarrow> False)" | |
|
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
3246 |
"approx_form prec (Less a b) bs ss = |
|
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
3247 |
(case (approx prec a bs, approx prec b bs) |
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
3248 |
of (Some (l, u), Some (l', u')) \<Rightarrow> float_plus_up prec u (-l') < 0 |
|
31811
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
3249 |
| _ \<Rightarrow> False)" | |
|
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
3250 |
"approx_form prec (LessEqual a b) bs ss = |
|
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
3251 |
(case (approx prec a bs, approx prec b bs) |
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
3252 |
of (Some (l, u), Some (l', u')) \<Rightarrow> float_plus_up prec u (-l') \<le> 0 |
|
31811
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
3253 |
| _ \<Rightarrow> False)" | |
|
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
3254 |
"approx_form prec (AtLeastAtMost x a b) bs ss = |
|
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
3255 |
(case (approx prec x bs, approx prec a bs, approx prec b bs) |
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
3256 |
of (Some (lx, ux), Some (l, u), Some (l', u')) \<Rightarrow> float_plus_up prec u (-lx) \<le> 0 \<and> float_plus_up prec ux (-l') \<le> 0 |
|
31811
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
3257 |
| _ \<Rightarrow> False)" | |
| 58986 | 3258 |
"approx_form prec (Conj a b) bs ss \<longleftrightarrow> approx_form prec a bs ss \<and> approx_form prec b bs ss" | |
3259 |
"approx_form prec (Disj a b) bs ss \<longleftrightarrow> approx_form prec a bs ss \<or> approx_form prec b bs ss" | |
|
|
31811
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
3260 |
"approx_form _ _ _ _ = False" |
|
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
3261 |
|
|
32919
37adfa07b54b
approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents:
32650
diff
changeset
|
3262 |
lemma lazy_conj: "(if A then B else False) = (A \<and> B)" by simp |
|
37adfa07b54b
approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents:
32650
diff
changeset
|
3263 |
|
|
31811
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
3264 |
lemma approx_form_approx_form': |
| 60680 | 3265 |
assumes "approx_form' prec f s n l u bs ss" |
3266 |
and "(x::real) \<in> { l .. u }"
|
|
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
3267 |
obtains l' u' where "x \<in> { l' .. u' }"
|
| 49351 | 3268 |
and "approx_form prec f (bs[n := Some (l', u')]) ss" |
|
31811
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
3269 |
using assms proof (induct s arbitrary: l u) |
|
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
3270 |
case 0 |
|
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
3271 |
from this(1)[of l u] this(2,3) |
|
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
3272 |
show thesis by auto |
|
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
3273 |
next |
|
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
3274 |
case (Suc s) |
|
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
3275 |
|
|
58410
6d46ad54a2ab
explicit separation of signed and unsigned numerals using existing lexical categories num and xnum
haftmann
parents:
58310
diff
changeset
|
3276 |
let ?m = "(l + u) * Float 1 (- 1)" |
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
3277 |
have "real l \<le> ?m" and "?m \<le> real u" |
|
47599
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
3278 |
unfolding less_eq_float_def using Suc.prems by auto |
|
31811
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
3279 |
|
| 60533 | 3280 |
with \<open>x \<in> { l .. u }\<close>
|
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
3281 |
have "x \<in> { l .. ?m} \<or> x \<in> { ?m .. u }" by auto
|
|
31811
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
3282 |
thus thesis |
|
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
3283 |
proof (rule disjE) |
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
3284 |
assume *: "x \<in> { l .. ?m }"
|
|
31811
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
3285 |
with Suc.hyps[OF _ _ *] Suc.prems |
|
32919
37adfa07b54b
approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents:
32650
diff
changeset
|
3286 |
show thesis by (simp add: Let_def lazy_conj) |
| 29805 | 3287 |
next |
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
3288 |
assume *: "x \<in> { ?m .. u }"
|
|
31811
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
3289 |
with Suc.hyps[OF _ _ *] Suc.prems |
|
32919
37adfa07b54b
approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents:
32650
diff
changeset
|
3290 |
show thesis by (simp add: Let_def lazy_conj) |
| 29805 | 3291 |
qed |
3292 |
qed |
|
3293 |
||
|
31811
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
3294 |
lemma approx_form_aux: |
|
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
3295 |
assumes "approx_form prec f vs ss" |
| 49351 | 3296 |
and "bounded_by xs vs" |
|
31811
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
3297 |
shows "interpret_form f xs" |
|
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
3298 |
using assms proof (induct f arbitrary: vs) |
|
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
3299 |
case (Bound x a b f) |
|
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
3300 |
then obtain n |
|
32919
37adfa07b54b
approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents:
32650
diff
changeset
|
3301 |
where x_eq: "x = Var n" by (cases x) auto |
|
31811
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
3302 |
|
|
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
3303 |
with Bound.prems obtain l u' l' u |
|
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
3304 |
where l_eq: "Some (l, u') = approx prec a vs" |
|
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
3305 |
and u_eq: "Some (l', u) = approx prec b vs" |
|
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
3306 |
and approx_form': "approx_form' prec f (ss ! n) n l u vs ss" |
|
37411
c88c44156083
removed simplifier congruence rule of "prod_case"
haftmann
parents:
37391
diff
changeset
|
3307 |
by (cases "approx prec a vs", simp) (cases "approx prec b vs", auto) |
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
3308 |
|
| 60680 | 3309 |
have "interpret_form f xs" |
3310 |
if "xs ! n \<in> { interpret_floatarith a xs .. interpret_floatarith b xs }"
|
|
3311 |
proof - |
|
3312 |
from approx[OF Bound.prems(2) l_eq] and approx[OF Bound.prems(2) u_eq] that |
|
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
3313 |
have "xs ! n \<in> { l .. u}" by auto
|
|
31811
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
3314 |
|
|
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
3315 |
from approx_form_approx_form'[OF approx_form' this] |
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
3316 |
obtain lx ux where bnds: "xs ! n \<in> { lx .. ux }"
|
|
31811
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
3317 |
and approx_form: "approx_form prec f (vs[n := Some (lx, ux)]) ss" . |
|
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
3318 |
|
| 60680 | 3319 |
from \<open>bounded_by xs vs\<close> bnds have "bounded_by xs (vs[n := Some (lx, ux)])" |
3320 |
by (rule bounded_by_update) |
|
3321 |
with Bound.hyps[OF approx_form] show ?thesis |
|
3322 |
by blast |
|
3323 |
qed |
|
3324 |
thus ?case |
|
3325 |
using interpret_form.simps x_eq and interpret_floatarith.simps by simp |
|
|
31811
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
3326 |
next |
|
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
3327 |
case (Assign x a f) |
| 60680 | 3328 |
then obtain n where x_eq: "x = Var n" |
3329 |
by (cases x) auto |
|
|
31811
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
3330 |
|
|
47599
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
3331 |
with Assign.prems obtain l u |
|
31811
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
3332 |
where bnd_eq: "Some (l, u) = approx prec a vs" |
|
32919
37adfa07b54b
approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents:
32650
diff
changeset
|
3333 |
and x_eq: "x = Var n" |
|
31811
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
3334 |
and approx_form': "approx_form' prec f (ss ! n) n l u vs ss" |
|
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
3335 |
by (cases "approx prec a vs") auto |
|
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
3336 |
|
| 60680 | 3337 |
have "interpret_form f xs" |
3338 |
if bnds: "xs ! n = interpret_floatarith a xs" |
|
3339 |
proof - |
|
3340 |
from approx[OF Assign.prems(2) bnd_eq] bnds |
|
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
3341 |
have "xs ! n \<in> { l .. u}" by auto
|
|
31811
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
3342 |
from approx_form_approx_form'[OF approx_form' this] |
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
3343 |
obtain lx ux where bnds: "xs ! n \<in> { lx .. ux }"
|
|
31811
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
3344 |
and approx_form: "approx_form prec f (vs[n := Some (lx, ux)]) ss" . |
|
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
3345 |
|
| 60680 | 3346 |
from \<open>bounded_by xs vs\<close> bnds have "bounded_by xs (vs[n := Some (lx, ux)])" |
3347 |
by (rule bounded_by_update) |
|
3348 |
with Assign.hyps[OF approx_form] show ?thesis |
|
3349 |
by blast |
|
3350 |
qed |
|
3351 |
thus ?case |
|
3352 |
using interpret_form.simps x_eq and interpret_floatarith.simps by simp |
|
|
31811
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
3353 |
next |
| 29805 | 3354 |
case (Less a b) |
|
31811
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
3355 |
then obtain l u l' u' |
|
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
3356 |
where l_eq: "Some (l, u) = approx prec a vs" |
| 49351 | 3357 |
and u_eq: "Some (l', u') = approx prec b vs" |
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
3358 |
and inequality: "real (float_plus_up prec u (-l')) < 0" |
| 60680 | 3359 |
by (cases "approx prec a vs", auto, cases "approx prec b vs", auto) |
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
3360 |
from le_less_trans[OF float_plus_up inequality] |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
3361 |
approx[OF Less.prems(2) l_eq] approx[OF Less.prems(2) u_eq] |
|
31811
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
3362 |
show ?case by auto |
| 29805 | 3363 |
next |
3364 |
case (LessEqual a b) |
|
|
31811
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
3365 |
then obtain l u l' u' |
|
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
3366 |
where l_eq: "Some (l, u) = approx prec a vs" |
| 49351 | 3367 |
and u_eq: "Some (l', u') = approx prec b vs" |
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
3368 |
and inequality: "real (float_plus_up prec u (-l')) \<le> 0" |
| 60680 | 3369 |
by (cases "approx prec a vs", auto, cases "approx prec b vs", auto) |
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
3370 |
from order_trans[OF float_plus_up inequality] |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
3371 |
approx[OF LessEqual.prems(2) l_eq] approx[OF LessEqual.prems(2) u_eq] |
|
31811
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
3372 |
show ?case by auto |
|
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
3373 |
next |
|
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
3374 |
case (AtLeastAtMost x a b) |
|
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
3375 |
then obtain lx ux l u l' u' |
|
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
3376 |
where x_eq: "Some (lx, ux) = approx prec x vs" |
|
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
3377 |
and l_eq: "Some (l, u) = approx prec a vs" |
|
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
3378 |
and u_eq: "Some (l', u') = approx prec b vs" |
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
3379 |
and inequality: "real (float_plus_up prec u (-lx)) \<le> 0" "real (float_plus_up prec ux (-l')) \<le> 0" |
|
31811
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
3380 |
by (cases "approx prec x vs", auto, |
|
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
3381 |
cases "approx prec a vs", auto, |
|
56073
29e308b56d23
enhanced simplifier solver for preconditions of rewrite rule, can now deal with conjunctions
nipkow
parents:
55506
diff
changeset
|
3382 |
cases "approx prec b vs", auto) |
|
58985
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
3383 |
from order_trans[OF float_plus_up inequality(1)] order_trans[OF float_plus_up inequality(2)] |
|
bf498e0af9e3
truncate intermediate results in horner to improve performance of approximate;
immler
parents:
58982
diff
changeset
|
3384 |
approx[OF AtLeastAtMost.prems(2) l_eq] approx[OF AtLeastAtMost.prems(2) u_eq] approx[OF AtLeastAtMost.prems(2) x_eq] |
|
31811
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
3385 |
show ?case by auto |
| 58986 | 3386 |
qed auto |
| 29805 | 3387 |
|
|
31811
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
3388 |
lemma approx_form: |
|
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
3389 |
assumes "n = length xs" |
| 60680 | 3390 |
and "approx_form prec f (replicate n None) ss" |
|
31811
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
3391 |
shows "interpret_form f xs" |
|
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
3392 |
using approx_form_aux[OF _ bounded_by_None] assms by auto |
| 29805 | 3393 |
|
| 60680 | 3394 |
|
| 60533 | 3395 |
subsection \<open>Implementing Taylor series expansion\<close> |
|
31863
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3396 |
|
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3397 |
fun isDERIV :: "nat \<Rightarrow> floatarith \<Rightarrow> real list \<Rightarrow> bool" where |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3398 |
"isDERIV x (Add a b) vs = (isDERIV x a vs \<and> isDERIV x b vs)" | |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3399 |
"isDERIV x (Mult a b) vs = (isDERIV x a vs \<and> isDERIV x b vs)" | |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3400 |
"isDERIV x (Minus a) vs = isDERIV x a vs" | |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3401 |
"isDERIV x (Inverse a) vs = (isDERIV x a vs \<and> interpret_floatarith a vs \<noteq> 0)" | |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3402 |
"isDERIV x (Cos a) vs = isDERIV x a vs" | |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3403 |
"isDERIV x (Arctan a) vs = isDERIV x a vs" | |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3404 |
"isDERIV x (Min a b) vs = False" | |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3405 |
"isDERIV x (Max a b) vs = False" | |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3406 |
"isDERIV x (Abs a) vs = False" | |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3407 |
"isDERIV x Pi vs = True" | |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3408 |
"isDERIV x (Sqrt a) vs = (isDERIV x a vs \<and> interpret_floatarith a vs > 0)" | |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3409 |
"isDERIV x (Exp a) vs = isDERIV x a vs" | |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3410 |
"isDERIV x (Ln a) vs = (isDERIV x a vs \<and> interpret_floatarith a vs > 0)" | |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3411 |
"isDERIV x (Power a 0) vs = True" | |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3412 |
"isDERIV x (Power a (Suc n)) vs = isDERIV x a vs" | |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3413 |
"isDERIV x (Num f) vs = True" | |
|
32919
37adfa07b54b
approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents:
32650
diff
changeset
|
3414 |
"isDERIV x (Var n) vs = True" |
|
31863
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3415 |
|
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3416 |
fun DERIV_floatarith :: "nat \<Rightarrow> floatarith \<Rightarrow> floatarith" where |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3417 |
"DERIV_floatarith x (Add a b) = Add (DERIV_floatarith x a) (DERIV_floatarith x b)" | |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3418 |
"DERIV_floatarith x (Mult a b) = Add (Mult a (DERIV_floatarith x b)) (Mult (DERIV_floatarith x a) b)" | |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3419 |
"DERIV_floatarith x (Minus a) = Minus (DERIV_floatarith x a)" | |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3420 |
"DERIV_floatarith x (Inverse a) = Minus (Mult (DERIV_floatarith x a) (Inverse (Power a 2)))" | |
|
58410
6d46ad54a2ab
explicit separation of signed and unsigned numerals using existing lexical categories num and xnum
haftmann
parents:
58310
diff
changeset
|
3421 |
"DERIV_floatarith x (Cos a) = Minus (Mult (Cos (Add (Mult Pi (Num (Float 1 (- 1)))) (Minus a))) (DERIV_floatarith x a))" | |
|
31863
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3422 |
"DERIV_floatarith x (Arctan a) = Mult (Inverse (Add (Num 1) (Power a 2))) (DERIV_floatarith x a)" | |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3423 |
"DERIV_floatarith x (Min a b) = Num 0" | |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3424 |
"DERIV_floatarith x (Max a b) = Num 0" | |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3425 |
"DERIV_floatarith x (Abs a) = Num 0" | |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3426 |
"DERIV_floatarith x Pi = Num 0" | |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3427 |
"DERIV_floatarith x (Sqrt a) = (Mult (Inverse (Mult (Sqrt a) (Num 2))) (DERIV_floatarith x a))" | |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3428 |
"DERIV_floatarith x (Exp a) = Mult (Exp a) (DERIV_floatarith x a)" | |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3429 |
"DERIV_floatarith x (Ln a) = Mult (Inverse a) (DERIV_floatarith x a)" | |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3430 |
"DERIV_floatarith x (Power a 0) = Num 0" | |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3431 |
"DERIV_floatarith x (Power a (Suc n)) = Mult (Num (Float (int (Suc n)) 0)) (Mult (Power a n) (DERIV_floatarith x a))" | |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3432 |
"DERIV_floatarith x (Num f) = Num 0" | |
|
32919
37adfa07b54b
approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents:
32650
diff
changeset
|
3433 |
"DERIV_floatarith x (Var n) = (if x = n then Num 1 else Num 0)" |
|
31863
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3434 |
|
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3435 |
lemma DERIV_floatarith: |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3436 |
assumes "n < length vs" |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3437 |
assumes isDERIV: "isDERIV n f (vs[n := x])" |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3438 |
shows "DERIV (\<lambda> x'. interpret_floatarith f (vs[n := x'])) x :> |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3439 |
interpret_floatarith (DERIV_floatarith n f) (vs[n := x])" |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3440 |
(is "DERIV (?i f) x :> _") |
| 49351 | 3441 |
using isDERIV |
3442 |
proof (induct f arbitrary: x) |
|
3443 |
case (Inverse a) |
|
3444 |
thus ?case |
|
|
56381
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
hoelzl
parents:
56195
diff
changeset
|
3445 |
by (auto intro!: derivative_eq_intros simp add: algebra_simps power2_eq_square) |
| 49351 | 3446 |
next |
3447 |
case (Cos a) |
|
3448 |
thus ?case |
|
| 56382 | 3449 |
by (auto intro!: derivative_eq_intros |
|
31863
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3450 |
simp del: interpret_floatarith.simps(5) |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3451 |
simp add: interpret_floatarith_sin interpret_floatarith.simps(5)[of a]) |
| 49351 | 3452 |
next |
3453 |
case (Power a n) |
|
3454 |
thus ?case |
|
| 56382 | 3455 |
by (cases n) (auto intro!: derivative_eq_intros simp del: power_Suc simp add: real_of_nat_def) |
| 49351 | 3456 |
next |
3457 |
case (Ln a) |
|
| 56382 | 3458 |
thus ?case by (auto intro!: derivative_eq_intros simp add: divide_inverse) |
| 49351 | 3459 |
next |
3460 |
case (Var i) |
|
| 60533 | 3461 |
thus ?case using \<open>n < length vs\<close> by auto |
|
56381
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
hoelzl
parents:
56195
diff
changeset
|
3462 |
qed (auto intro!: derivative_eq_intros) |
|
31863
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3463 |
|
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3464 |
declare approx.simps[simp del] |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3465 |
|
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3466 |
fun isDERIV_approx :: "nat \<Rightarrow> nat \<Rightarrow> floatarith \<Rightarrow> (float * float) option list \<Rightarrow> bool" where |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3467 |
"isDERIV_approx prec x (Add a b) vs = (isDERIV_approx prec x a vs \<and> isDERIV_approx prec x b vs)" | |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3468 |
"isDERIV_approx prec x (Mult a b) vs = (isDERIV_approx prec x a vs \<and> isDERIV_approx prec x b vs)" | |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3469 |
"isDERIV_approx prec x (Minus a) vs = isDERIV_approx prec x a vs" | |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3470 |
"isDERIV_approx prec x (Inverse a) vs = |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3471 |
(isDERIV_approx prec x a vs \<and> (case approx prec a vs of Some (l, u) \<Rightarrow> 0 < l \<or> u < 0 | None \<Rightarrow> False))" | |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3472 |
"isDERIV_approx prec x (Cos a) vs = isDERIV_approx prec x a vs" | |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3473 |
"isDERIV_approx prec x (Arctan a) vs = isDERIV_approx prec x a vs" | |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3474 |
"isDERIV_approx prec x (Min a b) vs = False" | |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3475 |
"isDERIV_approx prec x (Max a b) vs = False" | |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3476 |
"isDERIV_approx prec x (Abs a) vs = False" | |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3477 |
"isDERIV_approx prec x Pi vs = True" | |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3478 |
"isDERIV_approx prec x (Sqrt a) vs = |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3479 |
(isDERIV_approx prec x a vs \<and> (case approx prec a vs of Some (l, u) \<Rightarrow> 0 < l | None \<Rightarrow> False))" | |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3480 |
"isDERIV_approx prec x (Exp a) vs = isDERIV_approx prec x a vs" | |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3481 |
"isDERIV_approx prec x (Ln a) vs = |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3482 |
(isDERIV_approx prec x a vs \<and> (case approx prec a vs of Some (l, u) \<Rightarrow> 0 < l | None \<Rightarrow> False))" | |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3483 |
"isDERIV_approx prec x (Power a 0) vs = True" | |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3484 |
"isDERIV_approx prec x (Power a (Suc n)) vs = isDERIV_approx prec x a vs" | |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3485 |
"isDERIV_approx prec x (Num f) vs = True" | |
|
32919
37adfa07b54b
approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents:
32650
diff
changeset
|
3486 |
"isDERIV_approx prec x (Var n) vs = True" |
|
31863
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3487 |
|
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3488 |
lemma isDERIV_approx: |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3489 |
assumes "bounded_by xs vs" |
| 49351 | 3490 |
and isDERIV_approx: "isDERIV_approx prec x f vs" |
|
31863
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3491 |
shows "isDERIV x f xs" |
| 49351 | 3492 |
using isDERIV_approx |
3493 |
proof (induct f) |
|
|
31863
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3494 |
case (Inverse a) |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3495 |
then obtain l u where approx_Some: "Some (l, u) = approx prec a vs" |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3496 |
and *: "0 < l \<or> u < 0" |
| 49351 | 3497 |
by (cases "approx prec a vs") auto |
| 60533 | 3498 |
with approx[OF \<open>bounded_by xs vs\<close> approx_Some] |
| 47600 | 3499 |
have "interpret_floatarith a xs \<noteq> 0" by auto |
|
31863
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3500 |
thus ?case using Inverse by auto |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3501 |
next |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3502 |
case (Ln a) |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3503 |
then obtain l u where approx_Some: "Some (l, u) = approx prec a vs" |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3504 |
and *: "0 < l" |
| 49351 | 3505 |
by (cases "approx prec a vs") auto |
| 60533 | 3506 |
with approx[OF \<open>bounded_by xs vs\<close> approx_Some] |
| 47600 | 3507 |
have "0 < interpret_floatarith a xs" by auto |
|
31863
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3508 |
thus ?case using Ln by auto |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3509 |
next |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3510 |
case (Sqrt a) |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3511 |
then obtain l u where approx_Some: "Some (l, u) = approx prec a vs" |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3512 |
and *: "0 < l" |
| 49351 | 3513 |
by (cases "approx prec a vs") auto |
| 60533 | 3514 |
with approx[OF \<open>bounded_by xs vs\<close> approx_Some] |
| 47600 | 3515 |
have "0 < interpret_floatarith a xs" by auto |
|
31863
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3516 |
thus ?case using Sqrt by auto |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3517 |
next |
| 60680 | 3518 |
case (Power a n) |
3519 |
thus ?case by (cases n) auto |
|
|
31863
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3520 |
qed auto |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3521 |
|
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3522 |
lemma bounded_by_update_var: |
| 60680 | 3523 |
assumes "bounded_by xs vs" |
3524 |
and "vs ! i = Some (l, u)" |
|
| 49351 | 3525 |
and bnd: "x \<in> { real l .. real u }"
|
|
31863
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3526 |
shows "bounded_by (xs[i := x]) vs" |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3527 |
proof (cases "i < length xs") |
| 49351 | 3528 |
case False |
| 60680 | 3529 |
thus ?thesis |
3530 |
using \<open>bounded_by xs vs\<close> by auto |
|
|
31863
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3531 |
next |
| 60680 | 3532 |
case True |
|
31863
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3533 |
let ?xs = "xs[i := x]" |
| 60680 | 3534 |
from True have "i < length ?xs" by auto |
3535 |
have "case vs ! j of None \<Rightarrow> True | Some (l, u) \<Rightarrow> ?xs ! j \<in> {real l .. real u}"
|
|
3536 |
if "j < length vs" for j |
|
3537 |
proof (cases "vs ! j") |
|
3538 |
case None |
|
3539 |
then show ?thesis by simp |
|
3540 |
next |
|
3541 |
case (Some b) |
|
3542 |
thus ?thesis |
|
3543 |
proof (cases "i = j") |
|
3544 |
case True |
|
3545 |
thus ?thesis using \<open>vs ! i = Some (l, u)\<close> Some and bnd \<open>i < length ?xs\<close> |
|
3546 |
by auto |
|
3547 |
next |
|
3548 |
case False |
|
| 49351 | 3549 |
thus ?thesis |
| 60680 | 3550 |
using \<open>bounded_by xs vs\<close>[THEN bounded_byE, OF \<open>j < length vs\<close>] Some by auto |
3551 |
qed |
|
3552 |
qed |
|
3553 |
thus ?thesis |
|
3554 |
unfolding bounded_by_def by auto |
|
|
31863
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3555 |
qed |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3556 |
|
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3557 |
lemma isDERIV_approx': |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3558 |
assumes "bounded_by xs vs" |
| 60680 | 3559 |
and vs_x: "vs ! x = Some (l, u)" |
3560 |
and X_in: "X \<in> {real l .. real u}"
|
|
| 49351 | 3561 |
and approx: "isDERIV_approx prec x f vs" |
|
31863
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3562 |
shows "isDERIV x f (xs[x := X])" |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3563 |
proof - |
| 60680 | 3564 |
from bounded_by_update_var[OF \<open>bounded_by xs vs\<close> vs_x X_in] approx |
3565 |
show ?thesis by (rule isDERIV_approx) |
|
|
31863
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3566 |
qed |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3567 |
|
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3568 |
lemma DERIV_approx: |
| 60680 | 3569 |
assumes "n < length xs" |
3570 |
and bnd: "bounded_by xs vs" |
|
| 49351 | 3571 |
and isD: "isDERIV_approx prec n f vs" |
3572 |
and app: "Some (l, u) = approx prec (DERIV_floatarith n f) vs" (is "_ = approx _ ?D _") |
|
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
3573 |
shows "\<exists>(x::real). l \<le> x \<and> x \<le> u \<and> |
|
31863
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3574 |
DERIV (\<lambda> x. interpret_floatarith f (xs[n := x])) (xs!n) :> x" |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3575 |
(is "\<exists> x. _ \<and> _ \<and> DERIV (?i f) _ :> _") |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3576 |
proof (rule exI[of _ "?i ?D (xs!n)"], rule conjI[OF _ conjI]) |
| 60680 | 3577 |
let "?i f" = "\<lambda>x. interpret_floatarith f (xs[n := x])" |
|
31863
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3578 |
from approx[OF bnd app] |
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
3579 |
show "l \<le> ?i ?D (xs!n)" and "?i ?D (xs!n) \<le> u" |
| 60533 | 3580 |
using \<open>n < length xs\<close> by auto |
3581 |
from DERIV_floatarith[OF \<open>n < length xs\<close>, of f "xs!n"] isDERIV_approx[OF bnd isD] |
|
| 60680 | 3582 |
show "DERIV (?i f) (xs!n) :> (?i ?D (xs!n))" |
3583 |
by simp |
|
|
31863
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3584 |
qed |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3585 |
|
| 49351 | 3586 |
fun lift_bin :: "(float * float) option \<Rightarrow> |
3587 |
(float * float) option \<Rightarrow> (float \<Rightarrow> float \<Rightarrow> float \<Rightarrow> float \<Rightarrow> (float * float) option) \<Rightarrow> |
|
3588 |
(float * float) option" where |
|
3589 |
"lift_bin (Some (l1, u1)) (Some (l2, u2)) f = f l1 u1 l2 u2" |
|
3590 |
| "lift_bin a b f = None" |
|
|
31863
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3591 |
|
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3592 |
lemma lift_bin: |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3593 |
assumes lift_bin_Some: "Some (l, u) = lift_bin a b f" |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3594 |
obtains l1 u1 l2 u2 |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3595 |
where "a = Some (l1, u1)" |
| 49351 | 3596 |
and "b = Some (l2, u2)" |
3597 |
and "f l1 u1 l2 u2 = Some (l, u)" |
|
3598 |
using assms by (cases a, simp, cases b, simp, auto) |
|
|
31863
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3599 |
|
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3600 |
fun approx_tse where |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3601 |
"approx_tse prec n 0 c k f bs = approx prec f bs" | |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3602 |
"approx_tse prec n (Suc s) c k f bs = |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3603 |
(if isDERIV_approx prec n f bs then |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3604 |
lift_bin (approx prec f (bs[n := Some (c,c)])) |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3605 |
(approx_tse prec n s c (Suc k) (DERIV_floatarith n f) bs) |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3606 |
(\<lambda> l1 u1 l2 u2. approx prec |
|
32919
37adfa07b54b
approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents:
32650
diff
changeset
|
3607 |
(Add (Var 0) |
|
31863
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3608 |
(Mult (Inverse (Num (Float (int k) 0))) |
|
32919
37adfa07b54b
approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents:
32650
diff
changeset
|
3609 |
(Mult (Add (Var (Suc (Suc 0))) (Minus (Num c))) |
|
37adfa07b54b
approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents:
32650
diff
changeset
|
3610 |
(Var (Suc 0))))) [Some (l1, u1), Some (l2, u2), bs!n]) |
|
31863
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3611 |
else approx prec f bs)" |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3612 |
|
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3613 |
lemma bounded_by_Cons: |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3614 |
assumes bnd: "bounded_by xs vs" |
| 49351 | 3615 |
and x: "x \<in> { real l .. real u }"
|
|
31863
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3616 |
shows "bounded_by (x#xs) ((Some (l, u))#vs)" |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3617 |
proof - |
| 60680 | 3618 |
have "case ((Some (l,u))#vs) ! i of Some (l, u) \<Rightarrow> (x#xs)!i \<in> { real l .. real u } | None \<Rightarrow> True"
|
3619 |
if *: "i < length ((Some (l, u))#vs)" for i |
|
3620 |
proof (cases i) |
|
3621 |
case 0 |
|
3622 |
with x show ?thesis by auto |
|
3623 |
next |
|
3624 |
case (Suc i) |
|
3625 |
with * have "i < length vs" by auto |
|
3626 |
from bnd[THEN bounded_byE, OF this] |
|
3627 |
show ?thesis unfolding Suc nth_Cons_Suc . |
|
3628 |
qed |
|
3629 |
thus ?thesis |
|
3630 |
by (auto simp add: bounded_by_def) |
|
|
31863
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3631 |
qed |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3632 |
|
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3633 |
lemma approx_tse_generic: |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3634 |
assumes "bounded_by xs vs" |
| 60680 | 3635 |
and bnd_c: "bounded_by (xs[x := c]) vs" |
3636 |
and "x < length vs" and "x < length xs" |
|
| 49351 | 3637 |
and bnd_x: "vs ! x = Some (lx, ux)" |
3638 |
and ate: "Some (l, u) = approx_tse prec x s c k f vs" |
|
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
3639 |
shows "\<exists> n. (\<forall> m < n. \<forall> (z::real) \<in> {lx .. ux}.
|
|
31863
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3640 |
DERIV (\<lambda> y. interpret_floatarith ((DERIV_floatarith x ^^ m) f) (xs[x := y])) z :> |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3641 |
(interpret_floatarith ((DERIV_floatarith x ^^ (Suc m)) f) (xs[x := z]))) |
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
3642 |
\<and> (\<forall> (t::real) \<in> {lx .. ux}. (\<Sum> i = 0..<n. inverse (real (\<Prod> j \<in> {k..<k+i}. j)) *
|
|
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
3643 |
interpret_floatarith ((DERIV_floatarith x ^^ i) f) (xs[x := c]) * |
|
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
3644 |
(xs!x - c)^i) + |
|
31863
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3645 |
inverse (real (\<Prod> j \<in> {k..<k+n}. j)) *
|
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3646 |
interpret_floatarith ((DERIV_floatarith x ^^ n) f) (xs[x := t]) * |
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
3647 |
(xs!x - c)^n \<in> {l .. u})" (is "\<exists> n. ?taylor f k l u n")
|
| 60680 | 3648 |
using ate |
3649 |
proof (induct s arbitrary: k f l u) |
|
|
31863
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3650 |
case 0 |
| 49351 | 3651 |
{
|
3652 |
fix t::real assume "t \<in> {lx .. ux}"
|
|
| 60533 | 3653 |
note bounded_by_update_var[OF \<open>bounded_by xs vs\<close> bnd_x this] |
|
31863
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3654 |
from approx[OF this 0[unfolded approx_tse.simps]] |
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
3655 |
have "(interpret_floatarith f (xs[x := t])) \<in> {l .. u}"
|
|
31863
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3656 |
by (auto simp add: algebra_simps) |
| 49351 | 3657 |
} |
3658 |
thus ?case by (auto intro!: exI[of _ 0]) |
|
|
31863
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3659 |
next |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3660 |
case (Suc s) |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3661 |
show ?case |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3662 |
proof (cases "isDERIV_approx prec x f vs") |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3663 |
case False |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3664 |
note ap = Suc.prems[unfolded approx_tse.simps if_not_P[OF False]] |
| 49351 | 3665 |
{
|
3666 |
fix t::real assume "t \<in> {lx .. ux}"
|
|
| 60533 | 3667 |
note bounded_by_update_var[OF \<open>bounded_by xs vs\<close> bnd_x this] |
|
31863
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3668 |
from approx[OF this ap] |
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
3669 |
have "(interpret_floatarith f (xs[x := t])) \<in> {l .. u}"
|
|
32960
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32920
diff
changeset
|
3670 |
by (auto simp add: algebra_simps) |
| 49351 | 3671 |
} |
3672 |
thus ?thesis by (auto intro!: exI[of _ 0]) |
|
|
31863
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3673 |
next |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3674 |
case True |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3675 |
with Suc.prems |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3676 |
obtain l1 u1 l2 u2 |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3677 |
where a: "Some (l1, u1) = approx prec f (vs[x := Some (c,c)])" |
| 49351 | 3678 |
and ate: "Some (l2, u2) = approx_tse prec x s c (Suc k) (DERIV_floatarith x f) vs" |
3679 |
and final: "Some (l, u) = approx prec |
|
3680 |
(Add (Var 0) |
|
3681 |
(Mult (Inverse (Num (Float (int k) 0))) |
|
3682 |
(Mult (Add (Var (Suc (Suc 0))) (Minus (Num c))) |
|
3683 |
(Var (Suc 0))))) [Some (l1, u1), Some (l2, u2), vs!x]" |
|
|
56073
29e308b56d23
enhanced simplifier solver for preconditions of rewrite rule, can now deal with conjunctions
nipkow
parents:
55506
diff
changeset
|
3684 |
by (auto elim!: lift_bin) |
|
31863
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3685 |
|
| 60533 | 3686 |
from bnd_c \<open>x < length xs\<close> |
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
3687 |
have bnd: "bounded_by (xs[x:=c]) (vs[x:= Some (c,c)])" |
|
31863
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3688 |
by (auto intro!: bounded_by_update) |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3689 |
|
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3690 |
from approx[OF this a] |
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
3691 |
have f_c: "interpret_floatarith ((DERIV_floatarith x ^^ 0) f) (xs[x := c]) \<in> { l1 .. u1 }"
|
|
31863
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3692 |
(is "?f 0 (real c) \<in> _") |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3693 |
by auto |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3694 |
|
| 60680 | 3695 |
have funpow_Suc[symmetric]: "(f ^^ Suc n) x = (f ^^ n) (f x)" |
3696 |
for f :: "'a \<Rightarrow> 'a" and n :: nat and x :: 'a |
|
3697 |
by (induct n) auto |
|
3698 |
from Suc.hyps[OF ate, unfolded this] obtain n |
|
3699 |
where DERIV_hyp: "\<And>m z. \<lbrakk> m < n ; (z::real) \<in> { lx .. ux } \<rbrakk> \<Longrightarrow>
|
|
3700 |
DERIV (?f (Suc m)) z :> ?f (Suc (Suc m)) z" |
|
3701 |
and hyp: "\<forall>t \<in> {real lx .. real ux}.
|
|
3702 |
(\<Sum> i = 0..<n. inverse (real (\<Prod> j \<in> {Suc k..<Suc k + i}. j)) * ?f (Suc i) c * (xs!x - c)^i) +
|
|
3703 |
inverse (real (\<Prod> j \<in> {Suc k..<Suc k + n}. j)) * ?f (Suc n) t * (xs!x - c)^n \<in> {l2 .. u2}"
|
|
|
31863
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3704 |
(is "\<forall> t \<in> _. ?X (Suc k) f n t \<in> _") |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3705 |
by blast |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3706 |
|
| 60680 | 3707 |
have DERIV: "DERIV (?f m) z :> ?f (Suc m) z" |
3708 |
if "m < Suc n" and bnd_z: "z \<in> { lx .. ux }" for m and z::real
|
|
3709 |
proof (cases m) |
|
3710 |
case 0 |
|
3711 |
with DERIV_floatarith[OF \<open>x < length xs\<close> |
|
3712 |
isDERIV_approx'[OF \<open>bounded_by xs vs\<close> bnd_x bnd_z True]] |
|
3713 |
show ?thesis by simp |
|
3714 |
next |
|
3715 |
case (Suc m') |
|
3716 |
hence "m' < n" |
|
3717 |
using \<open>m < Suc n\<close> by auto |
|
3718 |
from DERIV_hyp[OF this bnd_z] show ?thesis |
|
3719 |
using Suc by simp |
|
3720 |
qed |
|
3721 |
||
3722 |
have "\<And>k i. k < i \<Longrightarrow> {k ..< i} = insert k {Suc k ..< i}" by auto
|
|
3723 |
hence setprod_head_Suc: "\<And>k i. \<Prod>{k ..< k + Suc i} = k * \<Prod>{Suc k ..< Suc k + i}"
|
|
3724 |
by auto |
|
3725 |
have setsum_move0: "\<And>k F. setsum F {0..<Suc k} = F 0 + setsum (\<lambda> k. F (Suc k)) {0..<k}"
|
|
|
31863
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3726 |
unfolding setsum_shift_bounds_Suc_ivl[symmetric] |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3727 |
unfolding setsum_head_upt_Suc[OF zero_less_Suc] .. |
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
3728 |
def C \<equiv> "xs!x - c" |
|
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
3729 |
|
| 49351 | 3730 |
{
|
3731 |
fix t::real assume t: "t \<in> {lx .. ux}"
|
|
|
31863
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3732 |
hence "bounded_by [xs!x] [vs!x]" |
| 60533 | 3733 |
using \<open>bounded_by xs vs\<close>[THEN bounded_byE, OF \<open>x < length vs\<close>] |
|
32960
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32920
diff
changeset
|
3734 |
by (cases "vs!x", auto simp add: bounded_by_def) |
|
31863
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3735 |
|
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3736 |
with hyp[THEN bspec, OF t] f_c |
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
3737 |
have "bounded_by [?f 0 c, ?X (Suc k) f n t, xs!x] [Some (l1, u1), Some (l2, u2), vs!x]" |
|
32960
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32920
diff
changeset
|
3738 |
by (auto intro!: bounded_by_Cons) |
|
31863
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3739 |
from approx[OF this final, unfolded atLeastAtMost_iff[symmetric]] |
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
3740 |
have "?X (Suc k) f n t * (xs!x - real c) * inverse k + ?f 0 c \<in> {l .. u}"
|
|
32960
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32920
diff
changeset
|
3741 |
by (auto simp add: algebra_simps) |
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
3742 |
also have "?X (Suc k) f n t * (xs!x - real c) * inverse (real k) + ?f 0 c = |
|
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
3743 |
(\<Sum> i = 0..<Suc n. inverse (real (\<Prod> j \<in> {k..<k+i}. j)) * ?f i c * (xs!x - c)^i) +
|
|
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
3744 |
inverse (real (\<Prod> j \<in> {k..<k+Suc n}. j)) * ?f (Suc n) t * (xs!x - c)^Suc n" (is "_ = ?T")
|
|
32960
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32920
diff
changeset
|
3745 |
unfolding funpow_Suc C_def[symmetric] setsum_move0 setprod_head_Suc |
| 35082 | 3746 |
by (auto simp add: algebra_simps) |
|
57512
cc97b347b301
reduced name variants for assoc and commute on plus and mult
haftmann
parents:
57418
diff
changeset
|
3747 |
(simp only: mult.left_commute [of _ "inverse (real k)"] setsum_right_distrib [symmetric]) |
| 49351 | 3748 |
finally have "?T \<in> {l .. u}" .
|
3749 |
} |
|
|
31863
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3750 |
thus ?thesis using DERIV by blast |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3751 |
qed |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3752 |
qed |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3753 |
|
|
59730
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
3754 |
lemma setprod_fact: "real (\<Prod> {1..<1 + k}) = fact (k :: nat)"
|
|
59751
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59741
diff
changeset
|
3755 |
using fact_altdef_nat Suc_eq_plus1_left atLeastLessThanSuc_atLeastAtMost real_fact_nat |
|
59730
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
3756 |
by presburger |
|
31863
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3757 |
|
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3758 |
lemma approx_tse: |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3759 |
assumes "bounded_by xs vs" |
| 60680 | 3760 |
and bnd_x: "vs ! x = Some (lx, ux)" |
3761 |
and bnd_c: "real c \<in> {lx .. ux}"
|
|
| 49351 | 3762 |
and "x < length vs" and "x < length xs" |
3763 |
and ate: "Some (l, u) = approx_tse prec x s c 1 f vs" |
|
| 60680 | 3764 |
shows "interpret_floatarith f xs \<in> {l .. u}"
|
|
31863
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3765 |
proof - |
| 60680 | 3766 |
def F \<equiv> "\<lambda>n z. interpret_floatarith ((DERIV_floatarith x ^^ n) f) (xs[x := z])" |
|
31863
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3767 |
hence F0: "F 0 = (\<lambda> z. interpret_floatarith f (xs[x := z]))" by auto |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3768 |
|
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
3769 |
hence "bounded_by (xs[x := c]) vs" and "x < length vs" "x < length xs" |
| 60533 | 3770 |
using \<open>bounded_by xs vs\<close> bnd_x bnd_c \<open>x < length vs\<close> \<open>x < length xs\<close> |
|
31863
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3771 |
by (auto intro!: bounded_by_update_var) |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3772 |
|
| 60533 | 3773 |
from approx_tse_generic[OF \<open>bounded_by xs vs\<close> this bnd_x ate] |
|
31863
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3774 |
obtain n |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3775 |
where DERIV: "\<forall> m z. m < n \<and> real lx \<le> z \<and> z \<le> real ux \<longrightarrow> DERIV (F m) z :> F (Suc m) z" |
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
3776 |
and hyp: "\<And> (t::real). t \<in> {lx .. ux} \<Longrightarrow>
|
|
59730
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
3777 |
(\<Sum> j = 0..<n. inverse(fact j) * F j c * (xs!x - c)^j) + |
|
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
3778 |
inverse ((fact n)) * F n t * (xs!x - c)^n |
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
3779 |
\<in> {l .. u}" (is "\<And> t. _ \<Longrightarrow> ?taylor t \<in> _")
|
|
59730
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
3780 |
unfolding F_def atLeastAtMost_iff[symmetric] setprod_fact |
|
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
3781 |
by blast |
|
31863
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3782 |
|
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
3783 |
have bnd_xs: "xs ! x \<in> { lx .. ux }"
|
| 60533 | 3784 |
using \<open>bounded_by xs vs\<close>[THEN bounded_byE, OF \<open>x < length vs\<close>] bnd_x by auto |
|
31863
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3785 |
|
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3786 |
show ?thesis |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3787 |
proof (cases n) |
| 60680 | 3788 |
case 0 |
3789 |
thus ?thesis |
|
3790 |
using hyp[OF bnd_xs] unfolding F_def by auto |
|
|
31863
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3791 |
next |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3792 |
case (Suc n') |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3793 |
show ?thesis |
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
3794 |
proof (cases "xs ! x = c") |
|
31863
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3795 |
case True |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3796 |
from True[symmetric] hyp[OF bnd_xs] Suc show ?thesis |
| 60680 | 3797 |
unfolding F_def Suc setsum_head_upt_Suc[OF zero_less_Suc] setsum_shift_bounds_Suc_ivl |
3798 |
by auto |
|
|
31863
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3799 |
next |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3800 |
case False |
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
3801 |
have "lx \<le> real c" "real c \<le> ux" "lx \<le> xs!x" "xs!x \<le> ux" |
| 60533 | 3802 |
using Suc bnd_c \<open>bounded_by xs vs\<close>[THEN bounded_byE, OF \<open>x < length vs\<close>] bnd_x by auto |
|
31863
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3803 |
from Taylor.taylor[OF zero_less_Suc, of F, OF F0 DERIV[unfolded Suc] this False] |
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
3804 |
obtain t::real where t_bnd: "if xs ! x < c then xs ! x < t \<and> t < c else c < t \<and> t < xs ! x" |
|
32960
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32920
diff
changeset
|
3805 |
and fl_eq: "interpret_floatarith f (xs[x := xs ! x]) = |
|
59730
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
3806 |
(\<Sum>m = 0..<Suc n'. F m c / (fact m) * (xs ! x - c) ^ m) + |
|
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
3807 |
F (Suc n') t / (fact (Suc n')) * (xs ! x - c) ^ Suc n'" |
| 56195 | 3808 |
unfolding atLeast0LessThan by blast |
|
31863
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3809 |
|
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
3810 |
from t_bnd bnd_xs bnd_c have *: "t \<in> {lx .. ux}"
|
| 60680 | 3811 |
by (cases "xs ! x < c") auto |
|
31863
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3812 |
|
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3813 |
have "interpret_floatarith f (xs[x := xs ! x]) = ?taylor t" |
|
32960
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32920
diff
changeset
|
3814 |
unfolding fl_eq Suc by (auto simp add: algebra_simps divide_inverse) |
| 60680 | 3815 |
also have "\<dots> \<in> {l .. u}"
|
3816 |
using * by (rule hyp) |
|
3817 |
finally show ?thesis |
|
3818 |
by simp |
|
|
31863
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3819 |
qed |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3820 |
qed |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3821 |
qed |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3822 |
|
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3823 |
fun approx_tse_form' where |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3824 |
"approx_tse_form' prec t f 0 l u cmp = |
|
58410
6d46ad54a2ab
explicit separation of signed and unsigned numerals using existing lexical categories num and xnum
haftmann
parents:
58310
diff
changeset
|
3825 |
(case approx_tse prec 0 t ((l + u) * Float 1 (- 1)) 1 f [Some (l, u)] |
|
31863
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3826 |
of Some (l, u) \<Rightarrow> cmp l u | None \<Rightarrow> False)" | |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3827 |
"approx_tse_form' prec t f (Suc s) l u cmp = |
|
58410
6d46ad54a2ab
explicit separation of signed and unsigned numerals using existing lexical categories num and xnum
haftmann
parents:
58310
diff
changeset
|
3828 |
(let m = (l + u) * Float 1 (- 1) |
|
32919
37adfa07b54b
approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents:
32650
diff
changeset
|
3829 |
in (if approx_tse_form' prec t f s l m cmp then |
|
37adfa07b54b
approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents:
32650
diff
changeset
|
3830 |
approx_tse_form' prec t f s m u cmp else False))" |
|
31863
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3831 |
|
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3832 |
lemma approx_tse_form': |
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
3833 |
fixes x :: real |
| 60680 | 3834 |
assumes "approx_tse_form' prec t f s l u cmp" |
3835 |
and "x \<in> {l .. u}"
|
|
3836 |
shows "\<exists>l' u' ly uy. x \<in> {l' .. u'} \<and> real l \<le> l' \<and> u' \<le> real u \<and> cmp ly uy \<and>
|
|
3837 |
approx_tse prec 0 t ((l' + u') * Float 1 (- 1)) 1 f [Some (l', u')] = Some (ly, uy)" |
|
3838 |
using assms |
|
3839 |
proof (induct s arbitrary: l u) |
|
|
31863
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3840 |
case 0 |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3841 |
then obtain ly uy |
|
58410
6d46ad54a2ab
explicit separation of signed and unsigned numerals using existing lexical categories num and xnum
haftmann
parents:
58310
diff
changeset
|
3842 |
where *: "approx_tse prec 0 t ((l + u) * Float 1 (- 1)) 1 f [Some (l, u)] = Some (ly, uy)" |
|
55413
a8e96847523c
adapted theories to '{case,rec}_{list,option}' names
blanchet
parents:
54782
diff
changeset
|
3843 |
and **: "cmp ly uy" by (auto elim!: case_optionE) |
| 46545 | 3844 |
with 0 show ?case by auto |
|
31863
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3845 |
next |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3846 |
case (Suc s) |
|
58410
6d46ad54a2ab
explicit separation of signed and unsigned numerals using existing lexical categories num and xnum
haftmann
parents:
58310
diff
changeset
|
3847 |
let ?m = "(l + u) * Float 1 (- 1)" |
|
31863
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3848 |
from Suc.prems |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3849 |
have l: "approx_tse_form' prec t f s l ?m cmp" |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3850 |
and u: "approx_tse_form' prec t f s ?m u cmp" |
|
32919
37adfa07b54b
approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents:
32650
diff
changeset
|
3851 |
by (auto simp add: Let_def lazy_conj) |
|
31863
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3852 |
|
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
3853 |
have m_l: "real l \<le> ?m" and m_u: "?m \<le> real u" |
|
47599
400b158f1589
replace the float datatype by a type with unique representation
hoelzl
parents:
47108
diff
changeset
|
3854 |
unfolding less_eq_float_def using Suc.prems by auto |
| 60680 | 3855 |
with \<open>x \<in> { l .. u }\<close> consider "x \<in> { l .. ?m}" | "x \<in> {?m .. u}"
|
3856 |
by atomize_elim auto |
|
|
31863
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3857 |
thus ?case |
| 60680 | 3858 |
proof cases |
3859 |
case 1 |
|
|
31863
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3860 |
from Suc.hyps[OF l this] |
| 60680 | 3861 |
obtain l' u' ly uy where |
3862 |
"x \<in> {l' .. u'} \<and> real l \<le> l' \<and> real u' \<le> ?m \<and> cmp ly uy \<and>
|
|
3863 |
approx_tse prec 0 t ((l' + u') * Float 1 (- 1)) 1 f [Some (l', u')] = Some (ly, uy)" |
|
3864 |
by blast |
|
3865 |
with m_u show ?thesis |
|
3866 |
by (auto intro!: exI) |
|
|
31863
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3867 |
next |
| 60680 | 3868 |
case 2 |
|
31863
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3869 |
from Suc.hyps[OF u this] |
| 60680 | 3870 |
obtain l' u' ly uy where |
3871 |
"x \<in> { l' .. u' } \<and> ?m \<le> real l' \<and> u' \<le> real u \<and> cmp ly uy \<and>
|
|
3872 |
approx_tse prec 0 t ((l' + u') * Float 1 (- 1)) 1 f [Some (l', u')] = Some (ly, uy)" |
|
3873 |
by blast |
|
3874 |
with m_u show ?thesis |
|
3875 |
by (auto intro!: exI) |
|
|
31863
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3876 |
qed |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3877 |
qed |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3878 |
|
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3879 |
lemma approx_tse_form'_less: |
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
3880 |
fixes x :: real |
|
31863
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3881 |
assumes tse: "approx_tse_form' prec t (Add a (Minus b)) s l u (\<lambda> l u. 0 < l)" |
| 60680 | 3882 |
and x: "x \<in> {l .. u}"
|
|
31863
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3883 |
shows "interpret_floatarith b [x] < interpret_floatarith a [x]" |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3884 |
proof - |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3885 |
from approx_tse_form'[OF tse x] |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3886 |
obtain l' u' ly uy |
| 60680 | 3887 |
where x': "x \<in> {l' .. u'}"
|
3888 |
and "l \<le> real l'" |
|
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
3889 |
and "real u' \<le> u" and "0 < ly" |
|
58410
6d46ad54a2ab
explicit separation of signed and unsigned numerals using existing lexical categories num and xnum
haftmann
parents:
58310
diff
changeset
|
3890 |
and tse: "approx_tse prec 0 t ((l' + u') * Float 1 (- 1)) 1 (Add a (Minus b)) [Some (l', u')] = Some (ly, uy)" |
|
31863
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3891 |
by blast |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3892 |
|
| 60680 | 3893 |
hence "bounded_by [x] [Some (l', u')]" |
3894 |
by (auto simp add: bounded_by_def) |
|
|
31863
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3895 |
from approx_tse[OF this _ _ _ _ tse[symmetric], of l' u'] x' |
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
3896 |
have "ly \<le> interpret_floatarith a [x] - interpret_floatarith b [x]" |
|
54230
b1d955791529
more simplification rules on unary and binary minus
haftmann
parents:
53077
diff
changeset
|
3897 |
by auto |
| 60680 | 3898 |
from order_less_le_trans[OF _ this, of 0] \<open>0 < ly\<close> show ?thesis |
3899 |
by auto |
|
|
31863
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3900 |
qed |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3901 |
|
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3902 |
lemma approx_tse_form'_le: |
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
3903 |
fixes x :: real |
|
31863
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3904 |
assumes tse: "approx_tse_form' prec t (Add a (Minus b)) s l u (\<lambda> l u. 0 \<le> l)" |
| 60680 | 3905 |
and x: "x \<in> {l .. u}"
|
|
31863
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3906 |
shows "interpret_floatarith b [x] \<le> interpret_floatarith a [x]" |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3907 |
proof - |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3908 |
from approx_tse_form'[OF tse x] |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3909 |
obtain l' u' ly uy |
| 60680 | 3910 |
where x': "x \<in> {l' .. u'}"
|
3911 |
and "l \<le> real l'" |
|
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
3912 |
and "real u' \<le> u" and "0 \<le> ly" |
|
58410
6d46ad54a2ab
explicit separation of signed and unsigned numerals using existing lexical categories num and xnum
haftmann
parents:
58310
diff
changeset
|
3913 |
and tse: "approx_tse prec 0 t ((l' + u') * Float 1 (- 1)) 1 (Add a (Minus b)) [Some (l', u')] = Some (ly, uy)" |
|
31863
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3914 |
by blast |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3915 |
|
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3916 |
hence "bounded_by [x] [Some (l', u')]" by (auto simp add: bounded_by_def) |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3917 |
from approx_tse[OF this _ _ _ _ tse[symmetric], of l' u'] x' |
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
3918 |
have "ly \<le> interpret_floatarith a [x] - interpret_floatarith b [x]" |
|
54230
b1d955791529
more simplification rules on unary and binary minus
haftmann
parents:
53077
diff
changeset
|
3919 |
by auto |
| 60680 | 3920 |
from order_trans[OF _ this, of 0] \<open>0 \<le> ly\<close> show ?thesis |
3921 |
by auto |
|
|
31863
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3922 |
qed |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3923 |
|
| 58986 | 3924 |
fun approx_tse_concl where |
3925 |
"approx_tse_concl prec t (Less lf rt) s l u l' u' \<longleftrightarrow> |
|
3926 |
approx_tse_form' prec t (Add rt (Minus lf)) s l u' (\<lambda> l u. 0 < l)" | |
|
3927 |
"approx_tse_concl prec t (LessEqual lf rt) s l u l' u' \<longleftrightarrow> |
|
3928 |
approx_tse_form' prec t (Add rt (Minus lf)) s l u' (\<lambda> l u. 0 \<le> l)" | |
|
3929 |
"approx_tse_concl prec t (AtLeastAtMost x lf rt) s l u l' u' \<longleftrightarrow> |
|
3930 |
(if approx_tse_form' prec t (Add x (Minus lf)) s l u' (\<lambda> l u. 0 \<le> l) then |
|
3931 |
approx_tse_form' prec t (Add rt (Minus x)) s l u' (\<lambda> l u. 0 \<le> l) else False)" | |
|
3932 |
"approx_tse_concl prec t (Conj f g) s l u l' u' \<longleftrightarrow> |
|
3933 |
approx_tse_concl prec t f s l u l' u' \<and> approx_tse_concl prec t g s l u l' u'" | |
|
3934 |
"approx_tse_concl prec t (Disj f g) s l u l' u' \<longleftrightarrow> |
|
3935 |
approx_tse_concl prec t f s l u l' u' \<or> approx_tse_concl prec t g s l u l' u'" | |
|
3936 |
"approx_tse_concl _ _ _ _ _ _ _ _ \<longleftrightarrow> False" |
|
3937 |
||
|
31863
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3938 |
definition |
| 60680 | 3939 |
"approx_tse_form prec t s f = |
3940 |
(case f of |
|
3941 |
Bound x a b f \<Rightarrow> |
|
3942 |
x = Var 0 \<and> |
|
3943 |
(case (approx prec a [None], approx prec b [None]) of |
|
3944 |
(Some (l, u), Some (l', u')) \<Rightarrow> approx_tse_concl prec t f s l u l' u' |
|
3945 |
| _ \<Rightarrow> False) |
|
3946 |
| _ \<Rightarrow> False)" |
|
|
31863
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3947 |
|
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3948 |
lemma approx_tse_form: |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3949 |
assumes "approx_tse_form prec t s f" |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3950 |
shows "interpret_form f [x]" |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3951 |
proof (cases f) |
| 60680 | 3952 |
case f_def: (Bound i a b f') |
|
31863
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3953 |
with assms obtain l u l' u' |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3954 |
where a: "approx prec a [None] = Some (l, u)" |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3955 |
and b: "approx prec b [None] = Some (l', u')" |
|
55413
a8e96847523c
adapted theories to '{case,rec}_{list,option}' names
blanchet
parents:
54782
diff
changeset
|
3956 |
unfolding approx_tse_form_def by (auto elim!: case_optionE) |
|
31863
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3957 |
|
| 60680 | 3958 |
from f_def assms have "i = Var 0" |
3959 |
unfolding approx_tse_form_def by auto |
|
|
31863
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3960 |
hence i: "interpret_floatarith i [x] = x" by auto |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3961 |
|
| 60680 | 3962 |
{
|
3963 |
let ?f = "\<lambda>z. interpret_floatarith z [x]" |
|
|
31863
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3964 |
assume "?f i \<in> { ?f a .. ?f b }"
|
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3965 |
with approx[OF _ a[symmetric], of "[x]"] approx[OF _ b[symmetric], of "[x]"] |
|
40881
e84f82418e09
Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents:
39556
diff
changeset
|
3966 |
have bnd: "x \<in> { l .. u'}" unfolding bounded_by_def i by auto
|
|
31863
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3967 |
|
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3968 |
have "interpret_form f' [x]" |
| 60680 | 3969 |
using assms[unfolded f_def] |
| 58986 | 3970 |
proof (induct f') |
|
31863
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3971 |
case (Less lf rt) |
| 58986 | 3972 |
with a b |
|
31863
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3973 |
have "approx_tse_form' prec t (Add rt (Minus lf)) s l u' (\<lambda> l u. 0 < l)" |
|
32960
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32920
diff
changeset
|
3974 |
unfolding approx_tse_form_def by auto |
|
31863
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3975 |
from approx_tse_form'_less[OF this bnd] |
| 58986 | 3976 |
show ?case using Less by auto |
|
31863
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3977 |
next |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3978 |
case (LessEqual lf rt) |
| 60680 | 3979 |
with f_def a b assms |
|
31863
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3980 |
have "approx_tse_form' prec t (Add rt (Minus lf)) s l u' (\<lambda> l u. 0 \<le> l)" |
|
32960
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32920
diff
changeset
|
3981 |
unfolding approx_tse_form_def by auto |
|
31863
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3982 |
from approx_tse_form'_le[OF this bnd] |
| 58986 | 3983 |
show ?case using LessEqual by auto |
|
31863
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3984 |
next |
|
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3985 |
case (AtLeastAtMost x lf rt) |
| 60680 | 3986 |
with f_def a b assms |
|
31863
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3987 |
have "approx_tse_form' prec t (Add rt (Minus x)) s l u' (\<lambda> l u. 0 \<le> l)" |
|
32960
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32920
diff
changeset
|
3988 |
and "approx_tse_form' prec t (Add x (Minus lf)) s l u' (\<lambda> l u. 0 \<le> l)" |
| 58986 | 3989 |
unfolding approx_tse_form_def lazy_conj by (auto split: split_if_asm) |
|
31863
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3990 |
from approx_tse_form'_le[OF this(1) bnd] approx_tse_form'_le[OF this(2) bnd] |
| 58986 | 3991 |
show ?case using AtLeastAtMost by auto |
3992 |
qed (auto simp: f_def approx_tse_form_def elim!: case_optionE) |
|
| 60680 | 3993 |
} |
3994 |
thus ?thesis unfolding f_def by auto |
|
| 58986 | 3995 |
qed (insert assms, auto simp add: approx_tse_form_def) |
|
31863
e391eee8bf14
Implemented taylor series expansion for approximation
hoelzl
parents:
31811
diff
changeset
|
3996 |
|
| 60533 | 3997 |
text \<open>@{term approx_form_eval} is only used for the {\tt value}-command.\<close>
|
|
32919
37adfa07b54b
approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents:
32650
diff
changeset
|
3998 |
|
|
37adfa07b54b
approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents:
32650
diff
changeset
|
3999 |
fun approx_form_eval :: "nat \<Rightarrow> form \<Rightarrow> (float * float) option list \<Rightarrow> (float * float) option list" where |
|
37adfa07b54b
approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents:
32650
diff
changeset
|
4000 |
"approx_form_eval prec (Bound (Var n) a b f) bs = |
|
37adfa07b54b
approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents:
32650
diff
changeset
|
4001 |
(case (approx prec a bs, approx prec b bs) |
|
37adfa07b54b
approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents:
32650
diff
changeset
|
4002 |
of (Some (l, _), Some (_, u)) \<Rightarrow> approx_form_eval prec f (bs[n := Some (l, u)]) |
|
37adfa07b54b
approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents:
32650
diff
changeset
|
4003 |
| _ \<Rightarrow> bs)" | |
|
37adfa07b54b
approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents:
32650
diff
changeset
|
4004 |
"approx_form_eval prec (Assign (Var n) a f) bs = |
|
37adfa07b54b
approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents:
32650
diff
changeset
|
4005 |
(case (approx prec a bs) |
|
37adfa07b54b
approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents:
32650
diff
changeset
|
4006 |
of (Some (l, u)) \<Rightarrow> approx_form_eval prec f (bs[n := Some (l, u)]) |
|
37adfa07b54b
approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents:
32650
diff
changeset
|
4007 |
| _ \<Rightarrow> bs)" | |
|
37adfa07b54b
approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents:
32650
diff
changeset
|
4008 |
"approx_form_eval prec (Less a b) bs = bs @ [approx prec a bs, approx prec b bs]" | |
|
37adfa07b54b
approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents:
32650
diff
changeset
|
4009 |
"approx_form_eval prec (LessEqual a b) bs = bs @ [approx prec a bs, approx prec b bs]" | |
|
37adfa07b54b
approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents:
32650
diff
changeset
|
4010 |
"approx_form_eval prec (AtLeastAtMost x a b) bs = |
|
37adfa07b54b
approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents:
32650
diff
changeset
|
4011 |
bs @ [approx prec x bs, approx prec a bs, approx prec b bs]" | |
|
37adfa07b54b
approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents:
32650
diff
changeset
|
4012 |
"approx_form_eval _ _ bs = bs" |
|
37adfa07b54b
approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents:
32650
diff
changeset
|
4013 |
|
| 60680 | 4014 |
|
| 60533 | 4015 |
subsection \<open>Implement proof method \texttt{approximation}\<close>
|
| 29805 | 4016 |
|
|
31811
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
4017 |
lemmas interpret_form_equations = interpret_form.simps interpret_floatarith.simps interpret_floatarith_num |
|
60017
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
paulson <lp15@cam.ac.uk>
parents:
59850
diff
changeset
|
4018 |
interpret_floatarith_divide interpret_floatarith_diff interpret_floatarith_tan interpret_floatarith_log |
|
31467
f7d2aa438bee
Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents:
31148
diff
changeset
|
4019 |
interpret_floatarith_sin |
| 29805 | 4020 |
|
| 60533 | 4021 |
oracle approximation_oracle = \<open>fn (thy, t) => |
|
36985
41c5d4002f60
spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents:
36960
diff
changeset
|
4022 |
let |
|
41c5d4002f60
spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents:
36960
diff
changeset
|
4023 |
fun bad t = error ("Bad term: " ^ Syntax.string_of_term_global thy t);
|
|
41c5d4002f60
spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents:
36960
diff
changeset
|
4024 |
|
|
38716
3c3b4ad683d5
approximation_oracle: actually match true/false in ML, not arbitrary values;
wenzelm
parents:
38558
diff
changeset
|
4025 |
fun term_of_bool true = @{term True}
|
|
3c3b4ad683d5
approximation_oracle: actually match true/false in ML, not arbitrary values;
wenzelm
parents:
38558
diff
changeset
|
4026 |
| term_of_bool false = @{term False};
|
|
36985
41c5d4002f60
spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents:
36960
diff
changeset
|
4027 |
|
|
51143
0a2371e7ced3
two target language numeral types: integer and natural, as replacement for code_numeral;
haftmann
parents:
49962
diff
changeset
|
4028 |
val mk_int = HOLogic.mk_number @{typ int} o @{code integer_of_int};
|
| 58988 | 4029 |
fun dest_int (@{term int_of_integer} $ j) = @{code int_of_integer} (snd (HOLogic.dest_number j))
|
4030 |
| dest_int i = @{code int_of_integer} (snd (HOLogic.dest_number i));
|
|
|
51143
0a2371e7ced3
two target language numeral types: integer and natural, as replacement for code_numeral;
haftmann
parents:
49962
diff
changeset
|
4031 |
|
|
36985
41c5d4002f60
spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents:
36960
diff
changeset
|
4032 |
fun term_of_float (@{code Float} (k, l)) =
|
|
51143
0a2371e7ced3
two target language numeral types: integer and natural, as replacement for code_numeral;
haftmann
parents:
49962
diff
changeset
|
4033 |
@{term Float} $ mk_int k $ mk_int l;
|
|
36985
41c5d4002f60
spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents:
36960
diff
changeset
|
4034 |
|
|
41c5d4002f60
spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents:
36960
diff
changeset
|
4035 |
fun term_of_float_float_option NONE = @{term "None :: (float \<times> float) option"}
|
|
41c5d4002f60
spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents:
36960
diff
changeset
|
4036 |
| term_of_float_float_option (SOME ff) = @{term "Some :: float \<times> float \<Rightarrow> _"}
|
|
59058
a78612c67ec0
renamed "pairself" to "apply2", in accordance to @{apply 2};
wenzelm
parents:
58988
diff
changeset
|
4037 |
$ HOLogic.mk_prod (apply2 term_of_float ff); |
|
36985
41c5d4002f60
spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents:
36960
diff
changeset
|
4038 |
|
|
41c5d4002f60
spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents:
36960
diff
changeset
|
4039 |
val term_of_float_float_option_list = |
|
41c5d4002f60
spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents:
36960
diff
changeset
|
4040 |
HOLogic.mk_list @{typ "(float \<times> float) option"} o map term_of_float_float_option;
|
|
41c5d4002f60
spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents:
36960
diff
changeset
|
4041 |
|
|
51143
0a2371e7ced3
two target language numeral types: integer and natural, as replacement for code_numeral;
haftmann
parents:
49962
diff
changeset
|
4042 |
fun nat_of_term t = @{code nat_of_integer}
|
|
0a2371e7ced3
two target language numeral types: integer and natural, as replacement for code_numeral;
haftmann
parents:
49962
diff
changeset
|
4043 |
(HOLogic.dest_nat t handle TERM _ => snd (HOLogic.dest_number t)); |
|
36985
41c5d4002f60
spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents:
36960
diff
changeset
|
4044 |
|
|
41c5d4002f60
spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents:
36960
diff
changeset
|
4045 |
fun float_of_term (@{term Float} $ k $ l) =
|
|
51143
0a2371e7ced3
two target language numeral types: integer and natural, as replacement for code_numeral;
haftmann
parents:
49962
diff
changeset
|
4046 |
@{code Float} (dest_int k, dest_int l)
|
|
36985
41c5d4002f60
spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents:
36960
diff
changeset
|
4047 |
| float_of_term t = bad t; |
|
41c5d4002f60
spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents:
36960
diff
changeset
|
4048 |
|
|
41c5d4002f60
spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents:
36960
diff
changeset
|
4049 |
fun floatarith_of_term (@{term Add} $ a $ b) = @{code Add} (floatarith_of_term a, floatarith_of_term b)
|
|
41c5d4002f60
spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents:
36960
diff
changeset
|
4050 |
| floatarith_of_term (@{term Minus} $ a) = @{code Minus} (floatarith_of_term a)
|
|
41c5d4002f60
spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents:
36960
diff
changeset
|
4051 |
| floatarith_of_term (@{term Mult} $ a $ b) = @{code Mult} (floatarith_of_term a, floatarith_of_term b)
|
|
41c5d4002f60
spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents:
36960
diff
changeset
|
4052 |
| floatarith_of_term (@{term Inverse} $ a) = @{code Inverse} (floatarith_of_term a)
|
|
41c5d4002f60
spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents:
36960
diff
changeset
|
4053 |
| floatarith_of_term (@{term Cos} $ a) = @{code Cos} (floatarith_of_term a)
|
|
41c5d4002f60
spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents:
36960
diff
changeset
|
4054 |
| floatarith_of_term (@{term Arctan} $ a) = @{code Arctan} (floatarith_of_term a)
|
|
41c5d4002f60
spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents:
36960
diff
changeset
|
4055 |
| floatarith_of_term (@{term Abs} $ a) = @{code Abs} (floatarith_of_term a)
|
|
41c5d4002f60
spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents:
36960
diff
changeset
|
4056 |
| floatarith_of_term (@{term Max} $ a $ b) = @{code Max} (floatarith_of_term a, floatarith_of_term b)
|
|
41c5d4002f60
spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents:
36960
diff
changeset
|
4057 |
| floatarith_of_term (@{term Min} $ a $ b) = @{code Min} (floatarith_of_term a, floatarith_of_term b)
|
|
41c5d4002f60
spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents:
36960
diff
changeset
|
4058 |
| floatarith_of_term @{term Pi} = @{code Pi}
|
|
41c5d4002f60
spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents:
36960
diff
changeset
|
4059 |
| floatarith_of_term (@{term Sqrt} $ a) = @{code Sqrt} (floatarith_of_term a)
|
|
41c5d4002f60
spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents:
36960
diff
changeset
|
4060 |
| floatarith_of_term (@{term Exp} $ a) = @{code Exp} (floatarith_of_term a)
|
|
41c5d4002f60
spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents:
36960
diff
changeset
|
4061 |
| floatarith_of_term (@{term Ln} $ a) = @{code Ln} (floatarith_of_term a)
|
|
41c5d4002f60
spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents:
36960
diff
changeset
|
4062 |
| floatarith_of_term (@{term Power} $ a $ n) =
|
|
41c5d4002f60
spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents:
36960
diff
changeset
|
4063 |
@{code Power} (floatarith_of_term a, nat_of_term n)
|
|
41c5d4002f60
spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents:
36960
diff
changeset
|
4064 |
| floatarith_of_term (@{term Var} $ n) = @{code Var} (nat_of_term n)
|
|
41c5d4002f60
spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents:
36960
diff
changeset
|
4065 |
| floatarith_of_term (@{term Num} $ m) = @{code Num} (float_of_term m)
|
|
41c5d4002f60
spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents:
36960
diff
changeset
|
4066 |
| floatarith_of_term t = bad t; |
|
41c5d4002f60
spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents:
36960
diff
changeset
|
4067 |
|
|
41c5d4002f60
spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents:
36960
diff
changeset
|
4068 |
fun form_of_term (@{term Bound} $ a $ b $ c $ p) = @{code Bound}
|
|
41c5d4002f60
spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents:
36960
diff
changeset
|
4069 |
(floatarith_of_term a, floatarith_of_term b, floatarith_of_term c, form_of_term p) |
|
41c5d4002f60
spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents:
36960
diff
changeset
|
4070 |
| form_of_term (@{term Assign} $ a $ b $ p) = @{code Assign}
|
|
41c5d4002f60
spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents:
36960
diff
changeset
|
4071 |
(floatarith_of_term a, floatarith_of_term b, form_of_term p) |
|
41c5d4002f60
spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents:
36960
diff
changeset
|
4072 |
| form_of_term (@{term Less} $ a $ b) = @{code Less}
|
|
41c5d4002f60
spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents:
36960
diff
changeset
|
4073 |
(floatarith_of_term a, floatarith_of_term b) |
|
41c5d4002f60
spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents:
36960
diff
changeset
|
4074 |
| form_of_term (@{term LessEqual} $ a $ b) = @{code LessEqual}
|
|
41c5d4002f60
spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents:
36960
diff
changeset
|
4075 |
(floatarith_of_term a, floatarith_of_term b) |
| 58986 | 4076 |
| form_of_term (@{term Conj} $ a $ b) = @{code Conj}
|
4077 |
(form_of_term a, form_of_term b) |
|
4078 |
| form_of_term (@{term Disj} $ a $ b) = @{code Disj}
|
|
4079 |
(form_of_term a, form_of_term b) |
|
|
36985
41c5d4002f60
spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents:
36960
diff
changeset
|
4080 |
| form_of_term (@{term AtLeastAtMost} $ a $ b $ c) = @{code AtLeastAtMost}
|
|
41c5d4002f60
spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents:
36960
diff
changeset
|
4081 |
(floatarith_of_term a, floatarith_of_term b, floatarith_of_term c) |
|
41c5d4002f60
spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents:
36960
diff
changeset
|
4082 |
| form_of_term t = bad t; |
|
41c5d4002f60
spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents:
36960
diff
changeset
|
4083 |
|
|
41c5d4002f60
spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents:
36960
diff
changeset
|
4084 |
fun float_float_option_of_term @{term "None :: (float \<times> float) option"} = NONE
|
|
41c5d4002f60
spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents:
36960
diff
changeset
|
4085 |
| float_float_option_of_term (@{term "Some :: float \<times> float \<Rightarrow> _"} $ ff) =
|
|
59058
a78612c67ec0
renamed "pairself" to "apply2", in accordance to @{apply 2};
wenzelm
parents:
58988
diff
changeset
|
4086 |
SOME (apply2 float_of_term (HOLogic.dest_prod ff)) |
|
36985
41c5d4002f60
spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents:
36960
diff
changeset
|
4087 |
| float_float_option_of_term (@{term approx'} $ n $ a $ ffs) = @{code approx'}
|
|
41c5d4002f60
spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents:
36960
diff
changeset
|
4088 |
(nat_of_term n) (floatarith_of_term a) (float_float_option_list_of_term ffs) |
|
41c5d4002f60
spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents:
36960
diff
changeset
|
4089 |
| float_float_option_of_term t = bad t |
|
41c5d4002f60
spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents:
36960
diff
changeset
|
4090 |
and float_float_option_list_of_term |
|
41c5d4002f60
spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents:
36960
diff
changeset
|
4091 |
(@{term "replicate :: _ \<Rightarrow> (float \<times> float) option \<Rightarrow> _"} $ n $ @{term "None :: (float \<times> float) option"}) =
|
|
41c5d4002f60
spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents:
36960
diff
changeset
|
4092 |
@{code replicate} (nat_of_term n) NONE
|
|
41c5d4002f60
spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents:
36960
diff
changeset
|
4093 |
| float_float_option_list_of_term (@{term approx_form_eval} $ n $ p $ ffs) =
|
|
41c5d4002f60
spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents:
36960
diff
changeset
|
4094 |
@{code approx_form_eval} (nat_of_term n) (form_of_term p) (float_float_option_list_of_term ffs)
|
|
41c5d4002f60
spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents:
36960
diff
changeset
|
4095 |
| float_float_option_list_of_term t = map float_float_option_of_term |
|
41c5d4002f60
spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents:
36960
diff
changeset
|
4096 |
(HOLogic.dest_list t); |
|
41c5d4002f60
spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents:
36960
diff
changeset
|
4097 |
|
|
41c5d4002f60
spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents:
36960
diff
changeset
|
4098 |
val nat_list_of_term = map nat_of_term o HOLogic.dest_list ; |
|
41c5d4002f60
spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents:
36960
diff
changeset
|
4099 |
|
|
41c5d4002f60
spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents:
36960
diff
changeset
|
4100 |
fun bool_of_term (@{term approx_form} $ n $ p $ ffs $ ms) = @{code approx_form}
|
|
41c5d4002f60
spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents:
36960
diff
changeset
|
4101 |
(nat_of_term n) (form_of_term p) (float_float_option_list_of_term ffs) (nat_list_of_term ms) |
|
41c5d4002f60
spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents:
36960
diff
changeset
|
4102 |
| bool_of_term (@{term approx_tse_form} $ m $ n $ q $ p) =
|
|
41c5d4002f60
spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents:
36960
diff
changeset
|
4103 |
@{code approx_tse_form} (nat_of_term m) (nat_of_term n) (nat_of_term q) (form_of_term p)
|
|
41c5d4002f60
spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents:
36960
diff
changeset
|
4104 |
| bool_of_term t = bad t; |
|
41c5d4002f60
spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents:
36960
diff
changeset
|
4105 |
|
|
41c5d4002f60
spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents:
36960
diff
changeset
|
4106 |
fun eval t = case fastype_of t |
|
41c5d4002f60
spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents:
36960
diff
changeset
|
4107 |
of @{typ bool} =>
|
|
41c5d4002f60
spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents:
36960
diff
changeset
|
4108 |
(term_of_bool o bool_of_term) t |
|
41c5d4002f60
spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents:
36960
diff
changeset
|
4109 |
| @{typ "(float \<times> float) option"} =>
|
|
41c5d4002f60
spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents:
36960
diff
changeset
|
4110 |
(term_of_float_float_option o float_float_option_of_term) t |
|
41c5d4002f60
spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents:
36960
diff
changeset
|
4111 |
| @{typ "(float \<times> float) option list"} =>
|
|
41c5d4002f60
spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents:
36960
diff
changeset
|
4112 |
(term_of_float_float_option_list o float_float_option_list_of_term) t |
|
41c5d4002f60
spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents:
36960
diff
changeset
|
4113 |
| _ => bad t; |
|
41c5d4002f60
spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents:
36960
diff
changeset
|
4114 |
|
| 52131 | 4115 |
val normalize = eval o Envir.beta_norm o Envir.eta_long []; |
|
36985
41c5d4002f60
spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents:
36960
diff
changeset
|
4116 |
|
|
59621
291934bac95e
Thm.cterm_of and Thm.ctyp_of operate on local context;
wenzelm
parents:
59582
diff
changeset
|
4117 |
in Thm.global_cterm_of thy (Logic.mk_equals (t, normalize t)) end |
| 60533 | 4118 |
\<close> |
|
31099
03314c427b34
optimized Approximation by precompiling approx_inequality
hoelzl
parents:
31098
diff
changeset
|
4119 |
|
|
31811
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
4120 |
lemma intervalE: "a \<le> x \<and> x \<le> b \<Longrightarrow> \<lbrakk> x \<in> { a .. b } \<Longrightarrow> P\<rbrakk> \<Longrightarrow> P"
|
|
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
4121 |
by auto |
|
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
4122 |
|
|
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
4123 |
lemma meta_eqE: "x \<equiv> a \<Longrightarrow> \<lbrakk> x = a \<Longrightarrow> P\<rbrakk> \<Longrightarrow> P" |
|
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
4124 |
by auto |
|
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
4125 |
|
| 59850 | 4126 |
ML_file "approximation.ML" |
4127 |
||
| 60533 | 4128 |
method_setup approximation = \<open> |
| 60680 | 4129 |
let |
4130 |
val free = |
|
4131 |
Args.context -- Args.term >> (fn (_, Free (n, _)) => n | (ctxt, t) => |
|
4132 |
error ("Bad free variable: " ^ Syntax.string_of_term ctxt t));
|
|
| 59850 | 4133 |
in |
| 60680 | 4134 |
Scan.lift Parse.nat -- |
| 59850 | 4135 |
Scan.optional (Scan.lift (Args.$$$ "splitting" |-- Args.colon) |
| 60680 | 4136 |
|-- Parse.and_list' (free --| Scan.lift (Args.$$$ "=") -- Scan.lift Parse.nat)) [] -- |
4137 |
Scan.option (Scan.lift (Args.$$$ "taylor" |-- Args.colon) |-- |
|
4138 |
(free |-- Scan.lift (Args.$$$ "=") |-- Scan.lift Parse.nat)) >> |
|
| 59850 | 4139 |
(fn ((prec, splitting), taylor) => fn ctxt => |
4140 |
SIMPLE_METHOD' (Approximation.approximation_tac prec splitting taylor ctxt)) |
|
4141 |
end |
|
| 60533 | 4142 |
\<close> "real number approximation" |
|
31811
64dea9a15031
Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents:
31810
diff
changeset
|
4143 |
|
| 58988 | 4144 |
|
4145 |
section "Quickcheck Generator" |
|
4146 |
||
4147 |
ML_file "approximation_generator.ML" |
|
4148 |
setup "Approximation_Generator.setup" |
|
4149 |
||
| 29805 | 4150 |
end |