src/HOL/Decision_Procs/Approximation.thy
author huffman
Fri, 19 Aug 2011 08:39:43 -0700
changeset 45166 33572a766836
parent 45165 3bdc02eb1637
child 45208 f057535311c5
permissions -rw-r--r--
fold definitions of sin_coeff and cos_coeff in Maclaurin lemmas
hoelzl@41126
     1
(* Author:     Johannes Hoelzl, TU Muenchen
hoelzl@41126
     2
   Coercions removed by Dmitriy Traytel *)
wenzelm@30122
     3
wenzelm@30886
     4
header {* Prove Real Valued Inequalities by Computation *}
wenzelm@30122
     5
wenzelm@41140
     6
theory Approximation
wenzelm@41661
     7
imports
wenzelm@41661
     8
  Complex_Main
wenzelm@41661
     9
  "~~/src/HOL/Library/Float"
wenzelm@41661
    10
  "~~/src/HOL/Library/Reflection"
wenzelm@41661
    11
  "~~/src/HOL/Decision_Procs/Dense_Linear_Order"
wenzelm@41661
    12
  "~~/src/HOL/Library/Efficient_Nat"
hoelzl@29742
    13
begin
hoelzl@29742
    14
hoelzl@29742
    15
section "Horner Scheme"
hoelzl@29742
    16
hoelzl@29742
    17
subsection {* Define auxiliary helper @{text horner} function *}
hoelzl@29742
    18
hoelzl@31098
    19
primrec horner :: "(nat \<Rightarrow> nat) \<Rightarrow> (nat \<Rightarrow> nat \<Rightarrow> nat) \<Rightarrow> nat \<Rightarrow> nat \<Rightarrow> nat \<Rightarrow> real \<Rightarrow> real" where
hoelzl@29742
    20
"horner F G 0 i k x       = 0" |
hoelzl@41126
    21
"horner F G (Suc n) i k x = 1 / k - x * horner F G n (F i) (G i k) x"
hoelzl@29742
    22
hoelzl@29742
    23
lemma horner_schema': fixes x :: real  and a :: "nat \<Rightarrow> real"
hoelzl@29742
    24
  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)"
hoelzl@29742
    25
proof -
hoelzl@29742
    26
  have shift_pow: "\<And>i. - (x * ((-1)^i * a (Suc i) * x ^ i)) = (-1)^(Suc i) * a (Suc i) * x ^ (Suc i)" by auto
haftmann@37860
    27
  show ?thesis unfolding setsum_right_distrib shift_pow diff_minus setsum_negf[symmetric] setsum_head_upt_Suc[OF zero_less_Suc]
hoelzl@29742
    28
    setsum_reindex[OF inj_Suc, unfolded comp_def, symmetric, of "\<lambda> n. (-1)^n  *a n * x^n"] by auto
hoelzl@29742
    29
qed
hoelzl@29742
    30
hoelzl@29742
    31
lemma horner_schema: fixes f :: "nat \<Rightarrow> nat" and G :: "nat \<Rightarrow> nat \<Rightarrow> nat" and F :: "nat \<Rightarrow> nat"
haftmann@30971
    32
  assumes f_Suc: "\<And>n. f (Suc n) = G ((F ^^ n) s) (f n)"
hoelzl@41126
    33
  shows "horner F G n ((F ^^ j') s) (f j') x = (\<Sum> j = 0..< n. -1 ^ j * (1 / (f (j' + j))) * x ^ j)"
hoelzl@29742
    34
proof (induct n arbitrary: i k j')
hoelzl@29742
    35
  case (Suc n)
hoelzl@29742
    36
hoelzl@29742
    37
  show ?case unfolding horner.simps Suc[where j'="Suc j'", unfolded funpow.simps comp_def f_Suc]
hoelzl@41126
    38
    using horner_schema'[of "\<lambda> j. 1 / (f (j' + j))"] by auto
hoelzl@29742
    39
qed auto
hoelzl@29742
    40
hoelzl@29742
    41
lemma horner_bounds':
hoelzl@41126
    42
  fixes lb :: "nat \<Rightarrow> nat \<Rightarrow> nat \<Rightarrow> float \<Rightarrow> float" and ub :: "nat \<Rightarrow> nat \<Rightarrow> nat \<Rightarrow> float \<Rightarrow> float"
hoelzl@31098
    43
  assumes "0 \<le> real x" and f_Suc: "\<And>n. f (Suc n) = G ((F ^^ n) s) (f n)"
hoelzl@29742
    44
  and lb_0: "\<And> i k x. lb 0 i k x = 0"
hoelzl@41126
    45
  and lb_Suc: "\<And> n i k x. lb (Suc n) i k x = lapprox_rat prec 1 k - x * (ub n (F i) (G i k) x)"
hoelzl@29742
    46
  and ub_0: "\<And> i k x. ub 0 i k x = 0"
hoelzl@41126
    47
  and ub_Suc: "\<And> n i k x. ub (Suc n) i k x = rapprox_rat prec 1 k - x * (lb n (F i) (G i k) x)"
hoelzl@41126
    48
  shows "(lb n ((F ^^ j') s) (f j') x) \<le> horner F G n ((F ^^ j') s) (f j') x \<and>
hoelzl@41126
    49
         horner F G n ((F ^^ j') s) (f j') x \<le> (ub n ((F ^^ j') s) (f j') x)"
hoelzl@29742
    50
  (is "?lb n j' \<le> ?horner n j' \<and> ?horner n j' \<le> ?ub n j'")
hoelzl@29742
    51
proof (induct n arbitrary: j')
hoelzl@29742
    52
  case 0 thus ?case unfolding lb_0 ub_0 horner.simps by auto
hoelzl@29742
    53
next
hoelzl@29742
    54
  case (Suc n)
haftmann@37860
    55
  have "?lb (Suc n) j' \<le> ?horner (Suc n) j'" unfolding lb_Suc ub_Suc horner.simps real_of_float_sub diff_minus
hoelzl@29742
    56
  proof (rule add_mono)
hoelzl@41126
    57
    show "(lapprox_rat prec 1 (f j')) \<le> 1 / (f j')" using lapprox_rat[of prec 1  "f j'"] by auto
hoelzl@31098
    58
    from Suc[where j'="Suc j'", unfolded funpow.simps comp_def f_Suc, THEN conjunct2] `0 \<le> real x`
hoelzl@41126
    59
    show "- real (x * ub n (F ((F ^^ j') s)) (G ((F ^^ j') s) (f j')) x) \<le>
hoelzl@41126
    60
          - (x * horner F G n (F ((F ^^ j') s)) (G ((F ^^ j') s) (f j')) x)"
hoelzl@31098
    61
      unfolding real_of_float_mult neg_le_iff_le by (rule mult_left_mono)
hoelzl@29742
    62
  qed
haftmann@37860
    63
  moreover have "?horner (Suc n) j' \<le> ?ub (Suc n) j'" unfolding ub_Suc ub_Suc horner.simps real_of_float_sub diff_minus
hoelzl@29742
    64
  proof (rule add_mono)
hoelzl@41126
    65
    show "1 / (f j') \<le> (rapprox_rat prec 1 (f j'))" using rapprox_rat[of 1 "f j'" prec] by auto
hoelzl@31098
    66
    from Suc[where j'="Suc j'", unfolded funpow.simps comp_def f_Suc, THEN conjunct1] `0 \<le> real x`
hoelzl@41126
    67
    show "- (x * horner F G n (F ((F ^^ j') s)) (G ((F ^^ j') s) (f j')) x) \<le>
hoelzl@31098
    68
          - real (x * lb n (F ((F ^^ j') s)) (G ((F ^^ j') s) (f j')) x)"
hoelzl@31098
    69
      unfolding real_of_float_mult neg_le_iff_le by (rule mult_left_mono)
hoelzl@29742
    70
  qed
hoelzl@29742
    71
  ultimately show ?case by blast
hoelzl@29742
    72
qed
hoelzl@29742
    73
hoelzl@29742
    74
subsection "Theorems for floating point functions implementing the horner scheme"
hoelzl@29742
    75
hoelzl@29742
    76
text {*
hoelzl@29742
    77
hoelzl@29742
    78
Here @{term_type "f :: nat \<Rightarrow> nat"} is the sequence defining the Taylor series, the coefficients are
hoelzl@29742
    79
all alternating and reciprocs. We use @{term G} and @{term F} to describe the computation of @{term f}.
hoelzl@29742
    80
hoelzl@29742
    81
*}
hoelzl@29742
    82
hoelzl@29742
    83
lemma horner_bounds: fixes F :: "nat \<Rightarrow> nat" and G :: "nat \<Rightarrow> nat \<Rightarrow> nat"
hoelzl@31098
    84
  assumes "0 \<le> real x" and f_Suc: "\<And>n. f (Suc n) = G ((F ^^ n) s) (f n)"
hoelzl@29742
    85
  and lb_0: "\<And> i k x. lb 0 i k x = 0"
hoelzl@41126
    86
  and lb_Suc: "\<And> n i k x. lb (Suc n) i k x = lapprox_rat prec 1 k - x * (ub n (F i) (G i k) x)"
hoelzl@29742
    87
  and ub_0: "\<And> i k x. ub 0 i k x = 0"
hoelzl@41126
    88
  and ub_Suc: "\<And> n i k x. ub (Suc n) i k x = rapprox_rat prec 1 k - x * (lb n (F i) (G i k) x)"
hoelzl@41126
    89
  shows "(lb n ((F ^^ j') s) (f j') x) \<le> (\<Sum>j=0..<n. -1 ^ j * (1 / (f (j' + j))) * (x ^ j))" (is "?lb") and
hoelzl@41126
    90
    "(\<Sum>j=0..<n. -1 ^ j * (1 / (f (j' + j))) * (x ^ j)) \<le> (ub n ((F ^^ j') s) (f j') x)" (is "?ub")
hoelzl@29742
    91
proof -
hoelzl@31809
    92
  have "?lb  \<and> ?ub"
hoelzl@31098
    93
    using horner_bounds'[where lb=lb, OF `0 \<le> real x` f_Suc lb_0 lb_Suc ub_0 ub_Suc]
hoelzl@29742
    94
    unfolding horner_schema[where f=f, OF f_Suc] .
hoelzl@29742
    95
  thus "?lb" and "?ub" by auto
hoelzl@29742
    96
qed
hoelzl@29742
    97
hoelzl@29742
    98
lemma horner_bounds_nonpos: fixes F :: "nat \<Rightarrow> nat" and G :: "nat \<Rightarrow> nat \<Rightarrow> nat"
hoelzl@31098
    99
  assumes "real x \<le> 0" and f_Suc: "\<And>n. f (Suc n) = G ((F ^^ n) s) (f n)"
hoelzl@29742
   100
  and lb_0: "\<And> i k x. lb 0 i k x = 0"
hoelzl@41126
   101
  and lb_Suc: "\<And> n i k x. lb (Suc n) i k x = lapprox_rat prec 1 k + x * (ub n (F i) (G i k) x)"
hoelzl@29742
   102
  and ub_0: "\<And> i k x. ub 0 i k x = 0"
hoelzl@41126
   103
  and ub_Suc: "\<And> n i k x. ub (Suc n) i k x = rapprox_rat prec 1 k + x * (lb n (F i) (G i k) x)"
hoelzl@41126
   104
  shows "(lb n ((F ^^ j') s) (f j') x) \<le> (\<Sum>j=0..<n. (1 / (f (j' + j))) * real x ^ j)" (is "?lb") and
hoelzl@41126
   105
    "(\<Sum>j=0..<n. (1 / (f (j' + j))) * real x ^ j) \<le> (ub n ((F ^^ j') s) (f j') x)" (is "?ub")
hoelzl@29742
   106
proof -
hoelzl@29742
   107
  { fix x y z :: float have "x - y * z = x + - y * z"
haftmann@30968
   108
      by (cases x, cases y, cases z, simp add: plus_float.simps minus_float_def uminus_float.simps times_float.simps algebra_simps)
hoelzl@29742
   109
  } note diff_mult_minus = this
hoelzl@29742
   110
hoelzl@29742
   111
  { fix x :: float have "- (- x) = x" by (cases x, auto simp add: uminus_float.simps) } note minus_minus = this
hoelzl@29742
   112
hoelzl@41126
   113
  have move_minus: "(-x) = -1 * real x" by auto (* coercion "inside" is necessary *)
hoelzl@41126
   114
hoelzl@41126
   115
  have sum_eq: "(\<Sum>j=0..<n. (1 / (f (j' + j))) * real x ^ j) =
hoelzl@41126
   116
    (\<Sum>j = 0..<n. -1 ^ j * (1 / (f (j' + j))) * real (- x) ^ j)"
hoelzl@29742
   117
  proof (rule setsum_cong, simp)
hoelzl@29742
   118
    fix j assume "j \<in> {0 ..< n}"
hoelzl@41126
   119
    show "1 / (f (j' + j)) * real x ^ j = -1 ^ j * (1 / (f (j' + j))) * real (- x) ^ j"
huffman@36770
   120
      unfolding move_minus power_mult_distrib mult_assoc[symmetric]
huffman@36770
   121
      unfolding mult_commute unfolding mult_assoc[of "-1 ^ j", symmetric] power_mult_distrib[symmetric]
hoelzl@29742
   122
      by auto
hoelzl@29742
   123
  qed
hoelzl@29742
   124
hoelzl@31098
   125
  have "0 \<le> real (-x)" using assms by auto
hoelzl@29742
   126
  from horner_bounds[where G=G and F=F and f=f and s=s and prec=prec
hoelzl@29742
   127
    and lb="\<lambda> n i k x. lb n i k (-x)" and ub="\<lambda> n i k x. ub n i k (-x)", unfolded lb_Suc ub_Suc diff_mult_minus,
hoelzl@29742
   128
    OF this f_Suc lb_0 refl ub_0 refl]
hoelzl@29742
   129
  show "?lb" and "?ub" unfolding minus_minus sum_eq
hoelzl@29742
   130
    by auto
hoelzl@29742
   131
qed
hoelzl@29742
   132
hoelzl@29742
   133
subsection {* Selectors for next even or odd number *}
hoelzl@29742
   134
hoelzl@29742
   135
text {*
hoelzl@29742
   136
hoelzl@29742
   137
The horner scheme computes alternating series. To get the upper and lower bounds we need to
hoelzl@29742
   138
guarantee to access a even or odd member. To do this we use @{term get_odd} and @{term get_even}.
hoelzl@29742
   139
hoelzl@29742
   140
*}
hoelzl@29742
   141
hoelzl@29742
   142
definition get_odd :: "nat \<Rightarrow> nat" where
hoelzl@29742
   143
  "get_odd n = (if odd n then n else (Suc n))"
hoelzl@29742
   144
hoelzl@29742
   145
definition get_even :: "nat \<Rightarrow> nat" where
hoelzl@29742
   146
  "get_even n = (if even n then n else (Suc n))"
hoelzl@29742
   147
hoelzl@29742
   148
lemma get_odd[simp]: "odd (get_odd n)" unfolding get_odd_def by (cases "odd n", auto)
hoelzl@29742
   149
lemma get_even[simp]: "even (get_even n)" unfolding get_even_def by (cases "even n", auto)
hoelzl@29742
   150
lemma get_odd_ex: "\<exists> k. Suc k = get_odd n \<and> odd (Suc k)"
hoelzl@29742
   151
proof (cases "odd n")
hoelzl@29742
   152
  case True hence "0 < n" by (rule odd_pos)
hoelzl@31467
   153
  from gr0_implies_Suc[OF this] obtain k where "Suc k = n" by auto
hoelzl@29742
   154
  thus ?thesis unfolding get_odd_def if_P[OF True] using True[unfolded `Suc k = n`[symmetric]] by blast
hoelzl@29742
   155
next
hoelzl@29742
   156
  case False hence "odd (Suc n)" by auto
hoelzl@29742
   157
  thus ?thesis unfolding get_odd_def if_not_P[OF False] by blast
hoelzl@29742
   158
qed
hoelzl@29742
   159
hoelzl@29742
   160
lemma get_even_double: "\<exists>i. get_even n = 2 * i" using get_even[unfolded even_mult_two_ex] .
hoelzl@29742
   161
lemma get_odd_double: "\<exists>i. get_odd n = 2 * i + 1" using get_odd[unfolded odd_Suc_mult_two_ex] by auto
hoelzl@29742
   162
hoelzl@29742
   163
section "Power function"
hoelzl@29742
   164
hoelzl@29742
   165
definition float_power_bnds :: "nat \<Rightarrow> float \<Rightarrow> float \<Rightarrow> float * float" where
hoelzl@29742
   166
"float_power_bnds n l u = (if odd n \<or> 0 < l then (l ^ n, u ^ n)
hoelzl@29742
   167
                      else if u < 0         then (u ^ n, l ^ n)
hoelzl@29742
   168
                                            else (0, (max (-l) u) ^ n))"
hoelzl@29742
   169
hoelzl@41126
   170
lemma float_power_bnds: fixes x :: real
hoelzl@41126
   171
  assumes "(l1, u1) = float_power_bnds n l u" and "x \<in> {l .. u}"
hoelzl@41126
   172
  shows "x ^ n \<in> {l1..u1}"
hoelzl@29742
   173
proof (cases "even n")
hoelzl@31467
   174
  case True
hoelzl@29742
   175
  show ?thesis
hoelzl@29742
   176
  proof (cases "0 < l")
hoelzl@31098
   177
    case True hence "odd n \<or> 0 < l" and "0 \<le> real l" unfolding less_float_def by auto
hoelzl@29742
   178
    have u1: "u1 = u ^ n" and l1: "l1 = l ^ n" using assms unfolding float_power_bnds_def if_P[OF `odd n \<or> 0 < l`] by auto
hoelzl@41126
   179
    have "real l ^ n \<le> x ^ n" and "x ^ n \<le> real u ^ n " using `0 \<le> real l` and assms unfolding atLeastAtMost_iff using power_mono[of l x] power_mono[of x u] by auto
hoelzl@29742
   180
    thus ?thesis using assms `0 < l` unfolding atLeastAtMost_iff l1 u1 float_power less_float_def by auto
hoelzl@29742
   181
  next
hoelzl@29742
   182
    case False hence P: "\<not> (odd n \<or> 0 < l)" using `even n` by auto
hoelzl@29742
   183
    show ?thesis
hoelzl@29742
   184
    proof (cases "u < 0")
hoelzl@31098
   185
      case True hence "0 \<le> - real u" and "- real u \<le> - x" and "0 \<le> - x" and "-x \<le> - real l" using assms unfolding less_float_def by auto
hoelzl@31809
   186
      hence "real u ^ n \<le> x ^ n" and "x ^ n \<le> real l ^ n" using power_mono[of  "-x" "-real l" n] power_mono[of "-real u" "-x" n]
wenzelm@32962
   187
        unfolding power_minus_even[OF `even n`] by auto
hoelzl@29742
   188
      moreover have u1: "u1 = l ^ n" and l1: "l1 = u ^ n" using assms unfolding float_power_bnds_def if_not_P[OF P] if_P[OF True] by auto
hoelzl@29742
   189
      ultimately show ?thesis using float_power by auto
hoelzl@29742
   190
    next
hoelzl@31467
   191
      case False
hoelzl@31098
   192
      have "\<bar>x\<bar> \<le> real (max (-l) u)"
hoelzl@29742
   193
      proof (cases "-l \<le> u")
wenzelm@32962
   194
        case True thus ?thesis unfolding max_def if_P[OF True] using assms unfolding le_float_def by auto
hoelzl@29742
   195
      next
wenzelm@32962
   196
        case False thus ?thesis unfolding max_def if_not_P[OF False] using assms unfolding le_float_def by auto
hoelzl@29742
   197
      qed
hoelzl@31098
   198
      hence x_abs: "\<bar>x\<bar> \<le> \<bar>real (max (-l) u)\<bar>" by auto
hoelzl@29742
   199
      have u1: "u1 = (max (-l) u) ^ n" and l1: "l1 = 0" using assms unfolding float_power_bnds_def if_not_P[OF P] if_not_P[OF False] by auto
hoelzl@29742
   200
      show ?thesis unfolding atLeastAtMost_iff l1 u1 float_power using zero_le_even_power[OF `even n`] power_mono_even[OF `even n` x_abs] by auto
hoelzl@29742
   201
    qed
hoelzl@29742
   202
  qed
hoelzl@29742
   203
next
hoelzl@29742
   204
  case False hence "odd n \<or> 0 < l" by auto
hoelzl@29742
   205
  have u1: "u1 = u ^ n" and l1: "l1 = l ^ n" using assms unfolding float_power_bnds_def if_P[OF `odd n \<or> 0 < l`] by auto
hoelzl@31098
   206
  have "real l ^ n \<le> x ^ n" and "x ^ n \<le> real u ^ n " using assms unfolding atLeastAtMost_iff using power_mono_odd[OF False] by auto
hoelzl@29742
   207
  thus ?thesis unfolding atLeastAtMost_iff l1 u1 float_power less_float_def by auto
hoelzl@29742
   208
qed
hoelzl@29742
   209
hoelzl@41126
   210
lemma bnds_power: "\<forall> (x::real) l u. (l1, u1) = float_power_bnds n l u \<and> x \<in> {l .. u} \<longrightarrow> l1 \<le> x ^ n \<and> x ^ n \<le> u1"
hoelzl@29742
   211
  using float_power_bnds by auto
hoelzl@29742
   212
hoelzl@29742
   213
section "Square root"
hoelzl@29742
   214
hoelzl@29742
   215
text {*
hoelzl@29742
   216
hoelzl@29742
   217
The square root computation is implemented as newton iteration. As first first step we use the
hoelzl@29742
   218
nearest power of two greater than the square root.
hoelzl@29742
   219
hoelzl@29742
   220
*}
hoelzl@29742
   221
hoelzl@29742
   222
fun sqrt_iteration :: "nat \<Rightarrow> nat \<Rightarrow> float \<Rightarrow> float" where
hoelzl@29742
   223
"sqrt_iteration prec 0 (Float m e) = Float 1 ((e + bitlen m) div 2 + 1)" |
hoelzl@31467
   224
"sqrt_iteration prec (Suc m) x = (let y = sqrt_iteration prec m x
hoelzl@29742
   225
                                  in Float 1 -1 * (y + float_divr prec x y))"
hoelzl@29742
   226
hoelzl@31467
   227
function ub_sqrt lb_sqrt :: "nat \<Rightarrow> float \<Rightarrow> float" where
hoelzl@31467
   228
"ub_sqrt prec x = (if 0 < x then (sqrt_iteration prec prec x)
hoelzl@31467
   229
              else if x < 0 then - lb_sqrt prec (- x)
hoelzl@31467
   230
                            else 0)" |
hoelzl@31467
   231
"lb_sqrt prec x = (if 0 < x then (float_divl prec x (sqrt_iteration prec prec x))
hoelzl@31467
   232
              else if x < 0 then - ub_sqrt prec (- x)
hoelzl@31467
   233
                            else 0)"
hoelzl@31467
   234
by pat_completeness auto
hoelzl@31467
   235
termination by (relation "measure (\<lambda> v. let (prec, x) = sum_case id id v in (if x < 0 then 1 else 0))", auto simp add: less_float_def)
hoelzl@29742
   236
hoelzl@31467
   237
declare lb_sqrt.simps[simp del]
hoelzl@31467
   238
declare ub_sqrt.simps[simp del]
hoelzl@29742
   239
hoelzl@29742
   240
lemma sqrt_ub_pos_pos_1:
hoelzl@29742
   241
  assumes "sqrt x < b" and "0 < b" and "0 < x"
hoelzl@29742
   242
  shows "sqrt x < (b + x / b)/2"
hoelzl@29742
   243
proof -
hoelzl@29742
   244
  from assms have "0 < (b - sqrt x) ^ 2 " by simp
hoelzl@29742
   245
  also have "\<dots> = b ^ 2 - 2 * b * sqrt x + (sqrt x) ^ 2" by algebra
hoelzl@29742
   246
  also have "\<dots> = b ^ 2 - 2 * b * sqrt x + x" using assms by (simp add: real_sqrt_pow2)
hoelzl@29742
   247
  finally have "0 < b ^ 2 - 2 * b * sqrt x + x" by assumption
hoelzl@29742
   248
  hence "0 < b / 2 - sqrt x + x / (2 * b)" using assms
hoelzl@29742
   249
    by (simp add: field_simps power2_eq_square)
hoelzl@29742
   250
  thus ?thesis by (simp add: field_simps)
hoelzl@29742
   251
qed
hoelzl@29742
   252
hoelzl@31098
   253
lemma sqrt_iteration_bound: assumes "0 < real x"
hoelzl@41126
   254
  shows "sqrt x < (sqrt_iteration prec n x)"
hoelzl@29742
   255
proof (induct n)
hoelzl@29742
   256
  case 0
hoelzl@29742
   257
  show ?case
hoelzl@29742
   258
  proof (cases x)
hoelzl@29742
   259
    case (Float m e)
hoelzl@29742
   260
    hence "0 < m" using float_pos_m_pos[unfolded less_float_def] assms by auto
hoelzl@41126
   261
    hence "0 < sqrt m" by auto
hoelzl@41126
   262
hoelzl@41126
   263
    have int_nat_bl: "(nat (bitlen m)) = bitlen m" using bitlen_ge0 by auto
hoelzl@41126
   264
hoelzl@41126
   265
    have "x = (m / 2^nat (bitlen m)) * pow2 (e + (nat (bitlen m)))"
hoelzl@31098
   266
      unfolding pow2_add pow2_int Float real_of_float_simp by auto
hoelzl@41126
   267
    also have "\<dots> < 1 * pow2 (e + nat (bitlen m))"
hoelzl@29742
   268
    proof (rule mult_strict_right_mono, auto)
hoelzl@31467
   269
      show "real m < 2^nat (bitlen m)" using bitlen_bounds[OF `0 < m`, THEN conjunct2]
wenzelm@32962
   270
        unfolding real_of_int_less_iff[of m, symmetric] by auto
hoelzl@29742
   271
    qed
hoelzl@41126
   272
    finally have "sqrt x < sqrt (pow2 (e + bitlen m))" unfolding int_nat_bl by auto
hoelzl@29742
   273
    also have "\<dots> \<le> pow2 ((e + bitlen m) div 2 + 1)"
hoelzl@29742
   274
    proof -
hoelzl@29742
   275
      let ?E = "e + bitlen m"
hoelzl@29742
   276
      have E_mod_pow: "pow2 (?E mod 2) < 4"
hoelzl@29742
   277
      proof (cases "?E mod 2 = 1")
wenzelm@32962
   278
        case True thus ?thesis by auto
hoelzl@29742
   279
      next
wenzelm@32962
   280
        case False
wenzelm@32962
   281
        have "0 \<le> ?E mod 2" by auto
wenzelm@32962
   282
        have "?E mod 2 < 2" by auto
wenzelm@32962
   283
        from this[THEN zless_imp_add1_zle]
wenzelm@32962
   284
        have "?E mod 2 \<le> 0" using False by auto
wenzelm@32962
   285
        from xt1(5)[OF `0 \<le> ?E mod 2` this]
wenzelm@32962
   286
        show ?thesis by auto
hoelzl@29742
   287
      qed
hoelzl@29742
   288
      hence "sqrt (pow2 (?E mod 2)) < sqrt (2 * 2)" by auto
hoelzl@29742
   289
      hence E_mod_pow: "sqrt (pow2 (?E mod 2)) < 2" unfolding real_sqrt_abs2 by auto
hoelzl@29742
   290
hoelzl@29742
   291
      have E_eq: "pow2 ?E = pow2 (?E div 2 + ?E div 2 + ?E mod 2)" by auto
hoelzl@29742
   292
      have "sqrt (pow2 ?E) = sqrt (pow2 (?E div 2) * pow2 (?E div 2) * pow2 (?E mod 2))"
wenzelm@32962
   293
        unfolding E_eq unfolding pow2_add ..
hoelzl@29742
   294
      also have "\<dots> = pow2 (?E div 2) * sqrt (pow2 (?E mod 2))"
wenzelm@32962
   295
        unfolding real_sqrt_mult[of _ "pow2 (?E mod 2)"] real_sqrt_abs2 by auto
hoelzl@31467
   296
      also have "\<dots> < pow2 (?E div 2) * 2"
wenzelm@32962
   297
        by (rule mult_strict_left_mono, auto intro: E_mod_pow)
hoelzl@29742
   298
      also have "\<dots> = pow2 (?E div 2 + 1)" unfolding zadd_commute[of _ 1] pow2_add1 by auto
hoelzl@29742
   299
      finally show ?thesis by auto
hoelzl@29742
   300
    qed
hoelzl@31467
   301
    finally show ?thesis
hoelzl@31098
   302
      unfolding Float sqrt_iteration.simps real_of_float_simp by auto
hoelzl@29742
   303
  qed
hoelzl@29742
   304
next
hoelzl@29742
   305
  case (Suc n)
hoelzl@29742
   306
  let ?b = "sqrt_iteration prec n x"
hoelzl@41126
   307
  have "0 < sqrt x" using `0 < real x` by auto
hoelzl@31098
   308
  also have "\<dots> < real ?b" using Suc .
hoelzl@41126
   309
  finally have "sqrt x < (?b + x / ?b)/2" using sqrt_ub_pos_pos_1[OF Suc _ `0 < real x`] by auto
hoelzl@41126
   310
  also have "\<dots> \<le> (?b + (float_divr prec x ?b))/2" by (rule divide_right_mono, auto simp add: float_divr)
hoelzl@41126
   311
  also have "\<dots> = (Float 1 -1) * (?b + (float_divr prec x ?b))" by auto
hoelzl@31098
   312
  finally show ?case unfolding sqrt_iteration.simps Let_def real_of_float_mult real_of_float_add right_distrib .
hoelzl@29742
   313
qed
hoelzl@29742
   314
hoelzl@31098
   315
lemma sqrt_iteration_lower_bound: assumes "0 < real x"
hoelzl@31098
   316
  shows "0 < real (sqrt_iteration prec n x)" (is "0 < ?sqrt")
hoelzl@29742
   317
proof -
hoelzl@41126
   318
  have "0 < sqrt x" using assms by auto
hoelzl@29742
   319
  also have "\<dots> < ?sqrt" using sqrt_iteration_bound[OF assms] .
hoelzl@29742
   320
  finally show ?thesis .
hoelzl@29742
   321
qed
hoelzl@29742
   322
hoelzl@31098
   323
lemma lb_sqrt_lower_bound: assumes "0 \<le> real x"
hoelzl@31467
   324
  shows "0 \<le> real (lb_sqrt prec x)"
hoelzl@29742
   325
proof (cases "0 < x")
hoelzl@31098
   326
  case True hence "0 < real x" and "0 \<le> x" using `0 \<le> real x` unfolding less_float_def le_float_def by auto
hoelzl@31809
   327
  hence "0 < sqrt_iteration prec prec x" unfolding less_float_def using sqrt_iteration_lower_bound by auto
hoelzl@31098
   328
  hence "0 \<le> real (float_divl prec x (sqrt_iteration prec prec x))" using float_divl_lower_bound[OF `0 \<le> x`] unfolding le_float_def by auto
hoelzl@31467
   329
  thus ?thesis unfolding lb_sqrt.simps using True by auto
hoelzl@29742
   330
next
hoelzl@31098
   331
  case False with `0 \<le> real x` have "real x = 0" unfolding less_float_def by auto
hoelzl@31467
   332
  thus ?thesis unfolding lb_sqrt.simps less_float_def by auto
hoelzl@29742
   333
qed
hoelzl@29742
   334
hoelzl@31467
   335
lemma bnds_sqrt':
hoelzl@41126
   336
  shows "sqrt x \<in> {(lb_sqrt prec x) .. (ub_sqrt prec x) }"
hoelzl@31467
   337
proof -
hoelzl@31467
   338
  { fix x :: float assume "0 < x"
hoelzl@31467
   339
    hence "0 < real x" and "0 \<le> real x" unfolding less_float_def by auto
hoelzl@41126
   340
    hence sqrt_gt0: "0 < sqrt x" by auto
hoelzl@41126
   341
    hence sqrt_ub: "sqrt x < sqrt_iteration prec prec x" using sqrt_iteration_bound by auto
hoelzl@41126
   342
hoelzl@41126
   343
    have "(float_divl prec x (sqrt_iteration prec prec x)) \<le>
hoelzl@41126
   344
          x / (sqrt_iteration prec prec x)" by (rule float_divl)
hoelzl@41126
   345
    also have "\<dots> < x / sqrt x"
hoelzl@31467
   346
      by (rule divide_strict_left_mono[OF sqrt_ub `0 < real x`
hoelzl@31467
   347
               mult_pos_pos[OF order_less_trans[OF sqrt_gt0 sqrt_ub] sqrt_gt0]])
hoelzl@41126
   348
    also have "\<dots> = sqrt x"
hoelzl@41126
   349
      unfolding inverse_eq_iff_eq[of _ "sqrt x", symmetric]
wenzelm@32962
   350
                sqrt_divide_self_eq[OF `0 \<le> real x`, symmetric] by auto
hoelzl@41126
   351
    finally have "lb_sqrt prec x \<le> sqrt x"
hoelzl@31467
   352
      unfolding lb_sqrt.simps if_P[OF `0 < x`] by auto }
hoelzl@31467
   353
  note lb = this
hoelzl@31467
   354
hoelzl@31467
   355
  { fix x :: float assume "0 < x"
hoelzl@31467
   356
    hence "0 < real x" unfolding less_float_def by auto
hoelzl@41126
   357
    hence "0 < sqrt x" by auto
hoelzl@41126
   358
    hence "sqrt x < sqrt_iteration prec prec x"
hoelzl@31467
   359
      using sqrt_iteration_bound by auto
hoelzl@41126
   360
    hence "sqrt x \<le> ub_sqrt prec x"
hoelzl@31467
   361
      unfolding ub_sqrt.simps if_P[OF `0 < x`] by auto }
hoelzl@31467
   362
  note ub = this
hoelzl@31467
   363
hoelzl@31467
   364
  show ?thesis
hoelzl@31467
   365
  proof (cases "0 < x")
hoelzl@31467
   366
    case True with lb ub show ?thesis by auto
hoelzl@31467
   367
  next case False show ?thesis
hoelzl@31467
   368
  proof (cases "real x = 0")
hoelzl@31809
   369
    case True thus ?thesis
hoelzl@31467
   370
      by (auto simp add: less_float_def lb_sqrt.simps ub_sqrt.simps)
hoelzl@31467
   371
  next
hoelzl@31467
   372
    case False with `\<not> 0 < x` have "x < 0" and "0 < -x"
hoelzl@31467
   373
      by (auto simp add: less_float_def)
hoelzl@31467
   374
hoelzl@31467
   375
    with `\<not> 0 < x`
hoelzl@31467
   376
    show ?thesis using lb[OF `0 < -x`] ub[OF `0 < -x`]
hoelzl@31467
   377
      by (auto simp add: real_sqrt_minus lb_sqrt.simps ub_sqrt.simps)
hoelzl@31467
   378
  qed qed
hoelzl@29742
   379
qed
hoelzl@29742
   380
hoelzl@41126
   381
lemma bnds_sqrt: "\<forall> (x::real) lx ux. (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"
hoelzl@31467
   382
proof ((rule allI) +, rule impI, erule conjE, rule conjI)
hoelzl@41126
   383
  fix x :: real fix lx ux
hoelzl@31467
   384
  assume "(l, u) = (lb_sqrt prec lx, ub_sqrt prec ux)"
hoelzl@41126
   385
    and x: "x \<in> {lx .. ux}"
hoelzl@31467
   386
  hence l: "l = lb_sqrt prec lx " and u: "u = ub_sqrt prec ux" by auto
hoelzl@29742
   387
hoelzl@41126
   388
  have "sqrt lx \<le> sqrt x" using x by auto
hoelzl@31467
   389
  from order_trans[OF _ this]
hoelzl@41126
   390
  show "l \<le> sqrt x" unfolding l using bnds_sqrt'[of lx prec] by auto
hoelzl@41126
   391
hoelzl@41126
   392
  have "sqrt x \<le> sqrt ux" using x by auto
hoelzl@31467
   393
  from order_trans[OF this]
hoelzl@41126
   394
  show "sqrt x \<le> u" unfolding u using bnds_sqrt'[of ux prec] by auto
hoelzl@29742
   395
qed
hoelzl@29742
   396
hoelzl@29742
   397
section "Arcus tangens and \<pi>"
hoelzl@29742
   398
hoelzl@29742
   399
subsection "Compute arcus tangens series"
hoelzl@29742
   400
hoelzl@29742
   401
text {*
hoelzl@29742
   402
hoelzl@29742
   403
As first step we implement the computation of the arcus tangens series. This is only valid in the range
hoelzl@29742
   404
@{term "{-1 :: real .. 1}"}. This is used to compute \<pi> and then the entire arcus tangens.
hoelzl@29742
   405
hoelzl@29742
   406
*}
hoelzl@29742
   407
hoelzl@29742
   408
fun ub_arctan_horner :: "nat \<Rightarrow> nat \<Rightarrow> nat \<Rightarrow> float \<Rightarrow> float"
hoelzl@29742
   409
and lb_arctan_horner :: "nat \<Rightarrow> nat \<Rightarrow> nat \<Rightarrow> float \<Rightarrow> float" where
hoelzl@29742
   410
  "ub_arctan_horner prec 0 k x = 0"
hoelzl@31809
   411
| "ub_arctan_horner prec (Suc n) k x =
hoelzl@41126
   412
    (rapprox_rat prec 1 k) - x * (lb_arctan_horner prec n (k + 2) x)"
hoelzl@29742
   413
| "lb_arctan_horner prec 0 k x = 0"
hoelzl@31809
   414
| "lb_arctan_horner prec (Suc n) k x =
hoelzl@41126
   415
    (lapprox_rat prec 1 k) - x * (ub_arctan_horner prec n (k + 2) x)"
hoelzl@29742
   416
hoelzl@31098
   417
lemma arctan_0_1_bounds': assumes "0 \<le> real x" "real x \<le> 1" and "even n"
hoelzl@41126
   418
  shows "arctan x \<in> {(x * lb_arctan_horner prec n 1 (x * x)) .. (x * ub_arctan_horner prec (Suc n) 1 (x * x))}"
hoelzl@29742
   419
proof -
hoelzl@41126
   420
  let "?c i" = "-1^i * (1 / (i * 2 + (1::nat)) * real x ^ (i * 2 + 1))"
hoelzl@29742
   421
  let "?S n" = "\<Sum> i=0..<n. ?c i"
hoelzl@29742
   422
hoelzl@31098
   423
  have "0 \<le> real (x * x)" by auto
hoelzl@29742
   424
  from `even n` obtain m where "2 * m = n" unfolding even_mult_two_ex by auto
hoelzl@31809
   425
hoelzl@41126
   426
  have "arctan x \<in> { ?S n .. ?S (Suc n) }"
hoelzl@31098
   427
  proof (cases "real x = 0")
hoelzl@29742
   428
    case False
hoelzl@31098
   429
    hence "0 < real x" using `0 \<le> real x` by auto
hoelzl@41126
   430
    hence prem: "0 < 1 / (0 * 2 + (1::nat)) * real x ^ (0 * 2 + 1)" by auto
hoelzl@29742
   431
hoelzl@31098
   432
    have "\<bar> real x \<bar> \<le> 1"  using `0 \<le> real x` `real x \<le> 1` by auto
hoelzl@29742
   433
    from mp[OF summable_Leibniz(2)[OF zeroseq_arctan_series[OF this] monoseq_arctan_series[OF this]] prem, THEN spec, of m, unfolded `2 * m = n`]
nipkow@31790
   434
    show ?thesis unfolding arctan_series[OF `\<bar> real x \<bar> \<le> 1`] Suc_eq_plus1  .
hoelzl@29742
   435
  qed auto
hoelzl@29742
   436
  note arctan_bounds = this[unfolded atLeastAtMost_iff]
hoelzl@29742
   437
hoelzl@29742
   438
  have F: "\<And>n. 2 * Suc n + 1 = 2 * n + 1 + 2" by auto
hoelzl@29742
   439
hoelzl@31809
   440
  note bounds = horner_bounds[where s=1 and f="\<lambda>i. 2 * i + 1" and j'=0
hoelzl@29742
   441
    and lb="\<lambda>n i k x. lb_arctan_horner prec n k x"
hoelzl@31809
   442
    and ub="\<lambda>n i k x. ub_arctan_horner prec n k x",
hoelzl@31098
   443
    OF `0 \<le> real (x*x)` F lb_arctan_horner.simps ub_arctan_horner.simps]
hoelzl@29742
   444
hoelzl@41126
   445
  { have "(x * lb_arctan_horner prec n 1 (x*x)) \<le> ?S n"
hoelzl@31098
   446
      using bounds(1) `0 \<le> real x`
huffman@36770
   447
      unfolding real_of_float_mult power_add power_one_right mult_assoc[symmetric] setsum_left_distrib[symmetric]
huffman@36770
   448
      unfolding mult_commute[where 'a=real] mult_commute[of _ "2::nat"] power_mult power2_eq_square[of "real x"]
hoelzl@29742
   449
      by (auto intro!: mult_left_mono)
hoelzl@41126
   450
    also have "\<dots> \<le> arctan x" using arctan_bounds ..
hoelzl@41126
   451
    finally have "(x * lb_arctan_horner prec n 1 (x*x)) \<le> arctan x" . }
hoelzl@29742
   452
  moreover
hoelzl@41126
   453
  { have "arctan x \<le> ?S (Suc n)" using arctan_bounds ..
hoelzl@41126
   454
    also have "\<dots> \<le> (x * ub_arctan_horner prec (Suc n) 1 (x*x))"
hoelzl@31098
   455
      using bounds(2)[of "Suc n"] `0 \<le> real x`
huffman@36770
   456
      unfolding real_of_float_mult power_add power_one_right mult_assoc[symmetric] setsum_left_distrib[symmetric]
huffman@36770
   457
      unfolding mult_commute[where 'a=real] mult_commute[of _ "2::nat"] power_mult power2_eq_square[of "real x"]
hoelzl@29742
   458
      by (auto intro!: mult_left_mono)
hoelzl@41126
   459
    finally have "arctan x \<le> (x * ub_arctan_horner prec (Suc n) 1 (x*x))" . }
hoelzl@29742
   460
  ultimately show ?thesis by auto
hoelzl@29742
   461
qed
hoelzl@29742
   462
hoelzl@31098
   463
lemma arctan_0_1_bounds: assumes "0 \<le> real x" "real x \<le> 1"
hoelzl@41126
   464
  shows "arctan x \<in> {(x * lb_arctan_horner prec (get_even n) 1 (x * x)) .. (x * ub_arctan_horner prec (get_odd n) 1 (x * x))}"
hoelzl@29742
   465
proof (cases "even n")
hoelzl@29742
   466
  case True
hoelzl@29742
   467
  obtain n' where "Suc n' = get_odd n" and "odd (Suc n')" using get_odd_ex by auto
nipkow@31148
   468
  hence "even n'" unfolding even_Suc by auto
hoelzl@41126
   469
  have "arctan x \<le> x * ub_arctan_horner prec (get_odd n) 1 (x * x)"
hoelzl@31098
   470
    unfolding `Suc n' = get_odd n`[symmetric] using arctan_0_1_bounds'[OF `0 \<le> real x` `real x \<le> 1` `even n'`] by auto
hoelzl@29742
   471
  moreover
hoelzl@41126
   472
  have "x * lb_arctan_horner prec (get_even n) 1 (x * x) \<le> arctan x"
hoelzl@31098
   473
    unfolding get_even_def if_P[OF True] using arctan_0_1_bounds'[OF `0 \<le> real x` `real x \<le> 1` `even n`] by auto
hoelzl@29742
   474
  ultimately show ?thesis by auto
hoelzl@29742
   475
next
hoelzl@29742
   476
  case False hence "0 < n" by (rule odd_pos)
hoelzl@29742
   477
  from gr0_implies_Suc[OF this] obtain n' where "n = Suc n'" ..
nipkow@31148
   478
  from False[unfolded this even_Suc]
hoelzl@29742
   479
  have "even n'" and "even (Suc (Suc n'))" by auto
hoelzl@29742
   480
  have "get_odd n = Suc n'" unfolding get_odd_def if_P[OF False] using `n = Suc n'` .
hoelzl@29742
   481
hoelzl@41126
   482
  have "arctan x \<le> x * ub_arctan_horner prec (get_odd n) 1 (x * x)"
hoelzl@31098
   483
    unfolding `get_odd n = Suc n'` using arctan_0_1_bounds'[OF `0 \<le> real x` `real x \<le> 1` `even n'`] by auto
hoelzl@29742
   484
  moreover
hoelzl@41126
   485
  have "(x * lb_arctan_horner prec (get_even n) 1 (x * x)) \<le> arctan x"
hoelzl@31098
   486
    unfolding get_even_def if_not_P[OF False] unfolding `n = Suc n'` using arctan_0_1_bounds'[OF `0 \<le> real x` `real x \<le> 1` `even (Suc (Suc n'))`] by auto
hoelzl@29742
   487
  ultimately show ?thesis by auto
hoelzl@29742
   488
qed
hoelzl@29742
   489
hoelzl@29742
   490
subsection "Compute \<pi>"
hoelzl@29742
   491
hoelzl@29742
   492
definition ub_pi :: "nat \<Rightarrow> float" where
hoelzl@31809
   493
  "ub_pi prec = (let A = rapprox_rat prec 1 5 ;
hoelzl@29742
   494
                     B = lapprox_rat prec 1 239
hoelzl@31809
   495
                 in ((Float 1 2) * ((Float 1 2) * A * (ub_arctan_horner prec (get_odd (prec div 4 + 1)) 1 (A * A)) -
hoelzl@29742
   496
                                                  B * (lb_arctan_horner prec (get_even (prec div 14 + 1)) 1 (B * B)))))"
hoelzl@29742
   497
hoelzl@29742
   498
definition lb_pi :: "nat \<Rightarrow> float" where
hoelzl@31809
   499
  "lb_pi prec = (let A = lapprox_rat prec 1 5 ;
hoelzl@29742
   500
                     B = rapprox_rat prec 1 239
hoelzl@31809
   501
                 in ((Float 1 2) * ((Float 1 2) * A * (lb_arctan_horner prec (get_even (prec div 4 + 1)) 1 (A * A)) -
hoelzl@29742
   502
                                                  B * (ub_arctan_horner prec (get_odd (prec div 14 + 1)) 1 (B * B)))))"
hoelzl@29742
   503
hoelzl@41126
   504
lemma pi_boundaries: "pi \<in> {(lb_pi n) .. (ub_pi n)}"
hoelzl@29742
   505
proof -
hoelzl@29742
   506
  have machin_pi: "pi = 4 * (4 * arctan (1 / 5) - arctan (1 / 239))" unfolding machin[symmetric] by auto
hoelzl@29742
   507
hoelzl@29742
   508
  { fix prec n :: nat fix k :: int assume "1 < k" hence "0 \<le> k" and "0 < k" and "1 \<le> k" by auto
hoelzl@29742
   509
    let ?k = "rapprox_rat prec 1 k"
hoelzl@29742
   510
    have "1 div k = 0" using div_pos_pos_trivial[OF _ `1 < k`] by auto
hoelzl@31809
   511
hoelzl@31098
   512
    have "0 \<le> real ?k" by (rule order_trans[OF _ rapprox_rat], auto simp add: `0 \<le> k`)
hoelzl@31098
   513
    have "real ?k \<le> 1" unfolding rapprox_rat.simps(2)[OF zero_le_one `0 < k`]
hoelzl@29742
   514
      by (rule rapprox_posrat_le1, auto simp add: `0 < k` `1 \<le> k`)
hoelzl@29742
   515
hoelzl@41126
   516
    have "1 / k \<le> ?k" using rapprox_rat[where x=1 and y=k] by auto
hoelzl@41126
   517
    hence "arctan (1 / k) \<le> arctan ?k" by (rule arctan_monotone')
hoelzl@41126
   518
    also have "\<dots> \<le> (?k * ub_arctan_horner prec (get_odd n) 1 (?k * ?k))"
hoelzl@31098
   519
      using arctan_0_1_bounds[OF `0 \<le> real ?k` `real ?k \<le> 1`] by auto
hoelzl@41126
   520
    finally have "arctan (1 / k) \<le> ?k * ub_arctan_horner prec (get_odd n) 1 (?k * ?k)" .
hoelzl@29742
   521
  } note ub_arctan = this
hoelzl@29742
   522
hoelzl@29742
   523
  { fix prec n :: nat fix k :: int assume "1 < k" hence "0 \<le> k" and "0 < k" by auto
hoelzl@29742
   524
    let ?k = "lapprox_rat prec 1 k"
hoelzl@29742
   525
    have "1 div k = 0" using div_pos_pos_trivial[OF _ `1 < k`] by auto
hoelzl@41126
   526
    have "1 / k \<le> 1" using `1 < k` by auto
hoelzl@29742
   527
hoelzl@31098
   528
    have "\<And>n. 0 \<le> real ?k" using lapprox_rat_bottom[where x=1 and y=k, OF zero_le_one `0 < k`] by (auto simp add: `1 div k = 0`)
hoelzl@41126
   529
    have "\<And>n. real ?k \<le> 1" using lapprox_rat by (rule order_trans, auto simp add: `1 / k \<le> 1`)
hoelzl@41126
   530
hoelzl@41126
   531
    have "?k \<le> 1 / k" using lapprox_rat[where x=1 and y=k] by auto
hoelzl@41126
   532
hoelzl@41126
   533
    have "?k * lb_arctan_horner prec (get_even n) 1 (?k * ?k) \<le> arctan ?k"
hoelzl@31098
   534
      using arctan_0_1_bounds[OF `0 \<le> real ?k` `real ?k \<le> 1`] by auto
hoelzl@41126
   535
    also have "\<dots> \<le> arctan (1 / k)" using `?k \<le> 1 / k` by (rule arctan_monotone')
hoelzl@41126
   536
    finally have "?k * lb_arctan_horner prec (get_even n) 1 (?k * ?k) \<le> arctan (1 / k)" .
hoelzl@29742
   537
  } note lb_arctan = this
hoelzl@29742
   538
hoelzl@41126
   539
  have "pi \<le> ub_pi n"
hoelzl@31098
   540
    unfolding ub_pi_def machin_pi Let_def real_of_float_mult real_of_float_sub unfolding Float_num
hoelzl@29742
   541
    using lb_arctan[of 239] ub_arctan[of 5]
hoelzl@29742
   542
    by (auto intro!: mult_left_mono add_mono simp add: diff_minus simp del: lapprox_rat.simps rapprox_rat.simps)
hoelzl@29742
   543
  moreover
hoelzl@41126
   544
  have "lb_pi n \<le> pi"
hoelzl@31098
   545
    unfolding lb_pi_def machin_pi Let_def real_of_float_mult real_of_float_sub Float_num
hoelzl@29742
   546
    using lb_arctan[of 5] ub_arctan[of 239]
hoelzl@29742
   547
    by (auto intro!: mult_left_mono add_mono simp add: diff_minus simp del: lapprox_rat.simps rapprox_rat.simps)
hoelzl@29742
   548
  ultimately show ?thesis by auto
hoelzl@29742
   549
qed
hoelzl@29742
   550
hoelzl@29742
   551
subsection "Compute arcus tangens in the entire domain"
hoelzl@29742
   552
hoelzl@31467
   553
function lb_arctan :: "nat \<Rightarrow> float \<Rightarrow> float" and ub_arctan :: "nat \<Rightarrow> float \<Rightarrow> float" where
hoelzl@29742
   554
  "lb_arctan prec x = (let ub_horner = \<lambda> x. x * ub_arctan_horner prec (get_odd (prec div 4 + 1)) 1 (x * x) ;
hoelzl@29742
   555
                           lb_horner = \<lambda> x. x * lb_arctan_horner prec (get_even (prec div 4 + 1)) 1 (x * x)
hoelzl@29742
   556
    in (if x < 0          then - ub_arctan prec (-x) else
hoelzl@29742
   557
        if x \<le> Float 1 -1 then lb_horner x else
hoelzl@31467
   558
        if x \<le> Float 1 1  then Float 1 1 * lb_horner (float_divl prec x (1 + ub_sqrt prec (1 + x * x)))
hoelzl@31467
   559
                          else (let inv = float_divr prec 1 x
hoelzl@31467
   560
                                in if inv > 1 then 0
hoelzl@29742
   561
                                              else lb_pi prec * Float 1 -1 - ub_horner inv)))"
hoelzl@29742
   562
hoelzl@29742
   563
| "ub_arctan prec x = (let lb_horner = \<lambda> x. x * lb_arctan_horner prec (get_even (prec div 4 + 1)) 1 (x * x) ;
hoelzl@29742
   564
                           ub_horner = \<lambda> x. x * ub_arctan_horner prec (get_odd (prec div 4 + 1)) 1 (x * x)
hoelzl@29742
   565
    in (if x < 0          then - lb_arctan prec (-x) else
hoelzl@29742
   566
        if x \<le> Float 1 -1 then ub_horner x else
hoelzl@31467
   567
        if x \<le> Float 1 1  then let y = float_divr prec x (1 + lb_sqrt prec (1 + x * x))
hoelzl@31467
   568
                               in if y > 1 then ub_pi prec * Float 1 -1
hoelzl@31467
   569
                                           else Float 1 1 * ub_horner y
hoelzl@29742
   570
                          else ub_pi prec * Float 1 -1 - lb_horner (float_divl prec 1 x)))"
hoelzl@29742
   571
by pat_completeness auto
hoelzl@29742
   572
termination by (relation "measure (\<lambda> v. let (prec, x) = sum_case id id v in (if x < 0 then 1 else 0))", auto simp add: less_float_def)
hoelzl@29742
   573
hoelzl@29742
   574
declare ub_arctan_horner.simps[simp del]
hoelzl@29742
   575
declare lb_arctan_horner.simps[simp del]
hoelzl@29742
   576
hoelzl@31098
   577
lemma lb_arctan_bound': assumes "0 \<le> real x"
hoelzl@41126
   578
  shows "lb_arctan prec x \<le> arctan x"
hoelzl@29742
   579
proof -
hoelzl@31098
   580
  have "\<not> x < 0" and "0 \<le> x" unfolding less_float_def le_float_def using `0 \<le> real x` by auto
hoelzl@29742
   581
  let "?ub_horner x" = "x * ub_arctan_horner prec (get_odd (prec div 4 + 1)) 1 (x * x)"
hoelzl@29742
   582
    and "?lb_horner x" = "x * lb_arctan_horner prec (get_even (prec div 4 + 1)) 1 (x * x)"
hoelzl@29742
   583
hoelzl@29742
   584
  show ?thesis
hoelzl@29742
   585
  proof (cases "x \<le> Float 1 -1")
hoelzl@31098
   586
    case True hence "real x \<le> 1" unfolding le_float_def Float_num by auto
hoelzl@29742
   587
    show ?thesis unfolding lb_arctan.simps Let_def if_not_P[OF `\<not> x < 0`] if_P[OF True]
hoelzl@31098
   588
      using arctan_0_1_bounds[OF `0 \<le> real x` `real x \<le> 1`] by auto
hoelzl@29742
   589
  next
hoelzl@31098
   590
    case False hence "0 < real x" unfolding le_float_def Float_num by auto
hoelzl@31098
   591
    let ?R = "1 + sqrt (1 + real x * real x)"
hoelzl@31467
   592
    let ?fR = "1 + ub_sqrt prec (1 + x * x)"
hoelzl@29742
   593
    let ?DIV = "float_divl prec x ?fR"
hoelzl@31467
   594
hoelzl@31098
   595
    have sqr_ge0: "0 \<le> 1 + real x * real x" using sum_power2_ge_zero[of 1 "real x", unfolded numeral_2_eq_2] by auto
hoelzl@29742
   596
    hence divisor_gt0: "0 < ?R" by (auto intro: add_pos_nonneg)
hoelzl@29742
   597
hoelzl@41126
   598
    have "sqrt (1 + x * x) \<le> ub_sqrt prec (1 + x * x)"
hoelzl@31467
   599
      using bnds_sqrt'[of "1 + x * x"] by auto
hoelzl@31467
   600
hoelzl@41126
   601
    hence "?R \<le> ?fR" by auto
hoelzl@31098
   602
    hence "0 < ?fR" and "0 < real ?fR" unfolding less_float_def using `0 < ?R` by auto
hoelzl@29742
   603
hoelzl@41126
   604
    have monotone: "(float_divl prec x ?fR) \<le> x / ?R"
hoelzl@29742
   605
    proof -
hoelzl@41126
   606
      have "?DIV \<le> real x / ?fR" by (rule float_divl)
hoelzl@41126
   607
      also have "\<dots> \<le> x / ?R" by (rule divide_left_mono[OF `?R \<le> ?fR` `0 \<le> real x` mult_pos_pos[OF order_less_le_trans[OF divisor_gt0 `?R \<le> real ?fR`] divisor_gt0]])
hoelzl@29742
   608
      finally show ?thesis .
hoelzl@29742
   609
    qed
hoelzl@29742
   610
hoelzl@29742
   611
    show ?thesis
hoelzl@29742
   612
    proof (cases "x \<le> Float 1 1")
hoelzl@29742
   613
      case True
hoelzl@31467
   614
hoelzl@41126
   615
      have "x \<le> sqrt (1 + x * x)" using real_sqrt_sum_squares_ge2[where x=1, unfolded numeral_2_eq_2] by auto
hoelzl@41126
   616
      also have "\<dots> \<le> (ub_sqrt prec (1 + x * x))"
wenzelm@32962
   617
        using bnds_sqrt'[of "1 + x * x"] by auto
hoelzl@41126
   618
      finally have "real x \<le> ?fR" by auto
hoelzl@41126
   619
      moreover have "?DIV \<le> real x / ?fR" by (rule float_divl)
hoelzl@31098
   620
      ultimately have "real ?DIV \<le> 1" unfolding divide_le_eq_1_pos[OF `0 < real ?fR`, symmetric] by auto
hoelzl@29742
   621
hoelzl@31098
   622
      have "0 \<le> real ?DIV" using float_divl_lower_bound[OF `0 \<le> x` `0 < ?fR`] unfolding le_float_def by auto
hoelzl@29742
   623
hoelzl@41126
   624
      have "(Float 1 1 * ?lb_horner ?DIV) \<le> 2 * arctan (float_divl prec x ?fR)" unfolding real_of_float_mult[of "Float 1 1"] Float_num
wenzelm@32962
   625
        using arctan_0_1_bounds[OF `0 \<le> real ?DIV` `real ?DIV \<le> 1`] by auto
hoelzl@41126
   626
      also have "\<dots> \<le> 2 * arctan (x / ?R)"
wenzelm@32962
   627
        using arctan_monotone'[OF monotone] by (auto intro!: mult_left_mono)
hoelzl@41126
   628
      also have "2 * arctan (x / ?R) = arctan x" using arctan_half[symmetric] unfolding numeral_2_eq_2 power_Suc2 power_0 mult_1_left .
hoelzl@29742
   629
      finally show ?thesis unfolding lb_arctan.simps Let_def if_not_P[OF `\<not> x < 0`] if_not_P[OF `\<not> x \<le> Float 1 -1`] if_P[OF True] .
hoelzl@29742
   630
    next
hoelzl@29742
   631
      case False
hoelzl@31098
   632
      hence "2 < real x" unfolding le_float_def Float_num by auto
hoelzl@31098
   633
      hence "1 \<le> real x" by auto
hoelzl@29742
   634
hoelzl@29742
   635
      let "?invx" = "float_divr prec 1 x"
hoelzl@41126
   636
      have "0 \<le> arctan x" using arctan_monotone'[OF `0 \<le> real x`] using arctan_tan[of 0, unfolded tan_zero] by auto
hoelzl@29742
   637
hoelzl@29742
   638
      show ?thesis
hoelzl@29742
   639
      proof (cases "1 < ?invx")
wenzelm@32962
   640
        case True
wenzelm@32962
   641
        show ?thesis unfolding lb_arctan.simps Let_def if_not_P[OF `\<not> x < 0`] if_not_P[OF `\<not> x \<le> Float 1 -1`] if_not_P[OF False] if_P[OF True]
hoelzl@41126
   642
          using `0 \<le> arctan x` by auto
hoelzl@29742
   643
      next
wenzelm@32962
   644
        case False
wenzelm@32962
   645
        hence "real ?invx \<le> 1" unfolding less_float_def by auto
wenzelm@32962
   646
        have "0 \<le> real ?invx" by (rule order_trans[OF _ float_divr], auto simp add: `0 \<le> real x`)
wenzelm@32962
   647
hoelzl@41126
   648
        have "1 / x \<noteq> 0" and "0 < 1 / x" using `0 < real x` by auto
hoelzl@41126
   649
hoelzl@41126
   650
        have "arctan (1 / x) \<le> arctan ?invx" unfolding real_of_float_1[symmetric] by (rule arctan_monotone', rule float_divr)
hoelzl@41126
   651
        also have "\<dots> \<le> (?ub_horner ?invx)" using arctan_0_1_bounds[OF `0 \<le> real ?invx` `real ?invx \<le> 1`] by auto
hoelzl@41126
   652
        finally have "pi / 2 - (?ub_horner ?invx) \<le> arctan x"
hoelzl@41126
   653
          using `0 \<le> arctan x` arctan_inverse[OF `1 / x \<noteq> 0`]
wenzelm@32962
   654
          unfolding real_sgn_pos[OF `0 < 1 / real x`] le_diff_eq by auto
wenzelm@32962
   655
        moreover
hoelzl@41126
   656
        have "lb_pi prec * Float 1 -1 \<le> pi / 2" unfolding real_of_float_mult Float_num times_divide_eq_right mult_1_left using pi_boundaries by auto
wenzelm@32962
   657
        ultimately
wenzelm@32962
   658
        show ?thesis unfolding lb_arctan.simps Let_def if_not_P[OF `\<not> x < 0`] if_not_P[OF `\<not> x \<le> Float 1 -1`] if_not_P[OF `\<not> x \<le> Float 1 1`] if_not_P[OF False]
wenzelm@32962
   659
          by auto
hoelzl@29742
   660
      qed
hoelzl@29742
   661
    qed
hoelzl@29742
   662
  qed
hoelzl@29742
   663
qed
hoelzl@29742
   664
hoelzl@31098
   665
lemma ub_arctan_bound': assumes "0 \<le> real x"
hoelzl@41126
   666
  shows "arctan x \<le> ub_arctan prec x"
hoelzl@29742
   667
proof -
hoelzl@31098
   668
  have "\<not> x < 0" and "0 \<le> x" unfolding less_float_def le_float_def using `0 \<le> real x` by auto
hoelzl@29742
   669
hoelzl@29742
   670
  let "?ub_horner x" = "x * ub_arctan_horner prec (get_odd (prec div 4 + 1)) 1 (x * x)"
hoelzl@29742
   671
    and "?lb_horner x" = "x * lb_arctan_horner prec (get_even (prec div 4 + 1)) 1 (x * x)"
hoelzl@29742
   672
hoelzl@29742
   673
  show ?thesis
hoelzl@29742
   674
  proof (cases "x \<le> Float 1 -1")
hoelzl@31098
   675
    case True hence "real x \<le> 1" unfolding le_float_def Float_num by auto
hoelzl@29742
   676
    show ?thesis unfolding ub_arctan.simps Let_def if_not_P[OF `\<not> x < 0`] if_P[OF True]
hoelzl@31098
   677
      using arctan_0_1_bounds[OF `0 \<le> real x` `real x \<le> 1`] by auto
hoelzl@29742
   678
  next
hoelzl@31098
   679
    case False hence "0 < real x" unfolding le_float_def Float_num by auto
hoelzl@31098
   680
    let ?R = "1 + sqrt (1 + real x * real x)"
hoelzl@31467
   681
    let ?fR = "1 + lb_sqrt prec (1 + x * x)"
hoelzl@29742
   682
    let ?DIV = "float_divr prec x ?fR"
hoelzl@31467
   683
hoelzl@31098
   684
    have sqr_ge0: "0 \<le> 1 + real x * real x" using sum_power2_ge_zero[of 1 "real x", unfolded numeral_2_eq_2] by auto
hoelzl@31098
   685
    hence "0 \<le> real (1 + x*x)" by auto
hoelzl@31467
   686
hoelzl@29742
   687
    hence divisor_gt0: "0 < ?R" by (auto intro: add_pos_nonneg)
hoelzl@29742
   688
hoelzl@41126
   689
    have "lb_sqrt prec (1 + x * x) \<le> sqrt (1 + x * x)"
hoelzl@31467
   690
      using bnds_sqrt'[of "1 + x * x"] by auto
hoelzl@41126
   691
    hence "?fR \<le> ?R" by auto
hoelzl@31098
   692
    have "0 < real ?fR" unfolding real_of_float_add real_of_float_1 by (rule order_less_le_trans[OF zero_less_one], auto simp add: lb_sqrt_lower_bound[OF `0 \<le> real (1 + x*x)`])
hoelzl@29742
   693
hoelzl@41126
   694
    have monotone: "x / ?R \<le> (float_divr prec x ?fR)"
hoelzl@29742
   695
    proof -
hoelzl@41126
   696
      from divide_left_mono[OF `?fR \<le> ?R` `0 \<le> real x` mult_pos_pos[OF divisor_gt0 `0 < real ?fR`]]
hoelzl@41126
   697
      have "x / ?R \<le> x / ?fR" .
hoelzl@41126
   698
      also have "\<dots> \<le> ?DIV" by (rule float_divr)
hoelzl@29742
   699
      finally show ?thesis .
hoelzl@29742
   700
    qed
hoelzl@29742
   701
hoelzl@29742
   702
    show ?thesis
hoelzl@29742
   703
    proof (cases "x \<le> Float 1 1")
hoelzl@29742
   704
      case True
hoelzl@29742
   705
      show ?thesis
hoelzl@29742
   706
      proof (cases "?DIV > 1")
wenzelm@32962
   707
        case True
hoelzl@41126
   708
        have "pi / 2 \<le> ub_pi prec * Float 1 -1" unfolding real_of_float_mult Float_num times_divide_eq_right mult_1_left using pi_boundaries by auto
wenzelm@32962
   709
        from order_less_le_trans[OF arctan_ubound this, THEN less_imp_le]
wenzelm@32962
   710
        show ?thesis unfolding ub_arctan.simps Let_def if_not_P[OF `\<not> x < 0`] if_not_P[OF `\<not> x \<le> Float 1 -1`] if_P[OF `x \<le> Float 1 1`] if_P[OF True] .
hoelzl@29742
   711
      next
wenzelm@32962
   712
        case False
wenzelm@32962
   713
        hence "real ?DIV \<le> 1" unfolding less_float_def by auto
wenzelm@32962
   714
hoelzl@41126
   715
        have "0 \<le> x / ?R" using `0 \<le> real x` `0 < ?R` unfolding real_0_le_divide_iff by auto
wenzelm@32962
   716
        hence "0 \<le> real ?DIV" using monotone by (rule order_trans)
wenzelm@32962
   717
hoelzl@41126
   718
        have "arctan x = 2 * arctan (x / ?R)" using arctan_half unfolding numeral_2_eq_2 power_Suc2 power_0 mult_1_left .
hoelzl@41126
   719
        also have "\<dots> \<le> 2 * arctan (?DIV)"
wenzelm@32962
   720
          using arctan_monotone'[OF monotone] by (auto intro!: mult_left_mono)
hoelzl@41126
   721
        also have "\<dots> \<le> (Float 1 1 * ?ub_horner ?DIV)" unfolding real_of_float_mult[of "Float 1 1"] Float_num
wenzelm@32962
   722
          using arctan_0_1_bounds[OF `0 \<le> real ?DIV` `real ?DIV \<le> 1`] by auto
wenzelm@32962
   723
        finally show ?thesis unfolding ub_arctan.simps Let_def if_not_P[OF `\<not> x < 0`] if_not_P[OF `\<not> x \<le> Float 1 -1`] if_P[OF `x \<le> Float 1 1`] if_not_P[OF False] .
hoelzl@29742
   724
      qed
hoelzl@29742
   725
    next
hoelzl@29742
   726
      case False
hoelzl@31098
   727
      hence "2 < real x" unfolding le_float_def Float_num by auto
hoelzl@31098
   728
      hence "1 \<le> real x" by auto
hoelzl@31098
   729
      hence "0 < real x" by auto
hoelzl@29742
   730
      hence "0 < x" unfolding less_float_def by auto
hoelzl@29742
   731
hoelzl@29742
   732
      let "?invx" = "float_divl prec 1 x"
hoelzl@41126
   733
      have "0 \<le> arctan x" using arctan_monotone'[OF `0 \<le> real x`] using arctan_tan[of 0, unfolded tan_zero] by auto
hoelzl@29742
   734
hoelzl@31098
   735
      have "real ?invx \<le> 1" unfolding less_float_def by (rule order_trans[OF float_divl], auto simp add: `1 \<le> real x` divide_le_eq_1_pos[OF `0 < real x`])
hoelzl@31098
   736
      have "0 \<le> real ?invx" unfolding real_of_float_0[symmetric] by (rule float_divl_lower_bound[unfolded le_float_def], auto simp add: `0 < x`)
hoelzl@31467
   737
hoelzl@41126
   738
      have "1 / x \<noteq> 0" and "0 < 1 / x" using `0 < real x` by auto
hoelzl@41126
   739
hoelzl@41126
   740
      have "(?lb_horner ?invx) \<le> arctan (?invx)" using arctan_0_1_bounds[OF `0 \<le> real ?invx` `real ?invx \<le> 1`] by auto
hoelzl@41126
   741
      also have "\<dots> \<le> arctan (1 / x)" unfolding real_of_float_1[symmetric] by (rule arctan_monotone', rule float_divl)
hoelzl@41126
   742
      finally have "arctan x \<le> pi / 2 - (?lb_horner ?invx)"
hoelzl@41126
   743
        using `0 \<le> arctan x` arctan_inverse[OF `1 / x \<noteq> 0`]
hoelzl@41126
   744
        unfolding real_sgn_pos[OF `0 < 1 / x`] le_diff_eq by auto
hoelzl@29742
   745
      moreover
hoelzl@41126
   746
      have "pi / 2 \<le> ub_pi prec * Float 1 -1" unfolding real_of_float_mult Float_num times_divide_eq_right mult_1_right using pi_boundaries by auto
hoelzl@29742
   747
      ultimately
hoelzl@29742
   748
      show ?thesis unfolding ub_arctan.simps Let_def if_not_P[OF `\<not> x < 0`] if_not_P[OF `\<not> x \<le> Float 1 -1`] if_not_P[OF `\<not> x \<le> Float 1 1`] if_not_P[OF False]
wenzelm@32962
   749
        by auto
hoelzl@29742
   750
    qed
hoelzl@29742
   751
  qed
hoelzl@29742
   752
qed
hoelzl@29742
   753
hoelzl@29742
   754
lemma arctan_boundaries:
hoelzl@41126
   755
  "arctan x \<in> {(lb_arctan prec x) .. (ub_arctan prec x)}"
hoelzl@29742
   756
proof (cases "0 \<le> x")
hoelzl@31098
   757
  case True hence "0 \<le> real x" unfolding le_float_def by auto
hoelzl@31098
   758
  show ?thesis using ub_arctan_bound'[OF `0 \<le> real x`] lb_arctan_bound'[OF `0 \<le> real x`] unfolding atLeastAtMost_iff by auto
hoelzl@29742
   759
next
hoelzl@29742
   760
  let ?mx = "-x"
hoelzl@31098
   761
  case False hence "x < 0" and "0 \<le> real ?mx" unfolding le_float_def less_float_def by auto
hoelzl@41126
   762
  hence bounds: "lb_arctan prec ?mx \<le> arctan ?mx \<and> arctan ?mx \<le> ub_arctan prec ?mx"
hoelzl@31098
   763
    using ub_arctan_bound'[OF `0 \<le> real ?mx`] lb_arctan_bound'[OF `0 \<le> real ?mx`] by auto
hoelzl@31098
   764
  show ?thesis unfolding real_of_float_minus arctan_minus lb_arctan.simps[where x=x] ub_arctan.simps[where x=x] Let_def if_P[OF `x < 0`]
hoelzl@31098
   765
    unfolding atLeastAtMost_iff using bounds[unfolded real_of_float_minus arctan_minus] by auto
hoelzl@29742
   766
qed
hoelzl@29742
   767
hoelzl@41126
   768
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"
hoelzl@29742
   769
proof (rule allI, rule allI, rule allI, rule impI)
hoelzl@41126
   770
  fix x :: real fix lx ux
hoelzl@41126
   771
  assume "(l, u) = (lb_arctan prec lx, ub_arctan prec ux) \<and> x \<in> {lx .. ux}"
hoelzl@41126
   772
  hence l: "lb_arctan prec lx = l " and u: "ub_arctan prec ux = u" and x: "x \<in> {lx .. ux}" by auto
hoelzl@29742
   773
hoelzl@29742
   774
  { from arctan_boundaries[of lx prec, unfolded l]
hoelzl@41126
   775
    have "l \<le> arctan lx" by (auto simp del: lb_arctan.simps)
hoelzl@29742
   776
    also have "\<dots> \<le> arctan x" using x by (auto intro: arctan_monotone')
hoelzl@41126
   777
    finally have "l \<le> arctan x" .
hoelzl@29742
   778
  } moreover
hoelzl@41126
   779
  { have "arctan x \<le> arctan ux" using x by (auto intro: arctan_monotone')
hoelzl@41126
   780
    also have "\<dots> \<le> u" using arctan_boundaries[of ux prec, unfolded u] by (auto simp del: ub_arctan.simps)
hoelzl@41126
   781
    finally have "arctan x \<le> u" .
hoelzl@41126
   782
  } ultimately show "l \<le> arctan x \<and> arctan x \<le> u" ..
hoelzl@29742
   783
qed
hoelzl@29742
   784
hoelzl@29742
   785
section "Sinus and Cosinus"
hoelzl@29742
   786
hoelzl@29742
   787
subsection "Compute the cosinus and sinus series"
hoelzl@29742
   788
hoelzl@29742
   789
fun ub_sin_cos_aux :: "nat \<Rightarrow> nat \<Rightarrow> nat \<Rightarrow> nat \<Rightarrow> float \<Rightarrow> float"
hoelzl@29742
   790
and lb_sin_cos_aux :: "nat \<Rightarrow> nat \<Rightarrow> nat \<Rightarrow> nat \<Rightarrow> float \<Rightarrow> float" where
hoelzl@29742
   791
  "ub_sin_cos_aux prec 0 i k x = 0"
hoelzl@31809
   792
| "ub_sin_cos_aux prec (Suc n) i k x =
hoelzl@41126
   793
    (rapprox_rat prec 1 k) - x * (lb_sin_cos_aux prec n (i + 2) (k * i * (i + 1)) x)"
hoelzl@29742
   794
| "lb_sin_cos_aux prec 0 i k x = 0"
hoelzl@31809
   795
| "lb_sin_cos_aux prec (Suc n) i k x =
hoelzl@41126
   796
    (lapprox_rat prec 1 k) - x * (ub_sin_cos_aux prec n (i + 2) (k * i * (i + 1)) x)"
hoelzl@29742
   797
lemma cos_aux:
hoelzl@41126
   798
  shows "(lb_sin_cos_aux prec n 1 1 (x * x)) \<le> (\<Sum> i=0..<n. -1^i * (1/real (fact (2 * i))) * x ^(2 * i))" (is "?lb")
hoelzl@41126
   799
  and "(\<Sum> i=0..<n. -1^i * (1/real (fact (2 * i))) * x^(2 * i)) \<le> (ub_sin_cos_aux prec n 1 1 (x * x))" (is "?ub")
hoelzl@29742
   800
proof -
hoelzl@31098
   801
  have "0 \<le> real (x * x)" unfolding real_of_float_mult by auto
hoelzl@29742
   802
  let "?f n" = "fact (2 * n)"
hoelzl@29742
   803
hoelzl@31809
   804
  { fix n
haftmann@30971
   805
    have F: "\<And>m. ((\<lambda>i. i + 2) ^^ n) m = m + 2 * n" by (induct n arbitrary: m, auto)
haftmann@30971
   806
    have "?f (Suc n) = ?f n * ((\<lambda>i. i + 2) ^^ n) 1 * (((\<lambda>i. i + 2) ^^ n) 1 + 1)"
hoelzl@29742
   807
      unfolding F by auto } note f_eq = this
hoelzl@31809
   808
hoelzl@31809
   809
  from horner_bounds[where lb="lb_sin_cos_aux prec" and ub="ub_sin_cos_aux prec" and j'=0,
hoelzl@31098
   810
    OF `0 \<le> real (x * x)` f_eq lb_sin_cos_aux.simps ub_sin_cos_aux.simps]
hoelzl@31098
   811
  show "?lb" and "?ub" by (auto simp add: power_mult power2_eq_square[of "real x"])
hoelzl@29742
   812
qed
hoelzl@29742
   813
hoelzl@41126
   814
lemma cos_boundaries: assumes "0 \<le> real x" and "x \<le> pi / 2"
hoelzl@41126
   815
  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))}"
hoelzl@31098
   816
proof (cases "real x = 0")
hoelzl@31098
   817
  case False hence "real x \<noteq> 0" by auto
hoelzl@31098
   818
  hence "0 < x" and "0 < real x" using `0 \<le> real x` unfolding less_float_def by auto
hoelzl@31098
   819
  have "0 < x * x" using `0 < x` unfolding less_float_def real_of_float_mult real_of_float_0
hoelzl@31098
   820
    using mult_pos_pos[where a="real x" and b="real x"] by auto
hoelzl@29742
   821
haftmann@30952
   822
  { fix x n have "(\<Sum> i=0..<n. -1^i * (1/real (fact (2 * i))) * x ^ (2 * i))
hoelzl@29742
   823
    = (\<Sum> i = 0 ..< 2 * n. (if even(i) then (-1 ^ (i div 2))/(real (fact i)) else 0) * x ^ i)" (is "?sum = ?ifsum")
hoelzl@29742
   824
  proof -
hoelzl@29742
   825
    have "?sum = ?sum + (\<Sum> j = 0 ..< n. 0)" by auto
hoelzl@31809
   826
    also have "\<dots> =
hoelzl@29742
   827
      (\<Sum> j = 0 ..< n. -1 ^ ((2 * j) div 2) / (real (fact (2 * j))) * x ^(2 * j)) + (\<Sum> j = 0 ..< n. 0)" by auto
hoelzl@29742
   828
    also have "\<dots> = (\<Sum> i = 0 ..< 2 * n. if even i then -1 ^ (i div 2) / (real (fact i)) * x ^ i else 0)"
hoelzl@29742
   829
      unfolding sum_split_even_odd ..
hoelzl@29742
   830
    also have "\<dots> = (\<Sum> i = 0 ..< 2 * n. (if even i then -1 ^ (i div 2) / (real (fact i)) else 0) * x ^ i)"
hoelzl@29742
   831
      by (rule setsum_cong2) auto
hoelzl@29742
   832
    finally show ?thesis by assumption
hoelzl@29742
   833
  qed } note morph_to_if_power = this
hoelzl@29742
   834
hoelzl@29742
   835
hoelzl@29742
   836
  { fix n :: nat assume "0 < n"
hoelzl@29742
   837
    hence "0 < 2 * n" by auto
hoelzl@31098
   838
    obtain t where "0 < t" and "t < real x" and
hoelzl@41126
   839
      cos_eq: "cos x = (\<Sum> i = 0 ..< 2 * n. (if even(i) then (-1 ^ (i div 2))/(real (fact i)) else 0) * (real x) ^ i)
hoelzl@41126
   840
      + (cos (t + 1/2 * (2 * n) * pi) / real (fact (2*n))) * (real x)^(2*n)"
hoelzl@29742
   841
      (is "_ = ?SUM + ?rest / ?fact * ?pow")
huffman@45166
   842
      using Maclaurin_cos_expansion2[OF `0 < real x` `0 < 2 * n`]
huffman@45166
   843
      unfolding cos_coeff_def by auto
hoelzl@29742
   844
hoelzl@41126
   845
    have "cos t * -1^n = cos t * cos (n * pi) + sin t * sin (n * pi)" by auto
hoelzl@41126
   846
    also have "\<dots> = cos (t + n * pi)"  using cos_add by auto
hoelzl@29742
   847
    also have "\<dots> = ?rest" by auto
hoelzl@29742
   848
    finally have "cos t * -1^n = ?rest" .
hoelzl@29742
   849
    moreover
hoelzl@41126
   850
    have "t \<le> pi / 2" using `t < real x` and `x \<le> pi / 2` by auto
hoelzl@29742
   851
    hence "0 \<le> cos t" using `0 < t` and cos_ge_zero by auto
hoelzl@29742
   852
    ultimately have even: "even n \<Longrightarrow> 0 \<le> ?rest" and odd: "odd n \<Longrightarrow> 0 \<le> - ?rest " by auto
hoelzl@29742
   853
hoelzl@29742
   854
    have "0 < ?fact" by auto
hoelzl@31098
   855
    have "0 < ?pow" using `0 < real x` by auto
hoelzl@29742
   856
hoelzl@29742
   857
    {
hoelzl@29742
   858
      assume "even n"
hoelzl@41126
   859
      have "(lb_sin_cos_aux prec n 1 1 (x * x)) \<le> ?SUM"
wenzelm@32962
   860
        unfolding morph_to_if_power[symmetric] using cos_aux by auto
hoelzl@41126
   861
      also have "\<dots> \<le> cos x"
hoelzl@29742
   862
      proof -
wenzelm@32962
   863
        from even[OF `even n`] `0 < ?fact` `0 < ?pow`
wenzelm@32962
   864
        have "0 \<le> (?rest / ?fact) * ?pow" by (metis mult_nonneg_nonneg divide_nonneg_pos less_imp_le)
wenzelm@32962
   865
        thus ?thesis unfolding cos_eq by auto
hoelzl@29742
   866
      qed
hoelzl@41126
   867
      finally have "(lb_sin_cos_aux prec n 1 1 (x * x)) \<le> cos x" .
hoelzl@29742
   868
    } note lb = this
hoelzl@29742
   869
hoelzl@29742
   870
    {
hoelzl@29742
   871
      assume "odd n"
hoelzl@41126
   872
      have "cos x \<le> ?SUM"
hoelzl@29742
   873
      proof -
wenzelm@32962
   874
        from `0 < ?fact` and `0 < ?pow` and odd[OF `odd n`]
wenzelm@32962
   875
        have "0 \<le> (- ?rest) / ?fact * ?pow"
wenzelm@32962
   876
          by (metis mult_nonneg_nonneg divide_nonneg_pos less_imp_le)
wenzelm@32962
   877
        thus ?thesis unfolding cos_eq by auto
hoelzl@29742
   878
      qed
hoelzl@41126
   879
      also have "\<dots> \<le> (ub_sin_cos_aux prec n 1 1 (x * x))"
wenzelm@32962
   880
        unfolding morph_to_if_power[symmetric] using cos_aux by auto
hoelzl@41126
   881
      finally have "cos x \<le> (ub_sin_cos_aux prec n 1 1 (x * x))" .
hoelzl@29742
   882
    } note ub = this and lb
hoelzl@29742
   883
  } note ub = this(1) and lb = this(2)
hoelzl@29742
   884
hoelzl@41126
   885
  have "cos x \<le> (ub_sin_cos_aux prec (get_odd n) 1 1 (x * x))" using ub[OF odd_pos[OF get_odd] get_odd] .
hoelzl@41126
   886
  moreover have "(lb_sin_cos_aux prec (get_even n) 1 1 (x * x)) \<le> cos x"
hoelzl@29742
   887
  proof (cases "0 < get_even n")
hoelzl@29742
   888
    case True show ?thesis using lb[OF True get_even] .
hoelzl@29742
   889
  next
hoelzl@29742
   890
    case False
hoelzl@29742
   891
    hence "get_even n = 0" by auto
hoelzl@41126
   892
    have "- (pi / 2) \<le> x" by (rule order_trans[OF _ `0 < real x`[THEN less_imp_le]], auto)
hoelzl@41126
   893
    with `x \<le> pi / 2`
hoelzl@31098
   894
    show ?thesis unfolding `get_even n = 0` lb_sin_cos_aux.simps real_of_float_minus real_of_float_0 using cos_ge_zero by auto
hoelzl@29742
   895
  qed
hoelzl@29742
   896
  ultimately show ?thesis by auto
hoelzl@29742
   897
next
hoelzl@29742
   898
  case True
hoelzl@29742
   899
  show ?thesis
hoelzl@29742
   900
  proof (cases "n = 0")
hoelzl@31809
   901
    case True
hoelzl@31098
   902
    thus ?thesis unfolding `n = 0` get_even_def get_odd_def using `real x = 0` lapprox_rat[where x="-1" and y=1] by auto
hoelzl@29742
   903
  next
hoelzl@29742
   904
    case False with not0_implies_Suc obtain m where "n = Suc m" by blast
hoelzl@31098
   905
    thus ?thesis unfolding `n = Suc m` get_even_def get_odd_def using `real x = 0` rapprox_rat[where x=1 and y=1] lapprox_rat[where x=1 and y=1] by (cases "even (Suc m)", auto)
hoelzl@29742
   906
  qed
hoelzl@29742
   907
qed
hoelzl@29742
   908
hoelzl@31098
   909
lemma sin_aux: assumes "0 \<le> real x"
hoelzl@41126
   910
  shows "(x * lb_sin_cos_aux prec n 2 1 (x * x)) \<le> (\<Sum> i=0..<n. -1^i * (1/real (fact (2 * i + 1))) * x^(2 * i + 1))" (is "?lb")
hoelzl@41126
   911
  and "(\<Sum> i=0..<n. -1^i * (1/real (fact (2 * i + 1))) * x^(2 * i + 1)) \<le> (x * ub_sin_cos_aux prec n 2 1 (x * x))" (is "?ub")
hoelzl@29742
   912
proof -
hoelzl@31098
   913
  have "0 \<le> real (x * x)" unfolding real_of_float_mult by auto
hoelzl@29742
   914
  let "?f n" = "fact (2 * n + 1)"
hoelzl@29742
   915
hoelzl@31809
   916
  { fix n
haftmann@30971
   917
    have F: "\<And>m. ((\<lambda>i. i + 2) ^^ n) m = m + 2 * n" by (induct n arbitrary: m, auto)
haftmann@30971
   918
    have "?f (Suc n) = ?f n * ((\<lambda>i. i + 2) ^^ n) 2 * (((\<lambda>i. i + 2) ^^ n) 2 + 1)"
hoelzl@29742
   919
      unfolding F by auto } note f_eq = this
hoelzl@31809
   920
hoelzl@29742
   921
  from horner_bounds[where lb="lb_sin_cos_aux prec" and ub="ub_sin_cos_aux prec" and j'=0,
hoelzl@31098
   922
    OF `0 \<le> real (x * x)` f_eq lb_sin_cos_aux.simps ub_sin_cos_aux.simps]
hoelzl@31098
   923
  show "?lb" and "?ub" using `0 \<le> real x` unfolding real_of_float_mult
huffman@36770
   924
    unfolding power_add power_one_right mult_assoc[symmetric] setsum_left_distrib[symmetric]
huffman@36770
   925
    unfolding mult_commute[where 'a=real]
hoelzl@31098
   926
    by (auto intro!: mult_left_mono simp add: power_mult power2_eq_square[of "real x"])
hoelzl@29742
   927
qed
hoelzl@29742
   928
hoelzl@41126
   929
lemma sin_boundaries: assumes "0 \<le> real x" and "x \<le> pi / 2"
hoelzl@41126
   930
  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))}"
hoelzl@31098
   931
proof (cases "real x = 0")
hoelzl@31098
   932
  case False hence "real x \<noteq> 0" by auto
hoelzl@31098
   933
  hence "0 < x" and "0 < real x" using `0 \<le> real x` unfolding less_float_def by auto
hoelzl@31098
   934
  have "0 < x * x" using `0 < x` unfolding less_float_def real_of_float_mult real_of_float_0
hoelzl@31098
   935
    using mult_pos_pos[where a="real x" and b="real x"] by auto
hoelzl@29742
   936
hoelzl@29742
   937
  { fix x n have "(\<Sum> j = 0 ..< n. -1 ^ (((2 * j + 1) - Suc 0) div 2) / (real (fact (2 * j + 1))) * x ^(2 * j + 1))
hoelzl@29742
   938
    = (\<Sum> i = 0 ..< 2 * n. (if even(i) then 0 else (-1 ^ ((i - Suc 0) div 2))/(real (fact i))) * x ^ i)" (is "?SUM = _")
hoelzl@29742
   939
    proof -
hoelzl@29742
   940
      have pow: "!!i. x ^ (2 * i + 1) = x * x ^ (2 * i)" by auto
hoelzl@29742
   941
      have "?SUM = (\<Sum> j = 0 ..< n. 0) + ?SUM" by auto
hoelzl@29742
   942
      also have "\<dots> = (\<Sum> i = 0 ..< 2 * n. if even i then 0 else -1 ^ ((i - Suc 0) div 2) / (real (fact i)) * x ^ i)"
wenzelm@32962
   943
        unfolding sum_split_even_odd ..
hoelzl@29742
   944
      also have "\<dots> = (\<Sum> i = 0 ..< 2 * n. (if even i then 0 else -1 ^ ((i - Suc 0) div 2) / (real (fact i))) * x ^ i)"
wenzelm@32962
   945
        by (rule setsum_cong2) auto
hoelzl@29742
   946
      finally show ?thesis by assumption
hoelzl@29742
   947
    qed } note setsum_morph = this
hoelzl@29742
   948
hoelzl@29742
   949
  { fix n :: nat assume "0 < n"
hoelzl@29742
   950
    hence "0 < 2 * n + 1" by auto
hoelzl@31098
   951
    obtain t where "0 < t" and "t < real x" and
hoelzl@41126
   952
      sin_eq: "sin x = (\<Sum> i = 0 ..< 2 * n + 1. (if even(i) then 0 else (-1 ^ ((i - Suc 0) div 2))/(real (fact i))) * (real x) ^ i)
hoelzl@41126
   953
      + (sin (t + 1/2 * (2 * n + 1) * pi) / real (fact (2*n + 1))) * (real x)^(2*n + 1)"
hoelzl@29742
   954
      (is "_ = ?SUM + ?rest / ?fact * ?pow")
huffman@45166
   955
      using Maclaurin_sin_expansion3[OF `0 < 2 * n + 1` `0 < real x`]
huffman@45166
   956
      unfolding sin_coeff_def by auto
hoelzl@29742
   957
hoelzl@29742
   958
    have "?rest = cos t * -1^n" unfolding sin_add cos_add real_of_nat_add left_distrib right_distrib by auto
hoelzl@29742
   959
    moreover
hoelzl@41126
   960
    have "t \<le> pi / 2" using `t < real x` and `x \<le> pi / 2` by auto
hoelzl@29742
   961
    hence "0 \<le> cos t" using `0 < t` and cos_ge_zero by auto
hoelzl@29742
   962
    ultimately have even: "even n \<Longrightarrow> 0 \<le> ?rest" and odd: "odd n \<Longrightarrow> 0 \<le> - ?rest " by auto
hoelzl@29742
   963
huffman@45165
   964
    have "0 < ?fact" by (simp del: fact_Suc)
hoelzl@31098
   965
    have "0 < ?pow" using `0 < real x` by (rule zero_less_power)
hoelzl@29742
   966
hoelzl@29742
   967
    {
hoelzl@29742
   968
      assume "even n"
hoelzl@41126
   969
      have "(x * lb_sin_cos_aux prec n 2 1 (x * x)) \<le>
hoelzl@31098
   970
            (\<Sum> i = 0 ..< 2 * n. (if even(i) then 0 else (-1 ^ ((i - Suc 0) div 2))/(real (fact i))) * (real x) ^ i)"
wenzelm@32962
   971
        using sin_aux[OF `0 \<le> real x`] unfolding setsum_morph[symmetric] by auto
hoelzl@29742
   972
      also have "\<dots> \<le> ?SUM" by auto
hoelzl@41126
   973
      also have "\<dots> \<le> sin x"
hoelzl@29742
   974
      proof -
wenzelm@32962
   975
        from even[OF `even n`] `0 < ?fact` `0 < ?pow`
wenzelm@32962
   976
        have "0 \<le> (?rest / ?fact) * ?pow" by (metis mult_nonneg_nonneg divide_nonneg_pos less_imp_le)
wenzelm@32962
   977
        thus ?thesis unfolding sin_eq by auto
hoelzl@29742
   978
      qed
hoelzl@41126
   979
      finally have "(x * lb_sin_cos_aux prec n 2 1 (x * x)) \<le> sin x" .
hoelzl@29742
   980
    } note lb = this
hoelzl@29742
   981
hoelzl@29742
   982
    {
hoelzl@29742
   983
      assume "odd n"
hoelzl@41126
   984
      have "sin x \<le> ?SUM"
hoelzl@29742
   985
      proof -
wenzelm@32962
   986
        from `0 < ?fact` and `0 < ?pow` and odd[OF `odd n`]
wenzelm@32962
   987
        have "0 \<le> (- ?rest) / ?fact * ?pow"
wenzelm@32962
   988
          by (metis mult_nonneg_nonneg divide_nonneg_pos less_imp_le)
wenzelm@32962
   989
        thus ?thesis unfolding sin_eq by auto
hoelzl@29742
   990
      qed
hoelzl@31098
   991
      also have "\<dots> \<le> (\<Sum> i = 0 ..< 2 * n. (if even(i) then 0 else (-1 ^ ((i - Suc 0) div 2))/(real (fact i))) * (real x) ^ i)"
wenzelm@32962
   992
         by auto
hoelzl@41126
   993
      also have "\<dots> \<le> (x * ub_sin_cos_aux prec n 2 1 (x * x))"
wenzelm@32962
   994
        using sin_aux[OF `0 \<le> real x`] unfolding setsum_morph[symmetric] by auto
hoelzl@41126
   995
      finally have "sin x \<le> (x * ub_sin_cos_aux prec n 2 1 (x * x))" .
hoelzl@29742
   996
    } note ub = this and lb
hoelzl@29742
   997
  } note ub = this(1) and lb = this(2)
hoelzl@29742
   998
hoelzl@41126
   999
  have "sin x \<le> (x * ub_sin_cos_aux prec (get_odd n) 2 1 (x * x))" using ub[OF odd_pos[OF get_odd] get_odd] .
hoelzl@41126
  1000
  moreover have "(x * lb_sin_cos_aux prec (get_even n) 2 1 (x * x)) \<le> sin x"
hoelzl@29742
  1001
  proof (cases "0 < get_even n")
hoelzl@29742
  1002
    case True show ?thesis using lb[OF True get_even] .
hoelzl@29742
  1003
  next
hoelzl@29742
  1004
    case False
hoelzl@29742
  1005
    hence "get_even n = 0" by auto
hoelzl@41126
  1006
    with `x \<le> pi / 2` `0 \<le> real x`
hoelzl@31098
  1007
    show ?thesis unfolding `get_even n = 0` ub_sin_cos_aux.simps real_of_float_minus real_of_float_0 using sin_ge_zero by auto
hoelzl@29742
  1008
  qed
hoelzl@29742
  1009
  ultimately show ?thesis by auto
hoelzl@29742
  1010
next
hoelzl@29742
  1011
  case True
hoelzl@29742
  1012
  show ?thesis
hoelzl@29742
  1013
  proof (cases "n = 0")
hoelzl@31809
  1014
    case True
hoelzl@31098
  1015
    thus ?thesis unfolding `n = 0` get_even_def get_odd_def using `real x = 0` lapprox_rat[where x="-1" and y=1] by auto
hoelzl@29742
  1016
  next
hoelzl@29742
  1017
    case False with not0_implies_Suc obtain m where "n = Suc m" by blast
hoelzl@31098
  1018
    thus ?thesis unfolding `n = Suc m` get_even_def get_odd_def using `real x = 0` rapprox_rat[where x=1 and y=1] lapprox_rat[where x=1 and y=1] by (cases "even (Suc m)", auto)
hoelzl@29742
  1019
  qed
hoelzl@29742
  1020
qed
hoelzl@29742
  1021
hoelzl@29742
  1022
subsection "Compute the cosinus in the entire domain"
hoelzl@29742
  1023
hoelzl@29742
  1024
definition lb_cos :: "nat \<Rightarrow> float \<Rightarrow> float" where
hoelzl@29742
  1025
"lb_cos prec x = (let
hoelzl@29742
  1026
    horner = \<lambda> x. lb_sin_cos_aux prec (get_even (prec div 4 + 1)) 1 1 (x * x) ;
hoelzl@29742
  1027
    half = \<lambda> x. if x < 0 then - 1 else Float 1 1 * x * x - 1
hoelzl@29742
  1028
  in if x < Float 1 -1 then horner x
hoelzl@29742
  1029
else if x < 1          then half (horner (x * Float 1 -1))
hoelzl@29742
  1030
                       else half (half (horner (x * Float 1 -2))))"
hoelzl@29742
  1031
hoelzl@29742
  1032
definition ub_cos :: "nat \<Rightarrow> float \<Rightarrow> float" where
hoelzl@29742
  1033
"ub_cos prec x = (let
hoelzl@29742
  1034
    horner = \<lambda> x. ub_sin_cos_aux prec (get_odd (prec div 4 + 1)) 1 1 (x * x) ;
hoelzl@29742
  1035
    half = \<lambda> x. Float 1 1 * x * x - 1
hoelzl@29742
  1036
  in if x < Float 1 -1 then horner x
hoelzl@29742
  1037
else if x < 1          then half (horner (x * Float 1 -1))
hoelzl@29742
  1038
                       else half (half (horner (x * Float 1 -2))))"
hoelzl@29742
  1039
hoelzl@41126
  1040
lemma lb_cos: assumes "0 \<le> real x" and "x \<le> pi"
hoelzl@41126
  1041
  shows "cos x \<in> {(lb_cos prec x) .. (ub_cos prec x)}" (is "?cos x \<in> {(?lb x) .. (?ub x) }")
hoelzl@29742
  1042
proof -
hoelzl@29742
  1043
  { fix x :: real
hoelzl@29742
  1044
    have "cos x = cos (x / 2 + x / 2)" by auto
hoelzl@29742
  1045
    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"
hoelzl@29742
  1046
      unfolding cos_add by auto
hoelzl@29742
  1047
    also have "\<dots> = 2 * cos (x / 2) * cos (x / 2) - 1" by algebra
hoelzl@29742
  1048
    finally have "cos x = 2 * cos (x / 2) * cos (x / 2) - 1" .
hoelzl@29742
  1049
  } note x_half = this[symmetric]
hoelzl@29742
  1050
hoelzl@31098
  1051
  have "\<not> x < 0" using `0 \<le> real x` unfolding less_float_def by auto
hoelzl@29742
  1052
  let "?ub_horner x" = "ub_sin_cos_aux prec (get_odd (prec div 4 + 1)) 1 1 (x * x)"
hoelzl@29742
  1053
  let "?lb_horner x" = "lb_sin_cos_aux prec (get_even (prec div 4 + 1)) 1 1 (x * x)"
hoelzl@29742
  1054
  let "?ub_half x" = "Float 1 1 * x * x - 1"
hoelzl@29742
  1055
  let "?lb_half x" = "if x < 0 then - 1 else Float 1 1 * x * x - 1"
hoelzl@29742
  1056
hoelzl@29742
  1057
  show ?thesis
hoelzl@29742
  1058
  proof (cases "x < Float 1 -1")
hoelzl@41126
  1059
    case True hence "x \<le> pi / 2" unfolding less_float_def using pi_ge_two by auto
hoelzl@29742
  1060
    show ?thesis unfolding lb_cos_def[where x=x] ub_cos_def[where x=x] if_not_P[OF `\<not> x < 0`] if_P[OF `x < Float 1 -1`] Let_def
hoelzl@41126
  1061
      using cos_boundaries[OF `0 \<le> real x` `x \<le> pi / 2`] .
hoelzl@29742
  1062
  next
hoelzl@29742
  1063
    case False
hoelzl@41126
  1064
    { fix y x :: float let ?x2 = "(x * Float 1 -1)"
hoelzl@41126
  1065
      assume "y \<le> cos ?x2" and "-pi \<le> x" and "x \<le> pi"
hoelzl@31098
  1066
      hence "- (pi / 2) \<le> ?x2" and "?x2 \<le> pi / 2" using pi_ge_two unfolding real_of_float_mult Float_num by auto
hoelzl@29742
  1067
      hence "0 \<le> cos ?x2" by (rule cos_ge_zero)
hoelzl@31467
  1068
hoelzl@41126
  1069
      have "(?lb_half y) \<le> cos x"
hoelzl@29742
  1070
      proof (cases "y < 0")
wenzelm@32962
  1071
        case True show ?thesis using cos_ge_minus_one unfolding if_P[OF True] by auto
hoelzl@29742
  1072
      next
wenzelm@32962
  1073
        case False
wenzelm@32962
  1074
        hence "0 \<le> real y" unfolding less_float_def by auto
hoelzl@41126
  1075
        from mult_mono[OF `y \<le> cos ?x2` `y \<le> cos ?x2` `0 \<le> cos ?x2` this]
wenzelm@32962
  1076
        have "real y * real y \<le> cos ?x2 * cos ?x2" .
wenzelm@32962
  1077
        hence "2 * real y * real y \<le> 2 * cos ?x2 * cos ?x2" by auto
hoelzl@41126
  1078
        hence "2 * real y * real y - 1 \<le> 2 * cos (x / 2) * cos (x / 2) - 1" unfolding Float_num real_of_float_mult by auto
wenzelm@32962
  1079
        thus ?thesis unfolding if_not_P[OF False] x_half Float_num real_of_float_mult real_of_float_sub by auto
hoelzl@29742
  1080
      qed
hoelzl@29742
  1081
    } note lb_half = this
hoelzl@31467
  1082
hoelzl@41126
  1083
    { fix y x :: float let ?x2 = "(x * Float 1 -1)"
hoelzl@41126
  1084
      assume ub: "cos ?x2 \<le> y" and "- pi \<le> x" and "x \<le> pi"
hoelzl@31098
  1085
      hence "- (pi / 2) \<le> ?x2" and "?x2 \<le> pi / 2" using pi_ge_two unfolding real_of_float_mult Float_num by auto
hoelzl@29742
  1086
      hence "0 \<le> cos ?x2" by (rule cos_ge_zero)
hoelzl@31467
  1087
hoelzl@41126
  1088
      have "cos x \<le> (?ub_half y)"
hoelzl@29742
  1089
      proof -
wenzelm@32962
  1090
        have "0 \<le> real y" using `0 \<le> cos ?x2` ub by (rule order_trans)
wenzelm@32962
  1091
        from mult_mono[OF ub ub this `0 \<le> cos ?x2`]
wenzelm@32962
  1092
        have "cos ?x2 * cos ?x2 \<le> real y * real y" .
wenzelm@32962
  1093
        hence "2 * cos ?x2 * cos ?x2 \<le> 2 * real y * real y" by auto
hoelzl@41126
  1094
        hence "2 * cos (x / 2) * cos (x / 2) - 1 \<le> 2 * real y * real y - 1" unfolding Float_num real_of_float_mult by auto
wenzelm@32962
  1095
        thus ?thesis unfolding x_half real_of_float_mult Float_num real_of_float_sub by auto
hoelzl@29742
  1096
      qed
hoelzl@29742
  1097
    } note ub_half = this
hoelzl@31467
  1098
hoelzl@29742
  1099
    let ?x2 = "x * Float 1 -1"
hoelzl@29742
  1100
    let ?x4 = "x * Float 1 -1 * Float 1 -1"
hoelzl@31467
  1101
hoelzl@41126
  1102
    have "-pi \<le> x" using pi_ge_zero[THEN le_imp_neg_le, unfolded minus_zero] `0 \<le> real x` by (rule order_trans)
hoelzl@31467
  1103
hoelzl@29742
  1104
    show ?thesis
hoelzl@29742
  1105
    proof (cases "x < 1")
hoelzl@31098
  1106
      case True hence "real x \<le> 1" unfolding less_float_def by auto
hoelzl@41126
  1107
      have "0 \<le> real ?x2" and "?x2 \<le> pi / 2" using pi_ge_two `0 \<le> real x` unfolding real_of_float_mult Float_num using assms by auto
hoelzl@29742
  1108
      from cos_boundaries[OF this]
hoelzl@41126
  1109
      have lb: "(?lb_horner ?x2) \<le> ?cos ?x2" and ub: "?cos ?x2 \<le> (?ub_horner ?x2)" by auto
hoelzl@41126
  1110
hoelzl@41126
  1111
      have "(?lb x) \<le> ?cos x"
hoelzl@29742
  1112
      proof -
hoelzl@41126
  1113
        from lb_half[OF lb `-pi \<le> x` `x \<le> pi`]
wenzelm@32962
  1114
        show ?thesis unfolding lb_cos_def[where x=x] Let_def using `\<not> x < 0` `\<not> x < Float 1 -1` `x < 1` by auto
hoelzl@29742
  1115
      qed
hoelzl@41126
  1116
      moreover have "?cos x \<le> (?ub x)"
hoelzl@29742
  1117
      proof -
hoelzl@41126
  1118
        from ub_half[OF ub `-pi \<le> x` `x \<le> pi`]
wenzelm@32962
  1119
        show ?thesis unfolding ub_cos_def[where x=x] Let_def using `\<not> x < 0` `\<not> x < Float 1 -1` `x < 1` by auto
hoelzl@29742
  1120
      qed
hoelzl@29742
  1121
      ultimately show ?thesis by auto
hoelzl@29742
  1122
    next
hoelzl@29742
  1123
      case False
hoelzl@41126
  1124
      have "0 \<le> real ?x4" and "?x4 \<le> pi / 2" using pi_ge_two `0 \<le> real x` `x \<le> pi` unfolding real_of_float_mult Float_num by auto
hoelzl@29742
  1125
      from cos_boundaries[OF this]
hoelzl@41126
  1126
      have lb: "(?lb_horner ?x4) \<le> ?cos ?x4" and ub: "?cos ?x4 \<le> (?ub_horner ?x4)" by auto
hoelzl@31467
  1127
hoelzl@29742
  1128
      have eq_4: "?x2 * Float 1 -1 = x * Float 1 -2" by (cases x, auto simp add: times_float.simps)
hoelzl@31467
  1129
hoelzl@41126
  1130
      have "(?lb x) \<le> ?cos x"
hoelzl@29742
  1131
      proof -
hoelzl@41126
  1132
        have "-pi \<le> ?x2" and "?x2 \<le> pi" unfolding real_of_float_mult Float_num using pi_ge_two `0 \<le> real x` `x \<le> pi` by auto
hoelzl@41126
  1133
        from lb_half[OF lb_half[OF lb this] `-pi \<le> x` `x \<le> pi`, unfolded eq_4]
wenzelm@32962
  1134
        show ?thesis unfolding lb_cos_def[where x=x] if_not_P[OF `\<not> x < 0`] if_not_P[OF `\<not> x < Float 1 -1`] if_not_P[OF `\<not> x < 1`] Let_def .
hoelzl@29742
  1135
      qed
hoelzl@41126
  1136
      moreover have "?cos x \<le> (?ub x)"
hoelzl@29742
  1137
      proof -
hoelzl@41126
  1138
        have "-pi \<le> ?x2" and "?x2 \<le> pi" unfolding real_of_float_mult Float_num using pi_ge_two `0 \<le> real x` ` x \<le> pi` by auto
hoelzl@41126
  1139
        from ub_half[OF ub_half[OF ub this] `-pi \<le> x` `x \<le> pi`, unfolded eq_4]
wenzelm@32962
  1140
        show ?thesis unfolding ub_cos_def[where x=x] if_not_P[OF `\<not> x < 0`] if_not_P[OF `\<not> x < Float 1 -1`] if_not_P[OF `\<not> x < 1`] Let_def .
hoelzl@29742
  1141
      qed
hoelzl@29742
  1142
      ultimately show ?thesis by auto
hoelzl@29742
  1143
    qed
hoelzl@29742
  1144
  qed
hoelzl@29742
  1145
qed
hoelzl@29742
  1146
hoelzl@41126
  1147
lemma lb_cos_minus: assumes "-pi \<le> x" and "real x \<le> 0"
hoelzl@41126
  1148
  shows "cos (real(-x)) \<in> {(lb_cos prec (-x)) .. (ub_cos prec (-x))}"
hoelzl@29742
  1149
proof -
hoelzl@41126
  1150
  have "0 \<le> real (-x)" and "(-x) \<le> pi" using `-pi \<le> x` `real x \<le> 0` by auto
hoelzl@29742
  1151
  from lb_cos[OF this] show ?thesis .
hoelzl@29742
  1152
qed
hoelzl@29742
  1153
hoelzl@31467
  1154
definition bnds_cos :: "nat \<Rightarrow> float \<Rightarrow> float \<Rightarrow> float * float" where
hoelzl@31467
  1155
"bnds_cos prec lx ux = (let
hoelzl@31467
  1156
    lpi = round_down prec (lb_pi prec) ;
hoelzl@31467
  1157
    upi = round_up prec (ub_pi prec) ;
hoelzl@31467
  1158
    k = floor_fl (float_divr prec (lx + lpi) (2 * lpi)) ;
hoelzl@31467
  1159
    lx = lx - k * 2 * (if k < 0 then lpi else upi) ;
hoelzl@31467
  1160
    ux = ux - k * 2 * (if k < 0 then upi else lpi)
hoelzl@31467
  1161
  in   if - lpi \<le> lx \<and> ux \<le> 0    then (lb_cos prec (-lx), ub_cos prec (-ux))
hoelzl@31467
  1162
  else if 0 \<le> lx \<and> ux \<le> lpi      then (lb_cos prec ux, ub_cos prec lx)
hoelzl@31467
  1163
  else if - lpi \<le> lx \<and> ux \<le> lpi  then (min (lb_cos prec (-lx)) (lb_cos prec ux), Float 1 0)
hoelzl@31467
  1164
  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))))
hoelzl@31508
  1165
  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)))
hoelzl@31467
  1166
                                 else (Float -1 0, Float 1 0))"
hoelzl@31467
  1167
hoelzl@31467
  1168
lemma floor_int:
hoelzl@41126
  1169
  obtains k :: int where "real k = (floor_fl f)"
hoelzl@31467
  1170
proof -
hoelzl@41126
  1171
  assume *: "\<And> k :: int. real k = (floor_fl f) \<Longrightarrow> thesis"
hoelzl@31467
  1172
  obtain m e where fl: "Float m e = floor_fl f" by (cases "floor_fl f", auto)
hoelzl@31467
  1173
  from floor_pos_exp[OF this]
hoelzl@41126
  1174
  have "real (m* 2^(nat e)) = (floor_fl f)"
hoelzl@31467
  1175
    by (auto simp add: fl[symmetric] real_of_float_def pow2_def)
hoelzl@31467
  1176
  from *[OF this] show thesis by blast
hoelzl@31467
  1177
qed
hoelzl@31467
  1178
hoelzl@41126
  1179
lemma float_remove_real_numeral[simp]: "(number_of k :: float) = (number_of k :: real)"
hoelzl@31467
  1180
proof -
hoelzl@41126
  1181
  have "(number_of k :: float) = real k"
hoelzl@31467
  1182
    unfolding number_of_float_def real_of_float_def pow2_def by auto
hoelzl@41126
  1183
  also have "\<dots> = (number_of k :: int)"
hoelzl@31467
  1184
    by (simp add: number_of_is_id)
hoelzl@31467
  1185
  finally show ?thesis by auto
hoelzl@31467
  1186
qed
hoelzl@31467
  1187
hoelzl@41126
  1188
lemma cos_periodic_nat[simp]: fixes n :: nat shows "cos (x + n * (2 * pi)) = cos x"
hoelzl@31467
  1189
proof (induct n arbitrary: x)
hoelzl@31467
  1190
  case (Suc n)
hoelzl@41126
  1191
  have split_pi_off: "x + (Suc n) * (2 * pi) = (x + n * (2 * pi)) + 2 * pi"
huffman@36770
  1192
    unfolding Suc_eq_plus1 real_of_nat_add real_of_one left_distrib by auto
hoelzl@31467
  1193
  show ?case unfolding split_pi_off using Suc by auto
hoelzl@31467
  1194
qed auto
hoelzl@31467
  1195
hoelzl@41126
  1196
lemma cos_periodic_int[simp]: fixes i :: int shows "cos (x + i * (2 * pi)) = cos x"
hoelzl@31467
  1197
proof (cases "0 \<le> i")
hoelzl@41126
  1198
  case True hence i_nat: "real i = nat i" by auto
hoelzl@31467
  1199
  show ?thesis unfolding i_nat by auto
hoelzl@31467
  1200
next
hoelzl@41126
  1201
  case False hence i_nat: "i = - real (nat (-i))" by auto
hoelzl@41126
  1202
  have "cos x = cos (x + i * (2 * pi) - i * (2 * pi))" by auto
hoelzl@41126
  1203
  also have "\<dots> = cos (x + i * (2 * pi))"
hoelzl@31467
  1204
    unfolding i_nat mult_minus_left diff_minus_eq_add by (rule cos_periodic_nat)
hoelzl@31467
  1205
  finally show ?thesis by auto
hoelzl@31467
  1206
qed
hoelzl@31467
  1207
hoelzl@41126
  1208
lemma bnds_cos: "\<forall> (x::real) lx ux. (l, u) = bnds_cos prec lx ux \<and> x \<in> {lx .. ux} \<longrightarrow> l \<le> cos x \<and> cos x \<le> u"
hoelzl@31467
  1209
proof ((rule allI | rule impI | erule conjE) +)
hoelzl@41126
  1210
  fix x :: real fix lx ux
hoelzl@41126
  1211
  assume bnds: "(l, u) = bnds_cos prec lx ux" and x: "x \<in> {lx .. ux}"
hoelzl@29742
  1212
hoelzl@31467
  1213
  let ?lpi = "round_down prec (lb_pi prec)"
hoelzl@31467
  1214
  let ?upi = "round_up prec (ub_pi prec)"
hoelzl@31467
  1215
  let ?k = "floor_fl (float_divr prec (lx + ?lpi) (2 * ?lpi))"
hoelzl@31467
  1216
  let ?lx = "lx - ?k * 2 * (if ?k < 0 then ?lpi else ?upi)"
hoelzl@31467
  1217
  let ?ux = "ux - ?k * 2 * (if ?k < 0 then ?upi else ?lpi)"
hoelzl@31467
  1218
hoelzl@41126
  1219
  obtain k :: int where k: "k = real ?k" using floor_int .
hoelzl@41126
  1220
hoelzl@41126
  1221
  have upi: "pi \<le> ?upi" and lpi: "?lpi \<le> pi"
hoelzl@31467
  1222
    using round_up[of "ub_pi prec" prec] pi_boundaries[of prec]
hoelzl@31467
  1223
          round_down[of prec "lb_pi prec"] by auto
hoelzl@41126
  1224
  hence "?lx \<le> x - k * (2 * pi) \<and> x - k * (2 * pi) \<le> ?ux"
hoelzl@31467
  1225
    using x by (cases "k = 0") (auto intro!: add_mono
haftmann@37860
  1226
                simp add: diff_minus k[symmetric] less_float_def)
hoelzl@31467
  1227
  note lx = this[THEN conjunct1] and ux = this[THEN conjunct2]
hoelzl@41126
  1228
  hence lx_less_ux: "?lx \<le> real ?ux" by (rule order_trans)
hoelzl@41126
  1229
hoelzl@41126
  1230
  { assume "- ?lpi \<le> ?lx" and x_le_0: "x - k * (2 * pi) \<le> 0"
hoelzl@31467
  1231
    with lpi[THEN le_imp_neg_le] lx
hoelzl@41126
  1232
    have pi_lx: "- pi \<le> ?lx" and lx_0: "real ?lx \<le> 0"
hoelzl@31467
  1233
      by (simp_all add: le_float_def)
hoelzl@31467
  1234
hoelzl@41126
  1235
    have "(lb_cos prec (- ?lx)) \<le> cos (real (- ?lx))"
hoelzl@31467
  1236
      using lb_cos_minus[OF pi_lx lx_0] by simp
hoelzl@41126
  1237
    also have "\<dots> \<le> cos (x + (-k) * (2 * pi))"
hoelzl@31467
  1238
      using cos_monotone_minus_pi_0'[OF pi_lx lx x_le_0]
hoelzl@31467
  1239
      by (simp only: real_of_float_minus real_of_int_minus
haftmann@37860
  1240
        cos_minus diff_minus mult_minus_left)
hoelzl@41126
  1241
    finally have "(lb_cos prec (- ?lx)) \<le> cos x"
hoelzl@31467
  1242
      unfolding cos_periodic_int . }
hoelzl@31467
  1243
  note negative_lx = this
hoelzl@31467
  1244
hoelzl@41126
  1245
  { assume "0 \<le> ?lx" and pi_x: "x - k * (2 * pi) \<le> pi"
hoelzl@31467
  1246
    with lx
hoelzl@41126
  1247
    have pi_lx: "?lx \<le> pi" and lx_0: "0 \<le> real ?lx"
hoelzl@31467
  1248
      by (auto simp add: le_float_def)
hoelzl@31467
  1249
hoelzl@41126
  1250
    have "cos (x + (-k) * (2 * pi)) \<le> cos ?lx"
hoelzl@31467
  1251
      using cos_monotone_0_pi'[OF lx_0 lx pi_x]
hoelzl@31467
  1252
      by (simp only: real_of_float_minus real_of_int_minus
haftmann@37860
  1253
        cos_minus diff_minus mult_minus_left)
hoelzl@41126
  1254
    also have "\<dots> \<le> (ub_cos prec ?lx)"
hoelzl@31467
  1255
      using lb_cos[OF lx_0 pi_lx] by simp
hoelzl@41126
  1256
    finally have "cos x \<le> (ub_cos prec ?lx)"
hoelzl@31467
  1257
      unfolding cos_periodic_int . }
hoelzl@31467
  1258
  note positive_lx = this
hoelzl@31467
  1259
hoelzl@41126
  1260
  { assume pi_x: "- pi \<le> x - k * (2 * pi)" and "?ux \<le> 0"
hoelzl@31467
  1261
    with ux
hoelzl@41126
  1262
    have pi_ux: "- pi \<le> ?ux" and ux_0: "real ?ux \<le> 0"
hoelzl@31467
  1263
      by (simp_all add: le_float_def)
hoelzl@31467
  1264
hoelzl@41126
  1265
    have "cos (x + (-k) * (2 * pi)) \<le> cos (real (- ?ux))"
hoelzl@31467
  1266
      using cos_monotone_minus_pi_0'[OF pi_x ux ux_0]
hoelzl@31467
  1267
      by (simp only: real_of_float_minus real_of_int_minus
haftmann@37860
  1268
          cos_minus diff_minus mult_minus_left)
hoelzl@41126
  1269
    also have "\<dots> \<le> (ub_cos prec (- ?ux))"
hoelzl@31467
  1270
      using lb_cos_minus[OF pi_ux ux_0, of prec] by simp
hoelzl@41126
  1271
    finally have "cos x \<le> (ub_cos prec (- ?ux))"
hoelzl@31467
  1272
      unfolding cos_periodic_int . }
hoelzl@31467
  1273
  note negative_ux = this
hoelzl@31467
  1274
hoelzl@41126
  1275
  { assume "?ux \<le> ?lpi" and x_ge_0: "0 \<le> x - k * (2 * pi)"
hoelzl@31467
  1276
    with lpi ux
hoelzl@41126
  1277
    have pi_ux: "?ux \<le> pi" and ux_0: "0 \<le> real ?ux"
hoelzl@31467
  1278
      by (simp_all add: le_float_def)
hoelzl@31467
  1279
hoelzl@41126
  1280
    have "(lb_cos prec ?ux) \<le> cos ?ux"
hoelzl@31467
  1281
      using lb_cos[OF ux_0 pi_ux] by simp
hoelzl@41126
  1282
    also have "\<dots> \<le> cos (x + (-k) * (2 * pi))"
hoelzl@31467
  1283
      using cos_monotone_0_pi'[OF x_ge_0 ux pi_ux]
hoelzl@31467
  1284
      by (simp only: real_of_float_minus real_of_int_minus
haftmann@37860
  1285
        cos_minus diff_minus mult_minus_left)
hoelzl@41126
  1286
    finally have "(lb_cos prec ?ux) \<le> cos x"
hoelzl@31467
  1287
      unfolding cos_periodic_int . }
hoelzl@31467
  1288
  note positive_ux = this
hoelzl@29742
  1289
hoelzl@41126
  1290
  show "l \<le> cos x \<and> cos x \<le> u"
hoelzl@31467
  1291
  proof (cases "- ?lpi \<le> ?lx \<and> ?ux \<le> 0")
hoelzl@31467
  1292
    case True with bnds
hoelzl@31467
  1293
    have l: "l = lb_cos prec (-?lx)"
hoelzl@31467
  1294
      and u: "u = ub_cos prec (-?ux)"
hoelzl@31467
  1295
      by (auto simp add: bnds_cos_def Let_def)
hoelzl@31467
  1296
hoelzl@31467
  1297
    from True lpi[THEN le_imp_neg_le] lx ux
hoelzl@41126
  1298
    have "- pi \<le> x - k * (2 * pi)"
hoelzl@41126
  1299
      and "x - k * (2 * pi) \<le> 0"
hoelzl@31467
  1300
      by (auto simp add: le_float_def)
hoelzl@31467
  1301
    with True negative_ux negative_lx
hoelzl@31467
  1302
    show ?thesis unfolding l u by simp
hoelzl@31467
  1303
  next case False note 1 = this show ?thesis
hoelzl@31467
  1304
  proof (cases "0 \<le> ?lx \<and> ?ux \<le> ?lpi")
hoelzl@31467
  1305
    case True with bnds 1
hoelzl@31467
  1306
    have l: "l = lb_cos prec ?ux"
hoelzl@31467
  1307
      and u: "u = ub_cos prec ?lx"
hoelzl@31467
  1308
      by (auto simp add: bnds_cos_def Let_def)
hoelzl@31467
  1309
hoelzl@31467
  1310
    from True lpi lx ux
hoelzl@41126
  1311
    have "0 \<le> x - k * (2 * pi)"
hoelzl@41126
  1312
      and "x - k * (2 * pi) \<le> pi"
hoelzl@31467
  1313
      by (auto simp add: le_float_def)
hoelzl@31467
  1314
    with True positive_ux positive_lx
hoelzl@31467
  1315
    show ?thesis unfolding l u by simp
hoelzl@31467
  1316
  next case False note 2 = this show ?thesis
hoelzl@31467
  1317
  proof (cases "- ?lpi \<le> ?lx \<and> ?ux \<le> ?lpi")
hoelzl@31467
  1318
    case True note Cond = this with bnds 1 2
hoelzl@31467
  1319
    have l: "l = min (lb_cos prec (-?lx)) (lb_cos prec ?ux)"
hoelzl@31467
  1320
      and u: "u = Float 1 0"
hoelzl@31467
  1321
      by (auto simp add: bnds_cos_def Let_def)
hoelzl@31467
  1322
hoelzl@31467
  1323
    show ?thesis unfolding u l using negative_lx positive_ux Cond
hoelzl@41126
  1324
      by (cases "x - k * (2 * pi) < 0", simp_all add: real_of_float_min)
hoelzl@31467
  1325
  next case False note 3 = this show ?thesis
hoelzl@31467
  1326
  proof (cases "0 \<le> ?lx \<and> ?ux \<le> 2 * ?lpi")
hoelzl@31467
  1327
    case True note Cond = this with bnds 1 2 3
hoelzl@31467
  1328
    have l: "l = Float -1 0"
hoelzl@31467
  1329
      and u: "u = max (ub_cos prec ?lx) (ub_cos prec (- (?ux - 2 * ?lpi)))"
hoelzl@31467
  1330
      by (auto simp add: bnds_cos_def Let_def)
hoelzl@31467
  1331
hoelzl@31467
  1332
    have "cos x \<le> real u"
hoelzl@41126
  1333
    proof (cases "x - k * (2 * pi) < pi")
hoelzl@41126
  1334
      case True hence "x - k * (2 * pi) \<le> pi" by simp
hoelzl@31467
  1335
      from positive_lx[OF Cond[THEN conjunct1] this]
hoelzl@31467
  1336
      show ?thesis unfolding u by (simp add: real_of_float_max)
hoelzl@31467
  1337
    next
hoelzl@41126
  1338
      case False hence "pi \<le> x - k * (2 * pi)" by simp
hoelzl@41126
  1339
      hence pi_x: "- pi \<le> x - k * (2 * pi) - 2 * pi" by simp
hoelzl@41126
  1340
hoelzl@41126
  1341
      have "?ux \<le> 2 * pi" using Cond lpi by (auto simp add: le_float_def)
hoelzl@41126
  1342
      hence "x - k * (2 * pi) - 2 * pi \<le> 0" using ux by simp
hoelzl@31467
  1343
hoelzl@31467
  1344
      have ux_0: "real (?ux - 2 * ?lpi) \<le> 0"
wenzelm@32962
  1345
        using Cond by (auto simp add: le_float_def)
hoelzl@31467
  1346
hoelzl@31467
  1347
      from 2 and Cond have "\<not> ?ux \<le> ?lpi" by auto
hoelzl@31467
  1348
      hence "- ?lpi \<le> ?ux - 2 * ?lpi" by (auto simp add: le_float_def)
hoelzl@41126
  1349
      hence pi_ux: "- pi \<le> (?ux - 2 * ?lpi)"
wenzelm@32962
  1350
        using lpi[THEN le_imp_neg_le] by (auto simp add: le_float_def)
hoelzl@31467
  1351
hoelzl@41126
  1352
      have x_le_ux: "x - k * (2 * pi) - 2 * pi \<le> (?ux - 2 * ?lpi)"
wenzelm@32962
  1353
        using ux lpi by auto
hoelzl@31467
  1354
hoelzl@41126
  1355
      have "cos x = cos (x + (-k) * (2 * pi) + (-1::int) * (2 * pi))"
wenzelm@32962
  1356
        unfolding cos_periodic_int ..
hoelzl@41126
  1357
      also have "\<dots> \<le> cos ((?ux - 2 * ?lpi))"
wenzelm@32962
  1358
        using cos_monotone_minus_pi_0'[OF pi_x x_le_ux ux_0]
wenzelm@32962
  1359
        by (simp only: real_of_float_minus real_of_int_minus real_of_one
haftmann@37860
  1360
            number_of_Min diff_minus mult_minus_left mult_1_left)
hoelzl@41126
  1361
      also have "\<dots> = cos ((- (?ux - 2 * ?lpi)))"
wenzelm@32962
  1362
        unfolding real_of_float_minus cos_minus ..
hoelzl@41126
  1363
      also have "\<dots> \<le> (ub_cos prec (- (?ux - 2 * ?lpi)))"
wenzelm@32962
  1364
        using lb_cos_minus[OF pi_ux ux_0] by simp
hoelzl@31467
  1365
      finally show ?thesis unfolding u by (simp add: real_of_float_max)
hoelzl@31467
  1366
    qed
hoelzl@31467
  1367
    thus ?thesis unfolding l by auto
hoelzl@31508
  1368
  next case False note 4 = this show ?thesis
hoelzl@31508
  1369
  proof (cases "-2 * ?lpi \<le> ?lx \<and> ?ux \<le> 0")
hoelzl@31508
  1370
    case True note Cond = this with bnds 1 2 3 4
hoelzl@31508
  1371
    have l: "l = Float -1 0"
hoelzl@31508
  1372
      and u: "u = max (ub_cos prec (?lx + 2 * ?lpi)) (ub_cos prec (-?ux))"
hoelzl@31508
  1373
      by (auto simp add: bnds_cos_def Let_def)
hoelzl@31508
  1374
hoelzl@41126
  1375
    have "cos x \<le> u"
hoelzl@41126
  1376
    proof (cases "-pi < x - k * (2 * pi)")
hoelzl@41126
  1377
      case True hence "-pi \<le> x - k * (2 * pi)" by simp
hoelzl@31508
  1378
      from negative_ux[OF this Cond[THEN conjunct2]]
hoelzl@31508
  1379
      show ?thesis unfolding u by (simp add: real_of_float_max)
hoelzl@31508
  1380
    next
hoelzl@41126
  1381
      case False hence "x - k * (2 * pi) \<le> -pi" by simp
hoelzl@41126
  1382
      hence pi_x: "x - k * (2 * pi) + 2 * pi \<le> pi" by simp
hoelzl@41126
  1383
hoelzl@41126
  1384
      have "-2 * pi \<le> ?lx" using Cond lpi by (auto simp add: le_float_def)
hoelzl@41126
  1385
hoelzl@41126
  1386
      hence "0 \<le> x - k * (2 * pi) + 2 * pi" using lx by simp
hoelzl@31508
  1387
hoelzl@31508
  1388
      have lx_0: "0 \<le> real (?lx + 2 * ?lpi)"
wenzelm@32962
  1389
        using Cond lpi by (auto simp add: le_float_def)
hoelzl@31508
  1390
hoelzl@31508
  1391
      from 1 and Cond have "\<not> -?lpi \<le> ?lx" by auto
hoelzl@31508
  1392
      hence "?lx + 2 * ?lpi \<le> ?lpi" by (auto simp add: le_float_def)
hoelzl@41126
  1393
      hence pi_lx: "(?lx + 2 * ?lpi) \<le> pi"
wenzelm@32962
  1394
        using lpi[THEN le_imp_neg_le] by (auto simp add: le_float_def)
hoelzl@31508
  1395
hoelzl@41126
  1396
      have lx_le_x: "(?lx + 2 * ?lpi) \<le> x - k * (2 * pi) + 2 * pi"
wenzelm@32962
  1397
        using lx lpi by auto
hoelzl@31508
  1398
hoelzl@41126
  1399
      have "cos x = cos (x + (-k) * (2 * pi) + (1 :: int) * (2 * pi))"
wenzelm@32962
  1400
        unfolding cos_periodic_int ..
hoelzl@41126
  1401
      also have "\<dots> \<le> cos ((?lx + 2 * ?lpi))"
wenzelm@32962
  1402
        using cos_monotone_0_pi'[OF lx_0 lx_le_x pi_x]
wenzelm@32962
  1403
        by (simp only: real_of_float_minus real_of_int_minus real_of_one
haftmann@37860
  1404
          number_of_Min diff_minus mult_minus_left mult_1_left)
hoelzl@41126
  1405
      also have "\<dots> \<le> (ub_cos prec (?lx + 2 * ?lpi))"
wenzelm@32962
  1406
        using lb_cos[OF lx_0 pi_lx] by simp
hoelzl@31508
  1407
      finally show ?thesis unfolding u by (simp add: real_of_float_max)
hoelzl@31508
  1408
    qed
hoelzl@31508
  1409
    thus ?thesis unfolding l by auto
hoelzl@29742
  1410
  next
hoelzl@31508
  1411
    case False with bnds 1 2 3 4 show ?thesis by (auto simp add: bnds_cos_def Let_def)
hoelzl@31508
  1412
  qed qed qed qed qed
hoelzl@29742
  1413
qed
hoelzl@29742
  1414
hoelzl@29742
  1415
section "Exponential function"
hoelzl@29742
  1416
hoelzl@29742
  1417
subsection "Compute the series of the exponential function"
hoelzl@29742
  1418
hoelzl@29742
  1419
fun ub_exp_horner :: "nat \<Rightarrow> nat \<Rightarrow> nat \<Rightarrow> nat \<Rightarrow> float \<Rightarrow> float" and lb_exp_horner :: "nat \<Rightarrow> nat \<Rightarrow> nat \<Rightarrow> nat \<Rightarrow> float \<Rightarrow> float" where
hoelzl@29742
  1420
"ub_exp_horner prec 0 i k x       = 0" |
hoelzl@29742
  1421
"ub_exp_horner prec (Suc n) i k x = rapprox_rat prec 1 (int k) + x * lb_exp_horner prec n (i + 1) (k * i) x" |
hoelzl@29742
  1422
"lb_exp_horner prec 0 i k x       = 0" |
hoelzl@29742
  1423
"lb_exp_horner prec (Suc n) i k x = lapprox_rat prec 1 (int k) + x * ub_exp_horner prec n (i + 1) (k * i) x"
hoelzl@29742
  1424
hoelzl@31098
  1425
lemma bnds_exp_horner: assumes "real x \<le> 0"
hoelzl@41126
  1426
  shows "exp x \<in> { lb_exp_horner prec (get_even n) 1 1 x .. ub_exp_horner prec (get_odd n) 1 1 x }"
hoelzl@29742
  1427
proof -
hoelzl@29742
  1428
  { fix n
haftmann@30971
  1429
    have F: "\<And> m. ((\<lambda>i. i + 1) ^^ n) m = n + m" by (induct n, auto)
haftmann@30971
  1430
    have "fact (Suc n) = fact n * ((\<lambda>i. i + 1) ^^ n) 1" unfolding F by auto } note f_eq = this
hoelzl@31467
  1431
hoelzl@29742
  1432
  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,
hoelzl@29742
  1433
    OF assms f_eq lb_exp_horner.simps ub_exp_horner.simps]
hoelzl@29742
  1434
hoelzl@41126
  1435
  { have "lb_exp_horner prec (get_even n) 1 1 x \<le> (\<Sum>j = 0..<get_even n. 1 / real (fact j) * real x ^ j)"
hoelzl@29742
  1436
      using bounds(1) by auto
hoelzl@41126
  1437
    also have "\<dots> \<le> exp x"
hoelzl@29742
  1438
    proof -
hoelzl@41126
  1439
      obtain t where "\<bar>t\<bar> \<le> \<bar>real x\<bar>" and "exp x = (\<Sum>m = 0..<get_even n. real x ^ m / real (fact m)) + exp t / real (fact (get_even n)) * (real x) ^ (get_even n)"
wenzelm@32962
  1440
        using Maclaurin_exp_le by blast
hoelzl@31098
  1441
      moreover have "0 \<le> exp t / real (fact (get_even n)) * (real x) ^ (get_even n)"
wenzelm@32962
  1442
        by (auto intro!: mult_nonneg_nonneg divide_nonneg_pos simp add: get_even zero_le_even_power exp_gt_zero)
hoelzl@29742
  1443
      ultimately show ?thesis
haftmann@35028
  1444
        using get_odd exp_gt_zero by (auto intro!: mult_nonneg_nonneg)
hoelzl@29742
  1445
    qed
hoelzl@41126
  1446
    finally have "lb_exp_horner prec (get_even n) 1 1 x \<le> exp x" .
hoelzl@29742
  1447
  } moreover
hoelzl@31809
  1448
  {
hoelzl@31098
  1449
    have x_less_zero: "real x ^ get_odd n \<le> 0"
hoelzl@31098
  1450
    proof (cases "real x = 0")
hoelzl@29742
  1451
      case True
hoelzl@29742
  1452
      have "(get_odd n) \<noteq> 0" using get_odd[THEN odd_pos] by auto
hoelzl@29742
  1453
      thus ?thesis unfolding True power_0_left by auto
hoelzl@29742
  1454
    next
hoelzl@31098
  1455
      case False hence "real x < 0" using `real x \<le> 0` by auto
hoelzl@31098
  1456
      show ?thesis by (rule less_imp_le, auto simp add: power_less_zero_eq get_odd `real x < 0`)
hoelzl@29742
  1457
    qed
hoelzl@29742
  1458
hoelzl@41126
  1459
    obtain t where "\<bar>t\<bar> \<le> \<bar>real x\<bar>" and "exp x = (\<Sum>m = 0..<get_odd n. (real x) ^ m / real (fact m)) + exp t / real (fact (get_odd n)) * (real x) ^ (get_odd n)"
hoelzl@29742
  1460
      using Maclaurin_exp_le by blast
hoelzl@31098
  1461
    moreover have "exp t / real (fact (get_odd n)) * (real x) ^ (get_odd n) \<le> 0"
hoelzl@29742
  1462
      by (auto intro!: mult_nonneg_nonpos divide_nonpos_pos simp add: x_less_zero exp_gt_zero)
hoelzl@41126
  1463
    ultimately have "exp x \<le> (\<Sum>j = 0..<get_odd n. 1 / real (fact j) * real x ^ j)"
haftmann@35028
  1464
      using get_odd exp_gt_zero by (auto intro!: mult_nonneg_nonneg)
hoelzl@41126
  1465
    also have "\<dots> \<le> ub_exp_horner prec (get_odd n) 1 1 x"
hoelzl@29742
  1466
      using bounds(2) by auto
hoelzl@41126
  1467
    finally have "exp x \<le> ub_exp_horner prec (get_odd n) 1 1 x" .
hoelzl@29742
  1468
  } ultimately show ?thesis by auto
hoelzl@29742
  1469
qed
hoelzl@29742
  1470
hoelzl@29742
  1471
subsection "Compute the exponential function on the entire domain"
hoelzl@29742
  1472
hoelzl@29742
  1473
function ub_exp :: "nat \<Rightarrow> float \<Rightarrow> float" and lb_exp :: "nat \<Rightarrow> float \<Rightarrow> float" where
hoelzl@29742
  1474
"lb_exp prec x = (if 0 < x then float_divl prec 1 (ub_exp prec (-x))
hoelzl@31809
  1475
             else let
hoelzl@29742
  1476
                horner = (\<lambda> x. let  y = lb_exp_horner prec (get_even (prec + 2)) 1 1 x  in if y \<le> 0 then Float 1 -2 else y)
hoelzl@29742
  1477
             in if x < - 1 then (case floor_fl x of (Float m e) \<Rightarrow> (horner (float_divl prec x (- Float m e))) ^ (nat (-m) * 2 ^ nat e))
hoelzl@29742
  1478
                           else horner x)" |
hoelzl@29742
  1479
"ub_exp prec x = (if 0 < x    then float_divr prec 1 (lb_exp prec (-x))
hoelzl@31809
  1480
             else if x < - 1  then (case floor_fl x of (Float m e) \<Rightarrow>
hoelzl@29742
  1481
                                    (ub_exp_horner prec (get_odd (prec + 2)) 1 1 (float_divr prec x (- Float m e))) ^ (nat (-m) * 2 ^ nat e))
hoelzl@29742
  1482
                              else ub_exp_horner prec (get_odd (prec + 2)) 1 1 x)"
hoelzl@29742
  1483
by pat_completeness auto
hoelzl@29742
  1484
termination by (relation "measure (\<lambda> v. let (prec, x) = sum_case id id v in (if 0 < x then 1 else 0))", auto simp add: less_float_def)
hoelzl@29742
  1485
hoelzl@29742
  1486
lemma exp_m1_ge_quarter: "(1 / 4 :: real) \<le> exp (- 1)"
hoelzl@29742
  1487
proof -
hoelzl@29742
  1488
  have eq4: "4 = Suc (Suc (Suc (Suc 0)))" by auto
hoelzl@29742
  1489
hoelzl@41126
  1490
  have "1 / 4 = (Float 1 -2)" unfolding Float_num by auto
hoelzl@41126
  1491
  also have "\<dots> \<le> lb_exp_horner 1 (get_even 4) 1 1 (- 1)"
hoelzl@31809
  1492
    unfolding get_even_def eq4
hoelzl@29742
  1493
    by (auto simp add: lapprox_posrat_def rapprox_posrat_def normfloat.simps)
hoelzl@41126
  1494
  also have "\<dots> \<le> exp (- 1 :: float)" using bnds_exp_horner[where x="- 1"] by auto
hoelzl@31809
  1495
  finally show ?thesis unfolding real_of_float_minus real_of_float_1 .
hoelzl@29742
  1496
qed
hoelzl@29742
  1497
hoelzl@29742
  1498
lemma lb_exp_pos: assumes "\<not> 0 < x" shows "0 < lb_exp prec x"
hoelzl@29742
  1499
proof -
hoelzl@29742
  1500
  let "?lb_horner x" = "lb_exp_horner prec (get_even (prec + 2)) 1 1 x"
hoelzl@29742
  1501
  let "?horner x" = "let  y = ?lb_horner x  in if y \<le> 0 then Float 1 -2 else y"
hoelzl@29742
  1502
  have pos_horner: "\<And> x. 0 < ?horner x" unfolding Let_def by (cases "?lb_horner x \<le> 0", auto simp add: le_float_def less_float_def)
hoelzl@29742
  1503
  moreover { fix x :: float fix num :: nat
hoelzl@31098
  1504
    have "0 < real (?horner x) ^ num" using `0 < ?horner x`[unfolded less_float_def real_of_float_0] by (rule zero_less_power)
hoelzl@41126
  1505
    also have "\<dots> = (?horner x) ^ num" using float_power by auto
hoelzl@31098
  1506
    finally have "0 < real ((?horner x) ^ num)" .
hoelzl@29742
  1507
  }
hoelzl@29742
  1508
  ultimately show ?thesis
haftmann@30968
  1509
    unfolding lb_exp.simps if_not_P[OF `\<not> 0 < x`] Let_def
haftmann@30968
  1510
    by (cases "floor_fl x", cases "x < - 1", auto simp add: float_power le_float_def less_float_def)
hoelzl@29742
  1511
qed
hoelzl@29742
  1512
hoelzl@29742
  1513
lemma exp_boundaries': assumes "x \<le> 0"
hoelzl@41126
  1514
  shows "exp x \<in> { (lb_exp prec x) .. (ub_exp prec x)}"
hoelzl@29742
  1515
proof -
hoelzl@29742
  1516
  let "?lb_exp_horner x" = "lb_exp_horner prec (get_even (prec + 2)) 1 1 x"
hoelzl@29742
  1517
  let "?ub_exp_horner x" = "ub_exp_horner prec (get_odd (prec + 2)) 1 1 x"
hoelzl@29742
  1518
hoelzl@31098
  1519
  have "real x \<le> 0" and "\<not> x > 0" using `x \<le> 0` unfolding le_float_def less_float_def by auto
hoelzl@29742
  1520
  show ?thesis
hoelzl@29742
  1521
  proof (cases "x < - 1")
hoelzl@31098
  1522
    case False hence "- 1 \<le> real x" unfolding less_float_def by auto
hoelzl@29742
  1523
    show ?thesis
hoelzl@29742
  1524
    proof (cases "?lb_exp_horner x \<le> 0")
hoelzl@31098
  1525
      from `\<not> x < - 1` have "- 1 \<le> real x" unfolding less_float_def by auto
hoelzl@41126
  1526
      hence "exp (- 1) \<le> exp x" unfolding exp_le_cancel_iff .
hoelzl@29742
  1527
      from order_trans[OF exp_m1_ge_quarter this]
hoelzl@41126
  1528
      have "Float 1 -2 \<le> exp x" unfolding Float_num .
hoelzl@29742
  1529
      moreover case True
hoelzl@31098
  1530
      ultimately show ?thesis using bnds_exp_horner `real x \<le> 0` `\<not> x > 0` `\<not> x < - 1` by auto
hoelzl@29742
  1531
    next
hoelzl@31098
  1532
      case False thus ?thesis using bnds_exp_horner `real x \<le> 0` `\<not> x > 0` `\<not> x < - 1` by (auto simp add: Let_def)
hoelzl@29742
  1533
    qed
hoelzl@29742
  1534
  next
hoelzl@29742
  1535
    case True
hoelzl@31809
  1536
hoelzl@29742
  1537
    obtain m e where Float_floor: "floor_fl x = Float m e" by (cases "floor_fl x", auto)
hoelzl@29742
  1538
    let ?num = "nat (- m) * 2 ^ nat e"
hoelzl@31809
  1539
hoelzl@31098
  1540
    have "real (floor_fl x) < - 1" using floor_fl `x < - 1` unfolding le_float_def less_float_def real_of_float_minus real_of_float_1 by (rule order_le_less_trans)
hoelzl@31098
  1541
    hence "real (floor_fl x) < 0" unfolding Float_floor real_of_float_simp using zero_less_pow2[of xe] by auto
hoelzl@29742
  1542
    hence "m < 0"
hoelzl@31098
  1543
      unfolding less_float_def real_of_float_0 Float_floor real_of_float_simp
huffman@36770
  1544
      unfolding pos_prod_lt[OF zero_less_pow2[of e], unfolded mult_commute] by auto
hoelzl@29742
  1545
    hence "1 \<le> - m" by auto
hoelzl@29742
  1546
    hence "0 < nat (- m)" by auto
hoelzl@29742
  1547
    moreover
hoelzl@29742
  1548
    have "0 \<le> e" using floor_pos_exp Float_floor[symmetric] by auto
hoelzl@29742
  1549
    hence "(0::nat) < 2 ^ nat e" by auto
hoelzl@29742
  1550
    ultimately have "0 < ?num"  by auto
hoelzl@29742
  1551
    hence "real ?num \<noteq> 0" by auto
hoelzl@41126
  1552
    have e_nat: "(nat e) = e" using `0 \<le> e` by auto
hoelzl@41126
  1553
    have num_eq: "real ?num = - floor_fl x" using `0 < nat (- m)`
huffman@35346
  1554
      unfolding Float_floor real_of_float_minus real_of_float_simp real_of_nat_mult pow2_int[of "nat e", unfolded e_nat] real_of_nat_power by auto
hoelzl@31098
  1555
    have "0 < - floor_fl x" using `0 < ?num`[unfolded real_of_nat_less_iff[symmetric]] unfolding less_float_def num_eq[symmetric] real_of_float_0 real_of_nat_zero .
hoelzl@31098
  1556
    hence "real (floor_fl x) < 0" unfolding less_float_def by auto
hoelzl@31809
  1557
hoelzl@41126
  1558
    have "exp x \<le> ub_exp prec x"
hoelzl@29742
  1559
    proof -
hoelzl@31809
  1560
      have div_less_zero: "real (float_divr prec x (- floor_fl x)) \<le> 0"
wenzelm@32962
  1561
        using float_divr_nonpos_pos_upper_bound[OF `x \<le> 0` `0 < - floor_fl x`] unfolding le_float_def real_of_float_0 .
hoelzl@31809
  1562
hoelzl@41126
  1563
      have "exp x = exp (?num * (x / ?num))" using `real ?num \<noteq> 0` by auto
hoelzl@41126
  1564
      also have "\<dots> = exp (x / ?num) ^ ?num" unfolding exp_real_of_nat_mult ..
hoelzl@41126
  1565
      also have "\<dots> \<le> exp (float_divr prec x (- floor_fl x)) ^ ?num" unfolding num_eq
wenzelm@32962
  1566
        by (rule power_mono, rule exp_le_cancel_iff[THEN iffD2], rule float_divr) auto
hoelzl@41126
  1567
      also have "\<dots> \<le> (?ub_exp_horner (float_divr prec x (- floor_fl x))) ^ ?num" unfolding float_power
wenzelm@32962
  1568
        by (rule power_mono, rule bnds_exp_horner[OF div_less_zero, unfolded atLeastAtMost_iff, THEN conjunct2], auto)
hoelzl@29742
  1569
      finally show ?thesis unfolding ub_exp.simps if_not_P[OF `\<not> 0 < x`] if_P[OF `x < - 1`] float.cases Float_floor Let_def .
hoelzl@29742
  1570
    qed
hoelzl@31809
  1571
    moreover
hoelzl@41126
  1572
    have "lb_exp prec x \<le> exp x"
hoelzl@29742
  1573
    proof -
hoelzl@29742
  1574
      let ?divl = "float_divl prec x (- Float m e)"
hoelzl@29742
  1575
      let ?horner = "?lb_exp_horner ?divl"
hoelzl@31809
  1576
hoelzl@29742
  1577
      show ?thesis
hoelzl@29742
  1578
      proof (cases "?horner \<le> 0")
wenzelm@32962
  1579
        case False hence "0 \<le> real ?horner" unfolding le_float_def by auto
wenzelm@32962
  1580
wenzelm@32962
  1581
        have div_less_zero: "real (float_divl prec x (- floor_fl x)) \<le> 0"
wenzelm@32962
  1582
          using `real (floor_fl x) < 0` `real x \<le> 0` by (auto intro!: order_trans[OF float_divl] divide_nonpos_neg)
wenzelm@32962
  1583
hoelzl@41126
  1584
        have "(?lb_exp_horner (float_divl prec x (- floor_fl x))) ^ ?num \<le>
hoelzl@41126
  1585
          exp (float_divl prec x (- floor_fl x)) ^ ?num" unfolding float_power
wenzelm@32962
  1586
          using `0 \<le> real ?horner`[unfolded Float_floor[symmetric]] bnds_exp_horner[OF div_less_zero, unfolded atLeastAtMost_iff, THEN conjunct1] by (auto intro!: power_mono)
hoelzl@41126
  1587
        also have "\<dots> \<le> exp (x / ?num) ^ ?num" unfolding num_eq
wenzelm@32962
  1588
          using float_divl by (auto intro!: power_mono simp del: real_of_float_minus)
hoelzl@41126
  1589
        also have "\<dots> = exp (?num * (x / ?num))" unfolding exp_real_of_nat_mult ..
hoelzl@41126
  1590
        also have "\<dots> = exp x" using `real ?num \<noteq> 0` by auto
wenzelm@32962
  1591
        finally show ?thesis
wenzelm@32962
  1592
          unfolding lb_exp.simps if_not_P[OF `\<not> 0 < x`] if_P[OF `x < - 1`] float.cases Float_floor Let_def if_not_P[OF False] by auto
hoelzl@29742
  1593
      next
wenzelm@32962
  1594
        case True
wenzelm@32962
  1595
        have "real (floor_fl x) \<noteq> 0" and "real (floor_fl x) \<le> 0" using `real (floor_fl x) < 0` by auto
wenzelm@32962
  1596
        from divide_right_mono_neg[OF floor_fl[of x] `real (floor_fl x) \<le> 0`, unfolded divide_self[OF `real (floor_fl x) \<noteq> 0`]]
hoelzl@41126
  1597
        have "- 1 \<le> x / (- floor_fl x)" unfolding real_of_float_minus by auto
wenzelm@32962
  1598
        from order_trans[OF exp_m1_ge_quarter this[unfolded exp_le_cancel_iff[where x="- 1", symmetric]]]
hoelzl@41126
  1599
        have "Float 1 -2 \<le> exp (x / (- floor_fl x))" unfolding Float_num .
hoelzl@41126
  1600
        hence "real (Float 1 -2) ^ ?num \<le> exp (x / (- floor_fl x)) ^ ?num"
wenzelm@32962
  1601
          by (auto intro!: power_mono simp add: Float_num)
hoelzl@41126
  1602
        also have "\<dots> = exp x" unfolding num_eq exp_real_of_nat_mult[symmetric] using `real (floor_fl x) \<noteq> 0` by auto
wenzelm@32962
  1603
        finally show ?thesis
wenzelm@32962
  1604
          unfolding lb_exp.simps if_not_P[OF `\<not> 0 < x`] if_P[OF `x < - 1`] float.cases Float_floor Let_def if_P[OF True] float_power .
hoelzl@29742
  1605
      qed
hoelzl@29742
  1606
    qed
hoelzl@29742
  1607
    ultimately show ?thesis by auto
hoelzl@29742
  1608
  qed
hoelzl@29742
  1609
qed
hoelzl@29742
  1610
hoelzl@41126
  1611
lemma exp_boundaries: "exp x \<in> { lb_exp prec x .. ub_exp prec x }"
hoelzl@29742
  1612
proof -
hoelzl@29742
  1613
  show ?thesis
hoelzl@29742
  1614
  proof (cases "0 < x")
hoelzl@31809
  1615
    case False hence "x \<le> 0" unfolding less_float_def le_float_def by auto
hoelzl@29742
  1616
    from exp_boundaries'[OF this] show ?thesis .
hoelzl@29742
  1617
  next
hoelzl@29742
  1618
    case True hence "-x \<le> 0" unfolding less_float_def le_float_def by auto
hoelzl@31809
  1619
hoelzl@41126
  1620
    have "lb_exp prec x \<le> exp x"
hoelzl@29742
  1621
    proof -
hoelzl@29742
  1622
      from exp_boundaries'[OF `-x \<le> 0`]
hoelzl@41126
  1623
      have ub_exp: "exp (- real x) \<le> ub_exp prec (-x)" unfolding atLeastAtMost_iff real_of_float_minus by auto
hoelzl@41126
  1624
hoelzl@41126
  1625
      have "float_divl prec 1 (ub_exp prec (-x)) \<le> 1 / ub_exp prec (-x)" using float_divl[where x=1] by auto
hoelzl@41126
  1626
      also have "\<dots> \<le> exp x"
wenzelm@32962
  1627
        using ub_exp[unfolded inverse_le_iff_le[OF order_less_le_trans[OF exp_gt_zero ub_exp] exp_gt_zero, symmetric]]
wenzelm@32962
  1628
        unfolding exp_minus nonzero_inverse_inverse_eq[OF exp_not_eq_zero] inverse_eq_divide by auto
hoelzl@29742
  1629
      finally show ?thesis unfolding lb_exp.simps if_P[OF True] .
hoelzl@29742
  1630
    qed
hoelzl@29742
  1631
    moreover
hoelzl@41126
  1632
    have "exp x \<le> ub_exp prec x"
hoelzl@29742
  1633
    proof -
hoelzl@29742
  1634
      have "\<not> 0 < -x" using `0 < x` unfolding less_float_def by auto
hoelzl@31809
  1635
hoelzl@29742
  1636
      from exp_boundaries'[OF `-x \<le> 0`]
hoelzl@41126
  1637
      have lb_exp: "lb_exp prec (-x) \<le> exp (- real x)" unfolding atLeastAtMost_iff real_of_float_minus by auto
hoelzl@41126
  1638
hoelzl@41126
  1639
      have "exp x \<le> (1 :: float) / lb_exp prec (-x)"
wenzelm@32962
  1640
        using lb_exp[unfolded inverse_le_iff_le[OF exp_gt_zero lb_exp_pos[OF `\<not> 0 < -x`, unfolded less_float_def real_of_float_0],
wenzelm@32962
  1641
                                                symmetric]]
wenzelm@32962
  1642
        unfolding exp_minus nonzero_inverse_inverse_eq[OF exp_not_eq_zero] inverse_eq_divide real_of_float_1 by auto
hoelzl@41126
  1643
      also have "\<dots> \<le> float_divr prec 1 (lb_exp prec (-x))" using float_divr .
hoelzl@29742
  1644
      finally show ?thesis unfolding ub_exp.simps if_P[OF True] .
hoelzl@29742
  1645
    qed
hoelzl@29742
  1646
    ultimately show ?thesis by auto
hoelzl@29742
  1647
  qed
hoelzl@29742
  1648
qed
hoelzl@29742
  1649
hoelzl@41126
  1650
lemma bnds_exp: "\<forall> (x::real) lx ux. (l, u) = (lb_exp prec lx, ub_exp prec ux) \<and> x \<in> {lx .. ux} \<longrightarrow> l \<le> exp x \<and> exp x \<le> u"
hoelzl@29742
  1651
proof (rule allI, rule allI, rule allI, rule impI)
hoelzl@41126
  1652
  fix x::real and lx ux
hoelzl@41126
  1653
  assume "(l, u) = (lb_exp prec lx, ub_exp prec ux) \<and> x \<in> {lx .. ux}"
hoelzl@41126
  1654
  hence l: "lb_exp prec lx = l " and u: "ub_exp prec ux = u" and x: "x \<in> {lx .. ux}" by auto
hoelzl@29742
  1655
hoelzl@29742
  1656
  { from exp_boundaries[of lx prec, unfolded l]
hoelzl@41126
  1657
    have "l \<le> exp lx" by (auto simp del: lb_exp.simps)
hoelzl@29742
  1658
    also have "\<dots> \<le> exp x" using x by auto
hoelzl@41126
  1659
    finally have "l \<le> exp x" .
hoelzl@29742
  1660
  } moreover
hoelzl@41126
  1661
  { have "exp x \<le> exp ux" using x by auto
hoelzl@41126
  1662
    also have "\<dots> \<le> u" using exp_boundaries[of ux prec, unfolded u] by (auto simp del: ub_exp.simps)
hoelzl@41126
  1663
    finally have "exp x \<le> u" .
hoelzl@41126
  1664
  } ultimately show "l \<le> exp x \<and> exp x \<le> u" ..
hoelzl@29742
  1665
qed
hoelzl@29742
  1666
hoelzl@29742
  1667
section "Logarithm"
hoelzl@29742
  1668
hoelzl@29742
  1669
subsection "Compute the logarithm series"
hoelzl@29742
  1670
hoelzl@31809
  1671
fun ub_ln_horner :: "nat \<Rightarrow> nat \<Rightarrow> nat \<Rightarrow> float \<Rightarrow> float"
hoelzl@29742
  1672
and lb_ln_horner :: "nat \<Rightarrow> nat \<Rightarrow> nat \<Rightarrow> float \<Rightarrow> float" where
hoelzl@29742
  1673
"ub_ln_horner prec 0 i x       = 0" |
hoelzl@29742
  1674
"ub_ln_horner prec (Suc n) i x = rapprox_rat prec 1 (int i) - x * lb_ln_horner prec n (Suc i) x" |
hoelzl@29742
  1675
"lb_ln_horner prec 0 i x       = 0" |
hoelzl@29742
  1676
"lb_ln_horner prec (Suc n) i x = lapprox_rat prec 1 (int i) - x * ub_ln_horner prec n (Suc i) x"
hoelzl@29742
  1677
hoelzl@29742
  1678
lemma ln_bounds:
hoelzl@29742
  1679
  assumes "0 \<le> x" and "x < 1"
haftmann@30952
  1680
  shows "(\<Sum>i=0..<2*n. -1^i * (1 / real (i + 1)) * x ^ (Suc i)) \<le> ln (x + 1)" (is "?lb")
haftmann@30952
  1681
  and "ln (x + 1) \<le> (\<Sum>i=0..<2*n + 1. -1^i * (1 / real (i + 1)) * x ^ (Suc i))" (is "?ub")
hoelzl@29742
  1682
proof -
haftmann@30952
  1683
  let "?a n" = "(1/real (n +1)) * x ^ (Suc n)"
hoelzl@29742
  1684
hoelzl@29742
  1685
  have ln_eq: "(\<Sum> i. -1^i * ?a i) = ln (x + 1)"
hoelzl@29742
  1686
    using ln_series[of "x + 1"] `0 \<le> x` `x < 1` by auto
hoelzl@29742
  1687
hoelzl@29742
  1688
  have "norm x < 1" using assms by auto
hoelzl@31809
  1689
  have "?a ----> 0" unfolding Suc_eq_plus1[symmetric] inverse_eq_divide[symmetric]
hoelzl@29742
  1690
    using LIMSEQ_mult[OF LIMSEQ_inverse_real_of_nat LIMSEQ_Suc[OF LIMSEQ_power_zero[OF `norm x < 1`]]] by auto
hoelzl@29742
  1691
  { fix n have "0 \<le> ?a n" by (rule mult_nonneg_nonneg, auto intro!: mult_nonneg_nonneg simp add: `0 \<le> x`) }
hoelzl@29742
  1692
  { fix n have "?a (Suc n) \<le> ?a n" unfolding inverse_eq_divide[symmetric]
hoelzl@29742
  1693
    proof (rule mult_mono)
hoelzl@29742
  1694
      show "0 \<le> x ^ Suc (Suc n)" by (auto intro!: mult_nonneg_nonneg simp add: `0 \<le> x`)
huffman@36770
  1695
      have "x ^ Suc (Suc n) \<le> x ^ Suc n * 1" unfolding power_Suc2 mult_assoc[symmetric]
wenzelm@32962
  1696
        by (rule mult_left_mono, fact less_imp_le[OF `x < 1`], auto intro!: mult_nonneg_nonneg simp add: `0 \<le> x`)
hoelzl@29742
  1697
      thus "x ^ Suc (Suc n) \<le> x ^ Suc n" by auto
hoelzl@29742
  1698
    qed auto }
hoelzl@29742
  1699
  from summable_Leibniz'(2,4)[OF `?a ----> 0` `\<And>n. 0 \<le> ?a n`, OF `\<And>n. ?a (Suc n) \<le> ?a n`, unfolded ln_eq]
hoelzl@29742
  1700
  show "?lb" and "?ub" by auto
hoelzl@29742
  1701
qed
hoelzl@29742
  1702
hoelzl@31809
  1703
lemma ln_float_bounds:
hoelzl@31098
  1704
  assumes "0 \<le> real x" and "real x < 1"
hoelzl@41126
  1705
  shows "x * lb_ln_horner prec (get_even n) 1 x \<le> ln (x + 1)" (is "?lb \<le> ?ln")
hoelzl@41126
  1706
  and "ln (x + 1) \<le> x * ub_ln_horner prec (get_odd n) 1 x" (is "?ln \<le> ?ub")
hoelzl@29742
  1707
proof -
hoelzl@29742
  1708
  obtain ev where ev: "get_even n = 2 * ev" using get_even_double ..
hoelzl@29742
  1709
  obtain od where od: "get_odd n = 2 * od + 1" using get_odd_double ..
hoelzl@29742
  1710
hoelzl@31098
  1711
  let "?s n" = "-1^n * (1 / real (1 + n)) * (real x)^(Suc n)"
hoelzl@29742
  1712
huffman@36770
  1713
  have "?lb \<le> setsum ?s {0 ..< 2 * ev}" unfolding power_Suc2 mult_assoc[symmetric] real_of_float_mult setsum_left_distrib[symmetric] unfolding mult_commute[of "real x"] ev
hoelzl@29742
  1714
    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",
hoelzl@31098
  1715
      OF `0 \<le> real x` refl lb_ln_horner.simps ub_ln_horner.simps] `0 \<le> real x`
hoelzl@29742
  1716
    by (rule mult_right_mono)
hoelzl@31098
  1717
  also have "\<dots> \<le> ?ln" using ln_bounds(1)[OF `0 \<le> real x` `real x < 1`] by auto
hoelzl@31809
  1718
  finally show "?lb \<le> ?ln" .
hoelzl@29742
  1719
hoelzl@31098
  1720
  have "?ln \<le> setsum ?s {0 ..< 2 * od + 1}" using ln_bounds(2)[OF `0 \<le> real x` `real x < 1`] by auto
huffman@36770
  1721
  also have "\<dots> \<le> ?ub" unfolding power_Suc2 mult_assoc[symmetric] real_of_float_mult setsum_left_distrib[symmetric] unfolding mult_commute[of "real x"] od
hoelzl@29742
  1722
    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",
hoelzl@31098
  1723
      OF `0 \<le> real x` refl lb_ln_horner.simps ub_ln_horner.simps] `0 \<le> real x`
hoelzl@29742
  1724
    by (rule mult_right_mono)
hoelzl@31809
  1725
  finally show "?ln \<le> ?ub" .
hoelzl@29742
  1726
qed
hoelzl@29742
  1727
hoelzl@29742
  1728
lemma ln_add: assumes "0 < x" and "0 < y" shows "ln (x + y) = ln x + ln (1 + y / x)"
hoelzl@29742
  1729
proof -
hoelzl@29742
  1730
  have "x \<noteq> 0" using assms by auto
hoelzl@29742
  1731
  have "x + y = x * (1 + y / x)" unfolding right_distrib times_divide_eq_right nonzero_mult_divide_cancel_left[OF `x \<noteq> 0`] by auto
hoelzl@31809
  1732
  moreover
hoelzl@29742
  1733
  have "0 < y / x" using assms divide_pos_pos by auto
hoelzl@29742
  1734
  hence "0 < 1 + y / x" by auto
hoelzl@29742
  1735
  ultimately show ?thesis using ln_mult assms by auto
hoelzl@29742
  1736
qed
hoelzl@29742
  1737
hoelzl@29742
  1738
subsection "Compute the logarithm of 2"
hoelzl@29742
  1739
hoelzl@31809
  1740
definition ub_ln2 where "ub_ln2 prec = (let third = rapprox_rat (max prec 1) 1 3
hoelzl@31809
  1741
                                        in (Float 1 -1 * ub_ln_horner prec (get_odd prec) 1 (Float 1 -1)) +
hoelzl@29742
  1742
                                           (third * ub_ln_horner prec (get_odd prec) 1 third))"
hoelzl@31809
  1743
definition lb_ln2 where "lb_ln2 prec = (let third = lapprox_rat prec 1 3
hoelzl@31809
  1744
                                        in (Float 1 -1 * lb_ln_horner prec (get_even prec) 1 (Float 1 -1)) +
hoelzl@29742
  1745
                                           (third * lb_ln_horner prec (get_even prec) 1 third))"
hoelzl@29742
  1746
hoelzl@41126
  1747
lemma ub_ln2: "ln 2 \<le> ub_ln2 prec" (is "?ub_ln2")
hoelzl@41126
  1748
  and lb_ln2: "lb_ln2 prec \<le> ln 2" (is "?lb_ln2")
hoelzl@29742
  1749
proof -
hoelzl@29742
  1750
  let ?uthird = "rapprox_rat (max prec 1) 1 3"
hoelzl@29742
  1751
  let ?lthird = "lapprox_rat prec 1 3"
hoelzl@29742
  1752
hoelzl@29742
  1753
  have ln2_sum: "ln 2 = ln (1/2 + 1) + ln (1 / 3 + 1)"
hoelzl@29742
  1754
    using ln_add[of "3 / 2" "1 / 2"] by auto
hoelzl@41126
  1755
  have lb3: "?lthird \<le> 1 / 3" using lapprox_rat[of prec 1 3] by auto
hoelzl@31098
  1756
  hence lb3_ub: "real ?lthird < 1" by auto
hoelzl@31098
  1757
  have lb3_lb: "0 \<le> real ?lthird" using lapprox_rat_bottom[of 1 3] by auto
hoelzl@41126
  1758
  have ub3: "1 / 3 \<le> ?uthird" using rapprox_rat[of 1 3] by auto
hoelzl@31098
  1759
  hence ub3_lb: "0 \<le> real ?uthird" by auto
hoelzl@29742
  1760
hoelzl@31098
  1761
  have lb2: "0 \<le> real (Float 1 -1)" and ub2: "real (Float 1 -1) < 1" unfolding Float_num by auto
hoelzl@29742
  1762
hoelzl@29742
  1763
  have "0 \<le> (1::int)" and "0 < (3::int)" by auto
hoelzl@31098
  1764
  have ub3_ub: "real ?uthird < 1" unfolding rapprox_rat.simps(2)[OF `0 \<le> 1` `0 < 3`]
hoelzl@29742
  1765
    by (rule rapprox_posrat_less1, auto)
hoelzl@29742
  1766
hoelzl@29742
  1767
  have third_gt0: "(0 :: real) < 1 / 3 + 1" by auto
hoelzl@31098
  1768
  have uthird_gt0: "0 < real ?uthird + 1" using ub3_lb by auto
hoelzl@31098
  1769
  have lthird_gt0: "0 < real ?lthird + 1" using lb3_lb by auto
hoelzl@29742
  1770
hoelzl@31098
  1771
  show ?ub_ln2 unfolding ub_ln2_def Let_def real_of_float_add ln2_sum Float_num(4)[symmetric]
hoelzl@29742
  1772
  proof (rule add_mono, fact ln_float_bounds(2)[OF lb2 ub2])
hoelzl@31098
  1773
    have "ln (1 / 3 + 1) \<le> ln (real ?uthird + 1)" unfolding ln_le_cancel_iff[OF third_gt0 uthird_gt0] using ub3 by auto
hoelzl@41126
  1774
    also have "\<dots> \<le> ?uthird * ub_ln_horner prec (get_odd prec) 1 ?uthird"
hoelzl@29742
  1775
      using ln_float_bounds(2)[OF ub3_lb ub3_ub] .
hoelzl@41126
  1776
    finally show "ln (1 / 3 + 1) \<le> ?uthird * ub_ln_horner prec (get_odd prec) 1 ?uthird" .
hoelzl@29742
  1777
  qed
hoelzl@31098
  1778
  show ?lb_ln2 unfolding lb_ln2_def Let_def real_of_float_add ln2_sum Float_num(4)[symmetric]
hoelzl@29742
  1779
  proof (rule add_mono, fact ln_float_bounds(1)[OF lb2 ub2])
hoelzl@41126
  1780
    have "?lthird * lb_ln_horner prec (get_even prec) 1 ?lthird \<le> ln (real ?lthird + 1)"
hoelzl@29742
  1781
      using ln_float_bounds(1)[OF lb3_lb lb3_ub] .
hoelzl@29742
  1782
    also have "\<dots> \<le> ln (1 / 3 + 1)" unfolding ln_le_cancel_iff[OF lthird_gt0 third_gt0] using lb3 by auto
hoelzl@41126
  1783
    finally show "?lthird * lb_ln_horner prec (get_even prec) 1 ?lthird \<le> ln (1 / 3 + 1)" .
hoelzl@29742
  1784
  qed
hoelzl@29742
  1785
qed
hoelzl@29742
  1786
hoelzl@29742
  1787
subsection "Compute the logarithm in the entire domain"
hoelzl@29742
  1788
hoelzl@29742
  1789
function ub_ln :: "nat \<Rightarrow> float \<Rightarrow> float option" and lb_ln :: "nat \<Rightarrow> float \<Rightarrow> float option" where
hoelzl@31468
  1790
"ub_ln prec x = (if x \<le> 0          then None
hoelzl@31468
  1791
            else if x < 1          then Some (- the (lb_ln prec (float_divl (max prec 1) 1 x)))
hoelzl@31468
  1792
            else let horner = \<lambda>x. x * ub_ln_horner prec (get_odd prec) 1 x in
hoelzl@31468
  1793
                 if x \<le> Float 3 -1 then Some (horner (x - 1))
hoelzl@31468
  1794
            else if x < Float 1 1  then Some (horner (Float 1 -1) + horner (x * rapprox_rat prec 2 3 - 1))
hoelzl@31468
  1795
                                   else let l = bitlen (mantissa x) - 1 in
hoelzl@31468
  1796
                                        Some (ub_ln2 prec * (Float (scale x + l) 0) + horner (Float (mantissa x) (- l) - 1)))" |
hoelzl@31468
  1797
"lb_ln prec x = (if x \<le> 0          then None
hoelzl@31468
  1798
            else if x < 1          then Some (- the (ub_ln prec (float_divr prec 1 x)))
hoelzl@31468
  1799
            else let horner = \<lambda>x. x * lb_ln_horner prec (get_even prec) 1 x in
hoelzl@31468
  1800
                 if x \<le> Float 3 -1 then Some (horner (x - 1))
hoelzl@31468
  1801
            else if x < Float 1 1  then Some (horner (Float 1 -1) +
hoelzl@31468
  1802
                                              horner (max (x * lapprox_rat prec 2 3 - 1) 0))
hoelzl@31468
  1803
                                   else let l = bitlen (mantissa x) - 1 in
hoelzl@31468
  1804
                                        Some (lb_ln2 prec * (Float (scale x + l) 0) + horner (Float (mantissa x) (- l) - 1)))"
hoelzl@29742
  1805
by pat_completeness auto
hoelzl@29742
  1806
hoelzl@29742
  1807
termination proof (relation "measure (\<lambda> v. let (prec, x) = sum_case id id v in (if x < 1 then 1 else 0))", auto)
hoelzl@29742
  1808
  fix prec x assume "\<not> x \<le> 0" and "x < 1" and "float_divl (max prec (Suc 0)) 1 x < 1"
hoelzl@29742
  1809
  hence "0 < x" and "0 < max prec (Suc 0)" unfolding less_float_def le_float_def by auto
hoelzl@29742
  1810
  from float_divl_pos_less1_bound[OF `0 < x` `x < 1` `0 < max prec (Suc 0)`]
hoelzl@29742
  1811
  show False using `float_divl (max prec (Suc 0)) 1 x < 1` unfolding less_float_def le_float_def by auto
hoelzl@29742
  1812
next
hoelzl@29742
  1813
  fix prec x assume "\<not> x \<le> 0" and "x < 1" and "float_divr prec 1 x < 1"
hoelzl@29742
  1814
  hence "0 < x" unfolding less_float_def le_float_def by auto
hoelzl@29742
  1815
  from float_divr_pos_less1_lower_bound[OF `0 < x` `x < 1`, of prec]
hoelzl@29742
  1816
  show False using `float_divr prec 1 x < 1` unfolding less_float_def le_float_def by auto
hoelzl@29742
  1817
qed
hoelzl@29742
  1818
hoelzl@41126
  1819
lemma ln_shifted_float: assumes "0 < m" shows "ln (Float m e) = ln 2 * (e + (bitlen m - 1)) + ln (Float m (- (bitlen m - 1)))"
hoelzl@29742
  1820
proof -
hoelzl@29742
  1821
  let ?B = "2^nat (bitlen m - 1)"
hoelzl@29742
  1822
  have "0 < real m" and "\<And>X. (0 :: real) < 2^X" and "0 < (2 :: real)" and "m \<noteq> 0" using assms by auto
hoelzl@29742
  1823
  hence "0 \<le> bitlen m - 1" using bitlen_ge1[OF `m \<noteq> 0`] by auto
hoelzl@31468
  1824
  show ?thesis
hoelzl@29742
  1825
  proof (cases "0 \<le> e")
hoelzl@29742
  1826
    case True
hoelzl@29742
  1827
    show ?thesis unfolding normalized_float[OF `m \<noteq> 0`]
hoelzl@31468
  1828
      unfolding ln_div[OF `0 < real m` `0 < ?B`] real_of_int_add ln_realpow[OF `0 < 2`]
hoelzl@31468
  1829
      unfolding real_of_float_ge0_exp[OF True] ln_mult[OF `0 < real m` `0 < 2^nat e`]
hoelzl@29742
  1830
      ln_realpow[OF `0 < 2`] algebra_simps using `0 \<le> bitlen m - 1` True by auto
hoelzl@29742
  1831
  next
hoelzl@29742
  1832
    case False hence "0 < -e" by auto
hoelzl@29742
  1833
    hence pow_gt0: "(0::real) < 2^nat (-e)" by auto
hoelzl@29742
  1834
    hence inv_gt0: "(0::real) < inverse (2^nat (-e))" by auto
hoelzl@29742
  1835
    show ?thesis unfolding normalized_float[OF `m \<noteq> 0`]
hoelzl@31468
  1836
      unfolding ln_div[OF `0 < real m` `0 < ?B`] real_of_int_add ln_realpow[OF `0 < 2`]
hoelzl@31098
  1837
      unfolding real_of_float_nge0_exp[OF False] ln_mult[OF `0 < real m` inv_gt0] ln_inverse[OF pow_gt0]
hoelzl@29742
  1838
      ln_realpow[OF `0 < 2`] algebra_simps using `0 \<le> bitlen m - 1` False by auto
hoelzl@29742
  1839
  qed
hoelzl@29742
  1840
qed
hoelzl@29742
  1841
hoelzl@29742
  1842
lemma ub_ln_lb_ln_bounds': assumes "1 \<le> x"
hoelzl@41126
  1843
  shows "the (lb_ln prec x) \<le> ln x \<and> ln x \<le> the (ub_ln prec x)"
hoelzl@29742
  1844
  (is "?lb \<le> ?ln \<and> ?ln \<le> ?ub")
hoelzl@29742
  1845
proof (cases "x < Float 1 1")
hoelzl@31468
  1846
  case True
hoelzl@31468
  1847
  hence "real (x - 1) < 1" and "real x < 2" unfolding less_float_def Float_num by auto
hoelzl@29742
  1848
  have "\<not> x \<le> 0" and "\<not> x < 1" using `1 \<le> x` unfolding less_float_def le_float_def by auto
hoelzl@31098
  1849
  hence "0 \<le> real (x - 1)" using `1 \<le> x` unfolding less_float_def Float_num by auto
hoelzl@31468
  1850
hoelzl@41126
  1851
  have [simp]: "(Float 3 -1) = 3 / 2" by (simp add: real_of_float_def pow2_def)
hoelzl@31468
  1852
hoelzl@31468
  1853
  show ?thesis
hoelzl@31468
  1854
  proof (cases "x \<le> Float 3 -1")
hoelzl@31468
  1855
    case True
hoelzl@31468
  1856
    show ?thesis unfolding lb_ln.simps unfolding ub_ln.simps Let_def
hoelzl@31468
  1857
      using ln_float_bounds[OF `0 \<le> real (x - 1)` `real (x - 1) < 1`, of prec] `\<not> x \<le> 0` `\<not> x < 1` True
hoelzl@31468
  1858
      by auto
hoelzl@31468
  1859
  next
hoelzl@41126
  1860
    case False hence *: "3 / 2 < x" by (auto simp add: le_float_def)
hoelzl@41126
  1861
hoelzl@41126
  1862
    with ln_add[of "3 / 2" "x - 3 / 2"]
hoelzl@41126
  1863
    have add: "ln x = ln (3 / 2) + ln (real x * 2 / 3)"
hoelzl@31468
  1864
      by (auto simp add: algebra_simps diff_divide_distrib)
hoelzl@31468
  1865
hoelzl@31468
  1866
    let "?ub_horner x" = "x * ub_ln_horner prec (get_odd prec) 1 x"
hoelzl@31468
  1867
    let "?lb_horner x" = "x * lb_ln_horner prec (get_even prec) 1 x"
hoelzl@31468
  1868
hoelzl@31468
  1869
    { have up: "real (rapprox_rat prec 2 3) \<le> 1"
wenzelm@32962
  1870
        by (rule rapprox_rat_le1) simp_all
hoelzl@41126
  1871
      have low: "2 / 3 \<le> rapprox_rat prec 2 3"
wenzelm@32962
  1872
        by (rule order_trans[OF _ rapprox_rat]) simp
hoelzl@31468
  1873
      from mult_less_le_imp_less[OF * low] *
hoelzl@31468
  1874
      have pos: "0 < real (x * rapprox_rat prec 2 3 - 1)" by auto
hoelzl@31468
  1875
hoelzl@31468
  1876
      have "ln (real x * 2/3)
wenzelm@32962
  1877
        \<le> ln (real (x * rapprox_rat prec 2 3 - 1) + 1)"
hoelzl@31468
  1878
      proof (rule ln_le_cancel_iff[symmetric, THEN iffD1])
wenzelm@32962
  1879
        show "real x * 2 / 3 \<le> real (x * rapprox_rat prec 2 3 - 1) + 1"
wenzelm@32962
  1880
          using * low by auto
wenzelm@32962
  1881
        show "0 < real x * 2 / 3" using * by simp
wenzelm@32962
  1882
        show "0 < real (x * rapprox_rat prec 2 3 - 1) + 1" using pos by auto
hoelzl@31468
  1883
      qed
hoelzl@41126
  1884
      also have "\<dots> \<le> ?ub_horner (x * rapprox_rat prec 2 3 - 1)"
hoelzl@31468
  1885
      proof (rule ln_float_bounds(2))
wenzelm@32962
  1886
        from mult_less_le_imp_less[OF `real x < 2` up] low *
wenzelm@32962
  1887
        show "real (x * rapprox_rat prec 2 3 - 1) < 1" by auto
wenzelm@32962
  1888
        show "0 \<le> real (x * rapprox_rat prec 2 3 - 1)" using pos by auto
hoelzl@31468
  1889
      qed
hoelzl@41126
  1890
      finally have "ln x
hoelzl@41126
  1891
        \<le> ?ub_horner (Float 1 -1)
hoelzl@41126
  1892
          + ?ub_horner (x * rapprox_rat prec 2 3 - 1)"
wenzelm@32962
  1893
        using ln_float_bounds(2)[of "Float 1 -1" prec prec] add by auto }
hoelzl@31468
  1894
    moreover
hoelzl@31468
  1895
    { let ?max = "max (x * lapprox_rat prec 2 3 - 1) 0"
hoelzl@31468
  1896
hoelzl@41126
  1897
      have up: "lapprox_rat prec 2 3 \<le> 2/3"
wenzelm@32962
  1898
        by (rule order_trans[OF lapprox_rat], simp)
hoelzl@31468
  1899
hoelzl@31468
  1900
      have low: "0 \<le> real (lapprox_rat prec 2 3)"
wenzelm@32962
  1901
        using lapprox_rat_bottom[of 2 3 prec] by simp
hoelzl@31468
  1902
hoelzl@41126
  1903
      have "?lb_horner ?max
wenzelm@32962
  1904
        \<le> ln (real ?max + 1)"
hoelzl@31468
  1905
      proof (rule ln_float_bounds(1))
wenzelm@32962
  1906
        from mult_less_le_imp_less[OF `real x < 2` up] * low
wenzelm@32962
  1907
        show "real ?max < 1" by (cases "real (lapprox_rat prec 2 3) = 0",
wenzelm@32962
  1908
          auto simp add: real_of_float_max)
wenzelm@32962
  1909
        show "0 \<le> real ?max" by (auto simp add: real_of_float_max)
hoelzl@31468
  1910
      qed
hoelzl@31468
  1911
      also have "\<dots> \<le> ln (real x * 2/3)"
hoelzl@31468
  1912
      proof (rule ln_le_cancel_iff[symmetric, THEN iffD1])
wenzelm@32962
  1913
        show "0 < real ?max + 1" by (auto simp add: real_of_float_max)
wenzelm@32962
  1914
        show "0 < real x * 2/3" using * by auto
wenzelm@32962
  1915
        show "real ?max + 1 \<le> real x * 2/3" using * up
wenzelm@32962
  1916
          by (cases "0 < real x * real (lapprox_posrat prec 2 3) - 1",
wenzelm@32962
  1917
              auto simp add: real_of_float_max min_max.sup_absorb1)
hoelzl@31468
  1918
      qed
hoelzl@41126
  1919
      finally have "?lb_horner (Float 1 -1) + ?lb_horner ?max
hoelzl@41126
  1920
        \<le> ln x"
wenzelm@32962
  1921
        using ln_float_bounds(1)[of "Float 1 -1" prec prec] add by auto }
hoelzl@31468
  1922
    ultimately
hoelzl@31468
  1923
    show ?thesis unfolding lb_ln.simps unfolding ub_ln.simps Let_def
hoelzl@31468
  1924
      using `\<not> x \<le> 0` `\<not> x < 1` True False by auto
hoelzl@31468
  1925
  qed
hoelzl@29742
  1926
next
hoelzl@29742
  1927
  case False
hoelzl@31468
  1928
  hence "\<not> x \<le> 0" and "\<not> x < 1" "0 < x" "\<not> x \<le> Float 3 -1"
hoelzl@31468
  1929
    using `1 \<le> x` unfolding less_float_def le_float_def real_of_float_simp pow2_def
hoelzl@31468
  1930
    by auto
hoelzl@29742
  1931
  show ?thesis
hoelzl@29742
  1932
  proof (cases x)
hoelzl@29742
  1933
    case (Float m e)
hoelzl@29742
  1934
    let ?s = "Float (e + (bitlen m - 1)) 0"
hoelzl@29742
  1935
    let ?x = "Float m (- (bitlen m - 1))"
hoelzl@29742
  1936
hoelzl@29742
  1937
    have "0 < m" and "m \<noteq> 0" using float_pos_m_pos `0 < x` Float by auto
hoelzl@29742
  1938
hoelzl@29742
  1939
    {
hoelzl@41126
  1940
      have "lb_ln2 prec * ?s \<le> ln 2 * (e + (bitlen m - 1))" (is "?lb2 \<le> _")
wenzelm@32962
  1941
        unfolding real_of_float_mult real_of_float_ge0_exp[OF order_refl] nat_0 power_0 mult_1_right
wenzelm@32962
  1942
        using lb_ln2[of prec]
hoelzl@29742
  1943
      proof (rule mult_right_mono)
wenzelm@32962
  1944
        have "1 \<le> Float m e" using `1 \<le> x` Float unfolding le_float_def by auto
wenzelm@32962
  1945
        from float_gt1_scale[OF this]
wenzelm@32962
  1946
        show "0 \<le> real (e + (bitlen m - 1))" by auto
hoelzl@29742
  1947
      qed
hoelzl@29742
  1948
      moreover
hoelzl@29742
  1949
      from bitlen_div[OF `0 < m`, unfolded normalized_float[OF `m \<noteq> 0`, symmetric]]
hoelzl@31098
  1950
      have "0 \<le> real (?x - 1)" and "real (?x - 1) < 1" by auto
hoelzl@29742
  1951
      from ln_float_bounds(1)[OF this]
hoelzl@41126
  1952
      have "(?x - 1) * lb_ln_horner prec (get_even prec) 1 (?x - 1) \<le> ln ?x" (is "?lb_horner \<le> _") by auto
hoelzl@41126
  1953
      ultimately have "?lb2 + ?lb_horner \<le> ln x"
wenzelm@32962
  1954
        unfolding Float ln_shifted_float[OF `0 < m`, of e] by auto
hoelzl@31468
  1955
    }
hoelzl@29742
  1956
    moreover
hoelzl@29742
  1957
    {
hoelzl@29742
  1958
      from bitlen_div[OF `0 < m`, unfolded normalized_float[OF `m \<noteq> 0`, symmetric]]
hoelzl@31098
  1959
      have "0 \<le> real (?x - 1)" and "real (?x - 1) < 1" by auto
hoelzl@29742
  1960
      from ln_float_bounds(2)[OF this]
hoelzl@41126
  1961
      have "ln ?x \<le> (?x - 1) * ub_ln_horner prec (get_odd prec) 1 (?x - 1)" (is "_ \<le> ?ub_horner") by auto
hoelzl@29742
  1962
      moreover
hoelzl@41126
  1963
      have "ln 2 * (e + (bitlen m - 1)) \<le> ub_ln2 prec * ?s" (is "_ \<le> ?ub2")
wenzelm@32962
  1964
        unfolding real_of_float_mult real_of_float_ge0_exp[OF order_refl] nat_0 power_0 mult_1_right
wenzelm@32962
  1965
        using ub_ln2[of prec]
hoelzl@29742
  1966
      proof (rule mult_right_mono)
wenzelm@32962
  1967
        have "1 \<le> Float m e" using `1 \<le> x` Float unfolding le_float_def by auto
wenzelm@32962
  1968
        from float_gt1_scale[OF this]
wenzelm@32962
  1969
        show "0 \<le> real (e + (bitlen m - 1))" by auto
hoelzl@29742
  1970
      qed
hoelzl@41126
  1971
      ultimately have "ln x \<le> ?ub2 + ?ub_horner"
wenzelm@32962
  1972
        unfolding Float ln_shifted_float[OF `0 < m`, of e] by auto
hoelzl@29742
  1973
    }
hoelzl@29742
  1974
    ultimately show ?thesis unfolding lb_ln.simps unfolding ub_ln.simps
hoelzl@31468
  1975
      unfolding if_not_P[OF `\<not> x \<le> 0`] if_not_P[OF `\<not> x < 1`] if_not_P[OF False] if_not_P[OF `\<not> x \<le> Float 3 -1`] Let_def
hoelzl@31468
  1976
      unfolding scale.simps[of m e, unfolded Float[symmetric]] mantissa.simps[of m e, unfolded Float[symmetric]] real_of_float_add
hoelzl@31468
  1977
      by auto
hoelzl@29742
  1978
  qed
hoelzl@29742
  1979
qed
hoelzl@29742
  1980
hoelzl@29742
  1981
lemma ub_ln_lb_ln_bounds: assumes "0 < x"
hoelzl@41126
  1982
  shows "the (lb_ln prec x) \<le> ln x \<and> ln x \<le> the (ub_ln prec x)"
hoelzl@29742
  1983
  (is "?lb \<le> ?ln \<and> ?ln \<le> ?ub")
hoelzl@29742
  1984
proof (cases "x < 1")
hoelzl@29742
  1985
  case False hence "1 \<le> x" unfolding less_float_def le_float_def by auto
hoelzl@29742
  1986
  show ?thesis using ub_ln_lb_ln_bounds'[OF `1 \<le> x`] .
hoelzl@29742
  1987
next
hoelzl@29742
  1988
  case True have "\<not> x \<le> 0" using `0 < x` unfolding less_float_def le_float_def by auto
hoelzl@29742
  1989
hoelzl@31098
  1990
  have "0 < real x" and "real x \<noteq> 0" using `0 < x` unfolding less_float_def by auto
hoelzl@31098
  1991
  hence A: "0 < 1 / real x" by auto
hoelzl@29742
  1992
hoelzl@29742
  1993
  {
hoelzl@29742
  1994
    let ?divl = "float_divl (max prec 1) 1 x"
hoelzl@29742
  1995
    have A': "1 \<le> ?divl" using float_divl_pos_less1_bound[OF `0 < x` `x < 1`] unfolding le_float_def less_float_def by auto
hoelzl@31098
  1996
    hence B: "0 < real ?divl" unfolding le_float_def by auto
hoelzl@31468
  1997
hoelzl@41126
  1998
    have "ln ?divl \<le> ln (1 / x)" unfolding ln_le_cancel_iff[OF B A] using float_divl[of _ 1 x] by auto
hoelzl@41126
  1999
    hence "ln x \<le> - ln ?divl" unfolding nonzero_inverse_eq_divide[OF `real x \<noteq> 0`, symmetric] ln_inverse[OF `0 < real x`] by auto
hoelzl@31468
  2000
    from this ub_ln_lb_ln_bounds'[OF A', THEN conjunct1, THEN le_imp_neg_le]
hoelzl@41126
  2001
    have "?ln \<le> - the (lb_ln prec ?divl)" unfolding real_of_float_minus by (rule order_trans)
hoelzl@29742
  2002
  } moreover
hoelzl@29742
  2003
  {
hoelzl@29742
  2004
    let ?divr = "float_divr prec 1 x"
hoelzl@29742
  2005
    have A': "1 \<le> ?divr" using float_divr_pos_less1_lower_bound[OF `0 < x` `x < 1`] unfolding le_float_def less_float_def by auto
hoelzl@31098
  2006
    hence B: "0 < real ?divr" unfolding le_float_def by auto
hoelzl@31468
  2007
hoelzl@41126
  2008
    have "ln (1 / x) \<le> ln ?divr" unfolding ln_le_cancel_iff[OF A B] using float_divr[of 1 x] by auto
hoelzl@41126
  2009
    hence "- ln ?divr \<le> ln x" unfolding nonzero_inverse_eq_divide[OF `real x \<noteq> 0`, symmetric] ln_inverse[OF `0 < real x`] by auto
hoelzl@29742
  2010
    from ub_ln_lb_ln_bounds'[OF A', THEN conjunct2, THEN le_imp_neg_le] this
hoelzl@41126
  2011
    have "- the (ub_ln prec ?divr) \<le> ?ln" unfolding real_of_float_minus by (rule order_trans)
hoelzl@29742
  2012
  }
hoelzl@29742
  2013
  ultimately show ?thesis unfolding lb_ln.simps[where x=x]  ub_ln.simps[where x=x]
hoelzl@29742
  2014
    unfolding if_not_P[OF `\<not> x \<le> 0`] if_P[OF True] by auto
hoelzl@29742
  2015
qed
hoelzl@29742
  2016
hoelzl@29742
  2017
lemma lb_ln: assumes "Some y = lb_ln prec x"
hoelzl@41126
  2018
  shows "y \<le> ln x" and "0 < real x"
hoelzl@29742
  2019
proof -
hoelzl@29742
  2020
  have "0 < x"
hoelzl@29742
  2021
  proof (rule ccontr)
hoelzl@29742
  2022
    assume "\<not> 0 < x" hence "x \<le> 0" unfolding le_float_def less_float_def by auto
hoelzl@29742
  2023
    thus False using assms by auto
hoelzl@29742
  2024
  qed
hoelzl@31098
  2025
  thus "0 < real x" unfolding less_float_def by auto
hoelzl@41126
  2026
  have "the (lb_ln prec x) \<le> ln x" using ub_ln_lb_ln_bounds[OF `0 < x`] ..
hoelzl@41126
  2027
  thus "y \<le> ln x" unfolding assms[symmetric] by auto
hoelzl@29742
  2028
qed
hoelzl@29742
  2029
hoelzl@29742
  2030
lemma ub_ln: assumes "Some y = ub_ln prec x"
hoelzl@41126
  2031
  shows "ln x \<le> y" and "0 < real x"
hoelzl@29742
  2032
proof -
hoelzl@29742
  2033
  have "0 < x"
hoelzl@29742
  2034
  proof (rule ccontr)
hoelzl@29742
  2035
    assume "\<not> 0 < x" hence "x \<le> 0" unfolding le_float_def less_float_def by auto
hoelzl@29742
  2036
    thus False using assms by auto
hoelzl@29742
  2037
  qed
hoelzl@31098
  2038
  thus "0 < real x" unfolding less_float_def by auto
hoelzl@41126
  2039
  have "ln x \<le> the (ub_ln prec x)" using ub_ln_lb_ln_bounds[OF `0 < x`] ..
hoelzl@41126
  2040
  thus "ln x \<le> y" unfolding assms[symmetric] by auto
hoelzl@29742
  2041
qed
hoelzl@29742
  2042
hoelzl@41126
  2043
lemma bnds_ln: "\<forall> (x::real) lx ux. (Some l, Some u) = (lb_ln prec lx, ub_ln prec ux) \<and> x \<in> {lx .. ux} \<longrightarrow> l \<le> ln x \<and> ln x \<le> u"
hoelzl@29742
  2044
proof (rule allI, rule allI, rule allI, rule impI)
hoelzl@41126
  2045
  fix x::real and lx ux
hoelzl@41126
  2046
  assume "(Some l, Some u) = (lb_ln prec lx, ub_ln prec ux) \<and> x \<in> {lx .. ux}"
hoelzl@41126
  2047
  hence l: "Some l = lb_ln prec lx " and u: "Some u = ub_ln prec ux" and x: "x \<in> {lx .. ux}" by auto
hoelzl@41126
  2048
hoelzl@41126
  2049
  have "ln ux \<le> u" and "0 < real ux" using ub_ln u by auto
hoelzl@41126
  2050
  have "l \<le> ln lx" and "0 < real lx" and "0 < x" using lb_ln[OF l] x by auto
hoelzl@41126
  2051
hoelzl@41126
  2052
  from ln_le_cancel_iff[OF `0 < real lx` `0 < x`] `l \<le> ln lx`
hoelzl@41126
  2053
  have "l \<le> ln x" using x unfolding atLeastAtMost_iff by auto
hoelzl@29742
  2054
  moreover
hoelzl@41126
  2055
  from ln_le_cancel_iff[OF `0 < x` `0 < real ux`] `ln ux \<le> real u`
hoelzl@41126
  2056
  have "ln x \<le> u" using x unfolding atLeastAtMost_iff by auto
hoelzl@41126
  2057
  ultimately show "l \<le> ln x \<and> ln x \<le> u" ..
hoelzl@29742
  2058
qed
hoelzl@29742
  2059
hoelzl@29742
  2060
section "Implement floatarith"
hoelzl@29742
  2061
hoelzl@29742
  2062
subsection "Define syntax and semantics"
hoelzl@29742
  2063
hoelzl@29742
  2064
datatype floatarith
hoelzl@29742
  2065
  = Add floatarith floatarith
hoelzl@29742
  2066
  | Minus floatarith
hoelzl@29742
  2067
  | Mult floatarith floatarith
hoelzl@29742
  2068
  | Inverse floatarith
hoelzl@29742
  2069
  | Cos floatarith
hoelzl@29742
  2070
  | Arctan floatarith
hoelzl@29742
  2071
  | Abs floatarith
hoelzl@29742
  2072
  | Max floatarith floatarith
hoelzl@29742
  2073
  | Min floatarith floatarith
hoelzl@29742
  2074
  | Pi
hoelzl@29742
  2075
  | Sqrt floatarith
hoelzl@29742
  2076
  | Exp floatarith
hoelzl@29742
  2077
  | Ln floatarith
hoelzl@29742
  2078
  | Power floatarith nat
hoelzl@32919
  2079
  | Var nat
hoelzl@29742
  2080
  | Num float
hoelzl@29742
  2081
hoelzl@31862
  2082
fun interpret_floatarith :: "floatarith \<Rightarrow> real list \<Rightarrow> real" where
hoelzl@31098
  2083
"interpret_floatarith (Add a b) vs   = (interpret_floatarith a vs) + (interpret_floatarith b vs)" |
hoelzl@31098
  2084
"interpret_floatarith (Minus a) vs    = - (interpret_floatarith a vs)" |
hoelzl@31098
  2085
"interpret_floatarith (Mult a b) vs   = (interpret_floatarith a vs) * (interpret_floatarith b vs)" |
hoelzl@31098
  2086
"interpret_floatarith (Inverse a) vs  = inverse (interpret_floatarith a vs)" |
hoelzl@31098
  2087
"interpret_floatarith (Cos a) vs      = cos (interpret_floatarith a vs)" |
hoelzl@31098
  2088
"interpret_floatarith (Arctan a) vs   = arctan (interpret_floatarith a vs)" |
hoelzl@31098
  2089
"interpret_floatarith (Min a b) vs    = min (interpret_floatarith a vs) (interpret_floatarith b vs)" |
hoelzl@31098
  2090
"interpret_floatarith (Max a b) vs    = max (interpret_floatarith a vs) (interpret_floatarith b vs)" |
hoelzl@31098
  2091
"interpret_floatarith (Abs a) vs      = abs (interpret_floatarith a vs)" |
hoelzl@31098
  2092
"interpret_floatarith Pi vs           = pi" |
hoelzl@31098
  2093
"interpret_floatarith (Sqrt a) vs     = sqrt (interpret_floatarith a vs)" |
hoelzl@31098
  2094
"interpret_floatarith (Exp a) vs      = exp (interpret_floatarith a vs)" |
hoelzl@31098
  2095
"interpret_floatarith (Ln a) vs       = ln (interpret_floatarith a vs)" |
hoelzl@31098
  2096
"interpret_floatarith (Power a n) vs  = (interpret_floatarith a vs)^n" |
hoelzl@41126
  2097
"interpret_floatarith (Num f) vs      = f" |
hoelzl@32919
  2098
"interpret_floatarith (Var n) vs     = vs ! n"
hoelzl@29742
  2099
hoelzl@31811
  2100
lemma interpret_floatarith_divide: "interpret_floatarith (Mult a (Inverse b)) vs = (interpret_floatarith a vs) / (interpret_floatarith b vs)"
huffman@36770
  2101
  unfolding divide_inverse interpret_floatarith.simps ..
hoelzl@31811
  2102
hoelzl@31811
  2103
lemma interpret_floatarith_diff: "interpret_floatarith (Add a (Minus b)) vs = (interpret_floatarith a vs) - (interpret_floatarith b vs)"
haftmann@37860
  2104
  unfolding diff_minus interpret_floatarith.simps ..
hoelzl@31811
  2105
hoelzl@31811
  2106
lemma interpret_floatarith_sin: "interpret_floatarith (Cos (Add (Mult Pi (Num (Float 1 -1))) (Minus a))) vs =
hoelzl@31811
  2107
  sin (interpret_floatarith a vs)"
hoelzl@31811
  2108
  unfolding sin_cos_eq interpret_floatarith.simps
haftmann@37860
  2109
            interpret_floatarith_divide interpret_floatarith_diff diff_minus
hoelzl@31811
  2110
  by auto
hoelzl@31811
  2111
hoelzl@31811
  2112
lemma interpret_floatarith_tan:
hoelzl@31811
  2113
  "interpret_floatarith (Mult (Cos (Add (Mult Pi (Num (Float 1 -1))) (Minus a))) (Inverse (Cos a))) vs =
hoelzl@31811
  2114
   tan (interpret_floatarith a vs)"
huffman@36770
  2115
  unfolding interpret_floatarith.simps(3,4) interpret_floatarith_sin tan_def divide_inverse
hoelzl@31811
  2116
  by auto
hoelzl@31811
  2117
hoelzl@31811
  2118
lemma interpret_floatarith_powr: "interpret_floatarith (Exp (Mult b (Ln a))) vs = (interpret_floatarith a vs) powr (interpret_floatarith b vs)"
hoelzl@31811
  2119
  unfolding powr_def interpret_floatarith.simps ..
hoelzl@31811
  2120
hoelzl@31811
  2121
lemma interpret_floatarith_log: "interpret_floatarith ((Mult (Ln x) (Inverse (Ln b)))) vs = log (interpret_floatarith b vs) (interpret_floatarith x vs)"
huffman@36770
  2122
  unfolding log_def interpret_floatarith.simps divide_inverse ..
hoelzl@31811
  2123
hoelzl@31811
  2124
lemma interpret_floatarith_num:
hoelzl@31811
  2125
  shows "interpret_floatarith (Num (Float 0 0)) vs = 0"
hoelzl@31811
  2126
  and "interpret_floatarith (Num (Float 1 0)) vs = 1"
hoelzl@31811
  2127
  and "interpret_floatarith (Num (Float (number_of a) 0)) vs = number_of a" by auto
hoelzl@31811
  2128
hoelzl@29742
  2129
subsection "Implement approximation function"
hoelzl@29742
  2130
hoelzl@29742
  2131
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
hoelzl@29742
  2132
"lift_bin' (Some (l1, u1)) (Some (l2, u2)) f = Some (f l1 u1 l2 u2)" |
hoelzl@29742
  2133
"lift_bin' a b f = None"
hoelzl@29742
  2134
hoelzl@29742
  2135
fun lift_un :: "(float * float) option \<Rightarrow> (float \<Rightarrow> float \<Rightarrow> ((float option) * (float option))) \<Rightarrow> (float * float) option" where
hoelzl@29742
  2136
"lift_un (Some (l1, u1)) f = (case (f l1 u1) of (Some l, Some u) \<Rightarrow> Some (l, u)
hoelzl@29742
  2137
                                             | t \<Rightarrow> None)" |
hoelzl@29742
  2138
"lift_un b f = None"
hoelzl@29742
  2139
hoelzl@29742
  2140
fun lift_un' :: "(float * float) option \<Rightarrow> (float \<Rightarrow> float \<Rightarrow> (float * float)) \<Rightarrow> (float * float) option" where
hoelzl@29742
  2141
"lift_un' (Some (l1, u1)) f = Some (f l1 u1)" |
hoelzl@29742
  2142
"lift_un' b f = None"
hoelzl@29742
  2143
hoelzl@31811
  2144
definition
hoelzl@31811
  2145
"bounded_by xs vs \<longleftrightarrow>
hoelzl@31811
  2146
  (\<forall> i < length vs. case vs ! i of None \<Rightarrow> True
hoelzl@31811
  2147
         | Some (l, u) \<Rightarrow> xs ! i \<in> { real l .. real u })"
hoelzl@31811
  2148
hoelzl@31811
  2149
lemma bounded_byE:
hoelzl@31811
  2150
  assumes "bounded_by xs vs"
hoelzl@31811
  2151
  shows "\<And> i. i < length vs \<Longrightarrow> case vs ! i of None \<Rightarrow> True
hoelzl@31811
  2152
         | Some (l, u) \<Rightarrow> xs ! i \<in> { real l .. real u }"
hoelzl@31811
  2153
  using assms bounded_by_def by blast
hoelzl@31811
  2154
hoelzl@31811
  2155
lemma bounded_by_update:
hoelzl@31811
  2156
  assumes "bounded_by xs vs"
hoelzl@31811
  2157
  and bnd: "xs ! i \<in> { real l .. real u }"
hoelzl@31811
  2158
  shows "bounded_by xs (vs[i := Some (l,u)])"
hoelzl@31811
  2159
proof -
hoelzl@31811
  2160
{ fix j
hoelzl@31811
  2161
  let ?vs = "vs[i := Some (l,u)]"
hoelzl@31811
  2162
  assume "j < length ?vs" hence [simp]: "j < length vs" by simp
hoelzl@31811
  2163
  have "case ?vs ! j of None \<Rightarrow> True | Some (l, u) \<Rightarrow> xs ! j \<in> { real l .. real u }"
hoelzl@31811
  2164
  proof (cases "?vs ! j")
hoelzl@31811
  2165
    case (Some b)
hoelzl@31811
  2166
    thus ?thesis
hoelzl@31811
  2167
    proof (cases "i = j")
hoelzl@31811
  2168
      case True
hoelzl@31811
  2169
      thus ?thesis using `?vs ! j = Some b` and bnd by auto
hoelzl@31811
  2170
    next
hoelzl@31811
  2171
      case False
hoelzl@31811
  2172
      thus ?thesis using `bounded_by xs vs` unfolding bounded_by_def by auto
hoelzl@31811
  2173
    qed
hoelzl@31811
  2174
  qed auto }
hoelzl@31811
  2175
  thus ?thesis unfolding bounded_by_def by auto
hoelzl@31811
  2176
qed
hoelzl@31811
  2177
hoelzl@31811
  2178
lemma bounded_by_None:
hoelzl@31811
  2179
  shows "bounded_by xs (replicate (length xs) None)"
hoelzl@31811
  2180
  unfolding bounded_by_def by auto
hoelzl@31811
  2181
hoelzl@31811
  2182
fun approx approx' :: "nat \<Rightarrow> floatarith \<Rightarrow> (float * float) option list \<Rightarrow> (float * float) option" where
hoelzl@29742
  2183
"approx' prec a bs          = (case (approx prec a bs) of Some (l, u) \<Rightarrow> Some (round_down prec l, round_up prec u) | None \<Rightarrow> None)" |
hoelzl@31811
  2184
"approx prec (Add a b) bs   = lift_bin' (approx' prec a bs) (approx' prec b bs) (\<lambda> l1 u1 l2 u2. (l1 + l2, u1 + u2))" |
hoelzl@29742
  2185
"approx prec (Minus a) bs   = lift_un' (approx' prec a bs) (\<lambda> l u. (-u, -l))" |
hoelzl@29742
  2186
"approx prec (Mult a b) bs  = lift_bin' (approx' prec a bs) (approx' prec b bs)
hoelzl@31809
  2187
                                    (\<lambda> a1 a2 b1 b2. (float_nprt a1 * float_pprt b2 + float_nprt a2 * float_nprt b2 + float_pprt a1 * float_pprt b1 + float_pprt a2 * float_nprt b1,
hoelzl@29742
  2188
                                                     float_pprt a2 * float_pprt b2 + float_pprt a1 * float_nprt b2 + float_nprt a2 * float_pprt b1 + float_nprt a1 * float_nprt b1))" |
hoelzl@29742
  2189
"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))" |
hoelzl@29742
  2190
"approx prec (Cos a) bs     = lift_un' (approx' prec a bs) (bnds_cos prec)" |
hoelzl@29742
  2191
"approx prec Pi bs          = Some (lb_pi prec, ub_pi prec)" |
hoelzl@29742
  2192
"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))" |
hoelzl@29742
  2193
"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))" |
hoelzl@29742
  2194
"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>))" |
hoelzl@29742
  2195
"approx prec (Arctan a) bs  = lift_un' (approx' prec a bs) (\<lambda> l u. (lb_arctan prec l, ub_arctan prec u))" |
hoelzl@31467
  2196
"approx prec (Sqrt a) bs    = lift_un' (approx' prec a bs) (\<lambda> l u. (lb_sqrt prec l, ub_sqrt prec u))" |
hoelzl@29742
  2197
"approx prec (Exp a) bs     = lift_un' (approx' prec a bs) (\<lambda> l u. (lb_exp prec l, ub_exp prec u))" |
hoelzl@29742
  2198
"approx prec (Ln a) bs      = lift_un (approx' prec a bs) (\<lambda> l u. (lb_ln prec l, ub_ln prec u))" |
hoelzl@29742
  2199
"approx prec (Power a n) bs = lift_un' (approx' prec a bs) (float_power_bnds n)" |
hoelzl@29742
  2200
"approx prec (Num f) bs     = Some (f, f)" |
hoelzl@32919
  2201
"approx prec (Var i) bs    = (if i < length bs then bs ! i else None)"
hoelzl@29742
  2202
hoelzl@29742
  2203
lemma lift_bin'_ex:
hoelzl@29742
  2204
  assumes lift_bin'_Some: "Some (l, u) = lift_bin' a b f"
hoelzl@29742
  2205
  shows "\<exists> l1 u1 l2 u2. Some (l1, u1) = a \<and> Some (l2, u2) = b"
hoelzl@29742
  2206
proof (cases a)
hoelzl@29742
  2207
  case None hence "None = lift_bin' a b f" unfolding None lift_bin'.simps ..
hoelzl@29742
  2208
  thus ?thesis using lift_bin'_Some by auto
hoelzl@29742
  2209
next
hoelzl@29742
  2210
  case (Some a')
hoelzl@29742
  2211
  show ?thesis
hoelzl@29742
  2212
  proof (cases b)
hoelzl@29742
  2213
    case None hence "None = lift_bin' a b f" unfolding None lift_bin'.simps ..
hoelzl@29742
  2214
    thus ?thesis using lift_bin'_Some by auto
hoelzl@29742
  2215
  next
hoelzl@29742
  2216
    case (Some b')
hoelzl@29742
  2217
    obtain la ua where a': "a' = (la, ua)" by (cases a', auto)
hoelzl@29742
  2218
    obtain lb ub where b': "b' = (lb, ub)" by (cases b', auto)
hoelzl@29742
  2219
    thus ?thesis unfolding `a = Some a'` `b = Some b'` a' b' by auto
hoelzl@29742
  2220
  qed
hoelzl@29742
  2221
qed
hoelzl@29742
  2222
hoelzl@29742
  2223
lemma lift_bin'_f:
hoelzl@29742
  2224
  assumes lift_bin'_Some: "Some (l, u) = lift_bin' (g a) (g b) f"
hoelzl@29742
  2225
  and Pa: "\<And>l u. Some (l, u) = g a \<Longrightarrow> P l u a" and Pb: "\<And>l u. Some (l, u) = g b \<Longrightarrow> P l u b"
hoelzl@29742
  2226
  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)"
hoelzl@29742
  2227
proof -
hoelzl@29742
  2228
  obtain l1 u1 l2 u2
hoelzl@29742
  2229
    where Sa: "Some (l1, u1) = g a" and Sb: "Some (l2, u2) = g b" using lift_bin'_ex[OF assms(1)] by auto
hoelzl@31809
  2230
  have lu: "(l, u) = f l1 u1 l2 u2" using lift_bin'_Some[unfolded Sa[symmetric] Sb[symmetric] lift_bin'.simps] by auto
hoelzl@29742
  2231
  have "l = fst (f l1 u1 l2 u2)" and "u = snd (f l1 u1 l2 u2)" unfolding lu[symmetric] by auto
hoelzl@31809
  2232
  thus ?thesis using Pa[OF Sa] Pb[OF Sb] by auto
hoelzl@29742
  2233
qed
hoelzl@29742
  2234
hoelzl@29742
  2235
lemma approx_approx':
hoelzl@41126
  2236
  assumes Pa: "\<And>l u. Some (l, u) = approx prec a vs \<Longrightarrow> l \<le> interpret_floatarith a xs \<and> interpret_floatarith a xs \<le> u"
hoelzl@29742
  2237
  and approx': "Some (l, u) = approx' prec a vs"
hoelzl@41126
  2238
  shows "l \<le> interpret_floatarith a xs \<and> interpret_floatarith a xs \<le> u"
hoelzl@29742
  2239
proof -
hoelzl@29742
  2240
  obtain l' u' where S: "Some (l', u') = approx prec a vs"
hoelzl@29742
  2241
    using approx' unfolding approx'.simps by (cases "approx prec a vs", auto)
hoelzl@29742
  2242
  have l': "l = round_down prec l'" and u': "u = round_up prec u'"
hoelzl@29742
  2243
    using approx' unfolding approx'.simps S[symmetric] by auto
hoelzl@31809
  2244
  show ?thesis unfolding l' u'
hoelzl@29742
  2245
    using order_trans[OF Pa[OF S, THEN conjunct2] round_up[of u']]
hoelzl@29742
  2246
    using order_trans[OF round_down[of _ l'] Pa[OF S, THEN conjunct1]] by auto
hoelzl@29742
  2247
qed
hoelzl@29742
  2248
hoelzl@29742
  2249
lemma lift_bin':
hoelzl@29742
  2250
  assumes lift_bin'_Some: "Some (l, u) = lift_bin' (approx' prec a bs) (approx' prec b bs) f"
hoelzl@41126
  2251
  and Pa: "\<And>l u. Some (l, u) = approx prec a bs \<Longrightarrow> l \<le> interpret_floatarith a xs \<and> interpret_floatarith a xs \<le> u" (is "\<And>l u. _ = ?g a \<Longrightarrow> ?P l u a")
hoelzl@41126
  2252
  and Pb: "\<And>l u. Some (l, u) = approx prec b bs \<Longrightarrow> l \<le> interpret_floatarith b xs \<and> interpret_floatarith b xs \<le> u"
hoelzl@41126
  2253
  shows "\<exists> l1 u1 l2 u2. (l1 \<le> interpret_floatarith a xs \<and> interpret_floatarith a xs \<le> u1) \<and>
hoelzl@41126
  2254
                        (l2 \<le> interpret_floatarith b xs \<and> interpret_floatarith b xs \<le> u2) \<and>
hoelzl@29742
  2255
                        l = fst (f l1 u1 l2 u2) \<and> u = snd (f l1 u1 l2 u2)"
hoelzl@29742
  2256
proof -
hoelzl@29742
  2257
  { fix l u assume "Some (l, u) = approx' prec a bs"
hoelzl@29742
  2258
    with approx_approx'[of prec a bs, OF _ this] Pa
hoelzl@41126
  2259
    have "l \<le> interpret_floatarith a xs \<and> interpret_floatarith a xs \<le> u" by auto } note Pa = this
hoelzl@29742
  2260
  { fix l u assume "Some (l, u) = approx' prec b bs"
hoelzl@29742
  2261
    with approx_approx'[of prec b bs, OF _ this] Pb
hoelzl@41126
  2262
    have "l \<le> interpret_floatarith b xs \<and> interpret_floatarith b xs \<le> u" by auto } note Pb = this
hoelzl@29742
  2263
hoelzl@29742
  2264
  from lift_bin'_f[where g="\<lambda>a. approx' prec a bs" and P = ?P, OF lift_bin'_Some, OF Pa Pb]
hoelzl@29742
  2265
  show ?thesis by auto
hoelzl@29742
  2266
qed
hoelzl@29742
  2267
hoelzl@29742
  2268
lemma lift_un'_ex:
hoelzl@29742
  2269
  assumes lift_un'_Some: "Some (l, u) = lift_un' a f"
hoelzl@29742
  2270
  shows "\<exists> l u. Some (l, u) = a"
hoelzl@29742
  2271
proof (cases a)
hoelzl@29742
  2272
  case None hence "None = lift_un' a f" unfolding None lift_un'.simps ..
hoelzl@29742
  2273
  thus ?thesis using lift_un'_Some by auto
hoelzl@29742
  2274
next
hoelzl@29742
  2275
  case (Some a')
hoelzl@29742
  2276
  obtain la ua where a': "a' = (la, ua)" by (cases a', auto)
hoelzl@29742
  2277
  thus ?thesis unfolding `a = Some a'` a' by auto
hoelzl@29742
  2278
qed
hoelzl@29742
  2279
hoelzl@29742
  2280
lemma lift_un'_f:
hoelzl@29742
  2281
  assumes lift_un'_Some: "Some (l, u) = lift_un' (g a) f"
hoelzl@29742
  2282
  and Pa: "\<And>l u. Some (l, u) = g a \<Longrightarrow> P l u a"
hoelzl@29742
  2283
  shows "\<exists> l1 u1. P l1 u1 a \<and> l = fst (f l1 u1) \<and> u = snd (f l1 u1)"
hoelzl@29742
  2284
proof -
hoelzl@29742
  2285
  obtain l1 u1 where Sa: "Some (l1, u1) = g a" using lift_un'_ex[OF assms(1)] by auto
hoelzl@29742
  2286
  have lu: "(l, u) = f l1 u1" using lift_un'_Some[unfolded Sa[symmetric] lift_un'.simps] by auto
hoelzl@29742
  2287
  have "l = fst (f l1 u1)" and "u = snd (f l1 u1)" unfolding lu[symmetric] by auto
hoelzl@29742
  2288
  thus ?thesis using Pa[OF Sa] by auto
hoelzl@29742
  2289
qed
hoelzl@29742
  2290
hoelzl@29742
  2291
lemma lift_un':
hoelzl@29742
  2292
  assumes lift_un'_Some: "Some (l, u) = lift_un' (approx' prec a bs) f"
hoelzl@41126
  2293
  and Pa: "\<And>l u. Some (l, u) = approx prec a bs \<Longrightarrow> l \<le> interpret_floatarith a xs \<and> interpret_floatarith a xs \<le> u" (is "\<And>l u. _ = ?g a \<Longrightarrow> ?P l u a")
hoelzl@41126
  2294
  shows "\<exists> l1 u1. (l1 \<le> interpret_floatarith a xs \<and> interpret_floatarith a xs \<le> u1) \<and>
hoelzl@29742
  2295
                        l = fst (f l1 u1) \<and> u = snd (f l1 u1)"
hoelzl@29742
  2296
proof -
hoelzl@29742
  2297
  { fix l u assume "Some (l, u) = approx' prec a bs"
hoelzl@29742
  2298
    with approx_approx'[of prec a bs, OF _ this] Pa
hoelzl@41126
  2299
    have "l \<le> interpret_floatarith a xs \<and> interpret_floatarith a xs \<le> u" by auto } note Pa = this
hoelzl@29742
  2300
  from lift_un'_f[where g="\<lambda>a. approx' prec a bs" and P = ?P, OF lift_un'_Some, OF Pa]
hoelzl@29742
  2301
  show ?thesis by auto
hoelzl@29742
  2302
qed
hoelzl@29742
  2303
hoelzl@29742
  2304
lemma lift_un'_bnds:
hoelzl@41126
  2305
  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"
hoelzl@29742
  2306
  and lift_un'_Some: "Some (l, u) = lift_un' (approx' prec a bs) f"
hoelzl@41126
  2307
  and Pa: "\<And>l u. Some (l, u) = approx prec a bs \<Longrightarrow> l \<le> interpret_floatarith a xs \<and> interpret_floatarith a xs \<le> u"
hoelzl@31098
  2308
  shows "real l \<le> f' (interpret_floatarith a xs) \<and> f' (interpret_floatarith a xs) \<le> real u"
hoelzl@29742
  2309
proof -
hoelzl@29742
  2310
  from lift_un'[OF lift_un'_Some Pa]
hoelzl@41126
  2311
  obtain l1 u1 where "l1 \<le> interpret_floatarith a xs" and "interpret_floatarith a xs \<le> u1" and "l = fst (f l1 u1)" and "u = snd (f l1 u1)" by blast
hoelzl@41126
  2312
  hence "(l, u) = f l1 u1" and "interpret_floatarith a xs \<in> {l1 .. u1}" by auto
hoelzl@29742
  2313
  thus ?thesis using bnds by auto
hoelzl@29742
  2314
qed
hoelzl@29742
  2315
hoelzl@29742
  2316
lemma lift_un_ex:
hoelzl@29742
  2317
  assumes lift_un_Some: "Some (l, u) = lift_un a f"
hoelzl@29742
  2318
  shows "\<exists> l u. Some (l, u) = a"
hoelzl@29742
  2319
proof (cases a)
hoelzl@29742
  2320
  case None hence "None = lift_un a f" unfolding None lift_un.simps ..
hoelzl@29742
  2321
  thus ?thesis using lift_un_Some by auto
hoelzl@29742
  2322
next
hoelzl@29742
  2323
  case (Some a')
hoelzl@29742
  2324
  obtain la ua where a': "a' = (la, ua)" by (cases a', auto)
hoelzl@29742
  2325
  thus ?thesis unfolding `a = Some a'` a' by auto
hoelzl@29742
  2326
qed
hoelzl@29742
  2327
hoelzl@29742
  2328
lemma lift_un_f:
hoelzl@29742
  2329
  assumes lift_un_Some: "Some (l, u) = lift_un (g a) f"
hoelzl@29742
  2330
  and Pa: "\<And>l u. Some (l, u) = g a \<Longrightarrow> P l u a"
hoelzl@29742
  2331
  shows "\<exists> l1 u1. P l1 u1 a \<and> Some l = fst (f l1 u1) \<and> Some u = snd (f l1 u1)"
hoelzl@29742
  2332
proof -
hoelzl@29742
  2333
  obtain l1 u1 where Sa: "Some (l1, u1) = g a" using lift_un_ex[OF assms(1)] by auto
hoelzl@29742
  2334
  have "fst (f l1 u1) \<noteq> None \<and> snd (f l1 u1) \<noteq> None"
hoelzl@29742
  2335
  proof (rule ccontr)
hoelzl@29742
  2336
    assume "\<not> (fst (f l1 u1) \<noteq> None \<and> snd (f l1 u1) \<noteq> None)"
hoelzl@29742
  2337
    hence or: "fst (f l1 u1) = None \<or> snd (f l1 u1) = None" by auto
hoelzl@31809
  2338
    hence "lift_un (g a) f = None"
hoelzl@29742
  2339
    proof (cases "fst (f l1 u1) = None")
hoelzl@29742
  2340
      case True
hoelzl@29742
  2341
      then obtain b where b: "f l1 u1 = (None, b)" by (cases "f l1 u1", auto)
hoelzl@29742
  2342
      thus ?thesis unfolding Sa[symmetric] lift_un.simps b by auto
hoelzl@29742
  2343
    next
hoelzl@29742
  2344
      case False hence "snd (f l1 u1) = None" using or by auto
hoelzl@29742
  2345
      with False obtain b where b: "f l1 u1 = (Some b, None)" by (cases "f l1 u1", auto)
hoelzl@29742
  2346
      thus ?thesis unfolding Sa[symmetric] lift_un.simps b by auto
hoelzl@29742
  2347
    qed
hoelzl@29742
  2348
    thus False using lift_un_Some by auto
hoelzl@29742
  2349
  qed
hoelzl@29742
  2350
  then obtain a' b' where f: "f l1 u1 = (Some a', Some b')" by (cases "f l1 u1", auto)
hoelzl@29742
  2351
  from lift_un_Some[unfolded Sa[symmetric] lift_un.simps f]
hoelzl@29742
  2352
  have "Some l = fst (f l1 u1)" and "Some u = snd (f l1 u1)" unfolding f by auto
hoelzl@29742
  2353
  thus ?thesis unfolding Sa[symmetric] lift_un.simps using Pa[OF Sa] by auto
hoelzl@29742
  2354
qed
hoelzl@29742
  2355
hoelzl@29742
  2356
lemma lift_un:
hoelzl@29742
  2357
  assumes lift_un_Some: "Some (l, u) = lift_un (approx' prec a bs) f"
hoelzl@41126
  2358
  and Pa: "\<And>l u. Some (l, u) = approx prec a bs \<Longrightarrow> l \<le> interpret_floatarith a xs \<and> interpret_floatarith a xs \<le> u" (is "\<And>l u. _ = ?g a \<Longrightarrow> ?P l u a")
hoelzl@41126
  2359
  shows "\<exists> l1 u1. (l1 \<le> interpret_floatarith a xs \<and> interpret_floatarith a xs \<le> u1) \<and>
hoelzl@29742
  2360
                  Some l = fst (f l1 u1) \<and> Some u = snd (f l1 u1)"
hoelzl@29742
  2361
proof -
hoelzl@29742
  2362
  { fix l u assume "Some (l, u) = approx' prec a bs"
hoelzl@29742
  2363
    with approx_approx'[of prec a bs, OF _ this] Pa
hoelzl@41126
  2364
    have "l \<le> interpret_floatarith a xs \<and> interpret_floatarith a xs \<le> u" by auto } note Pa = this
hoelzl@29742
  2365
  from lift_un_f[where g="\<lambda>a. approx' prec a bs" and P = ?P, OF lift_un_Some, OF Pa]
hoelzl@29742
  2366
  show ?thesis by auto
hoelzl@29742
  2367
qed
hoelzl@29742
  2368
hoelzl@29742
  2369
lemma lift_un_bnds:
hoelzl@41126
  2370
  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"
hoelzl@29742
  2371
  and lift_un_Some: "Some (l, u) = lift_un (approx' prec a bs) f"
hoelzl@41126
  2372
  and Pa: "\<And>l u. Some (l, u) = approx prec a bs \<Longrightarrow> l \<le> interpret_floatarith a xs \<and> interpret_floatarith a xs \<le> u"
hoelzl@31098
  2373
  shows "real l \<le> f' (interpret_floatarith a xs) \<and> f' (interpret_floatarith a xs) \<le> real u"
hoelzl@29742
  2374
proof -
hoelzl@29742
  2375
  from lift_un[OF lift_un_Some Pa]
hoelzl@41126
  2376
  obtain l1 u1 where "l1 \<le> interpret_floatarith a xs" and "interpret_floatarith a xs \<le> u1" and "Some l = fst (f l1 u1)" and "Some u = snd (f l1 u1)" by blast
hoelzl@41126
  2377
  hence "(Some l, Some u) = f l1 u1" and "interpret_floatarith a xs \<in> {l1 .. u1}" by auto
hoelzl@29742
  2378
  thus ?thesis using bnds by auto
hoelzl@29742
  2379
qed
hoelzl@29742
  2380
hoelzl@29742
  2381
lemma approx:
hoelzl@29742
  2382
  assumes "bounded_by xs vs"
hoelzl@29742
  2383
  and "Some (l, u) = approx prec arith vs" (is "_ = ?g arith")
hoelzl@41126
  2384
  shows "l \<le> interpret_floatarith arith xs \<and> interpret_floatarith arith xs \<le> u" (is "?P l u arith")
hoelzl@31809
  2385
  using `Some (l, u) = approx prec arith vs`
hoelzl@29742
  2386
proof (induct arith arbitrary: l u x)
hoelzl@29742
  2387
  case (Add a b)
hoelzl@29742
  2388
  from lift_bin'[OF Add.prems[unfolded approx.simps]] Add.hyps
hoelzl@29742
  2389
  obtain l1 u1 l2 u2 where "l = l1 + l2" and "u = u1 + u2"
hoelzl@41126
  2390
    "l1 \<le> interpret_floatarith a xs" and "interpret_floatarith a xs \<le> u1"
hoelzl@41126
  2391
    "l2 \<le> interpret_floatarith b xs" and "interpret_floatarith b xs \<le> u2" unfolding fst_conv snd_conv by blast
hoelzl@31098
  2392
  thus ?case unfolding interpret_floatarith.simps by auto
hoelzl@29742
  2393
next
hoelzl@29742
  2394
  case (Minus a)
hoelzl@29742
  2395
  from lift_un'[OF Minus.prems[unfolded approx.simps]] Minus.hyps
hoelzl@29742
  2396
  obtain l1 u1 where "l = -u1" and "u = -l1"
hoelzl@41126
  2397
    "l1 \<le> interpret_floatarith a xs" and "interpret_floatarith a xs \<le> u1" unfolding fst_conv snd_conv by blast
hoelzl@31098
  2398
  thus ?case unfolding interpret_floatarith.simps using real_of_float_minus by auto
hoelzl@29742
  2399
next
hoelzl@29742
  2400
  case (Mult a b)
hoelzl@29742
  2401
  from lift_bin'[OF Mult.prems[unfolded approx.simps]] Mult.hyps
hoelzl@31809
  2402
  obtain l1 u1 l2 u2
hoelzl@29742
  2403
    where l: "l = float_nprt l1 * float_pprt u2 + float_nprt u1 * float_nprt u2 + float_pprt l1 * float_pprt l2 + float_pprt u1 * float_nprt l2"
hoelzl@29742
  2404
    and u: "u = float_pprt u1 * float_pprt u2 + float_pprt l1 * float_nprt u2 + float_nprt u1 * float_pprt l2 + float_nprt l1 * float_nprt l2"
hoelzl@41126
  2405
    and "l1 \<le> interpret_floatarith a xs" and "interpret_floatarith a xs \<le> u1"
hoelzl@41126
  2406
    and "l2 \<le> interpret_floatarith b xs" and "interpret_floatarith b xs \<le> u2" unfolding fst_conv snd_conv by blast
hoelzl@31809
  2407
  thus ?case unfolding interpret_floatarith.simps l u real_of_float_add real_of_float_mult real_of_float_nprt real_of_float_pprt
hoelzl@29742
  2408
    using mult_le_prts mult_ge_prts by auto
hoelzl@29742
  2409
next
hoelzl@29742
  2410
  case (Inverse a)
hoelzl@29742
  2411
  from lift_un[OF Inverse.prems[unfolded approx.simps], unfolded if_distrib[of fst] if_distrib[of snd] fst_conv snd_conv] Inverse.hyps
hoelzl@31809
  2412
  obtain l1 u1 where l': "Some l = (if 0 < l1 \<or> u1 < 0 then Some (float_divl prec 1 u1) else None)"
hoelzl@29742
  2413
    and u': "Some u = (if 0 < l1 \<or> u1 < 0 then Some (float_divr prec 1 l1) else None)"
hoelzl@41126
  2414
    and l1: "l1 \<le> interpret_floatarith a xs" and u1: "interpret_floatarith a xs \<le> u1" by blast
hoelzl@29742
  2415
  have either: "0 < l1 \<or> u1 < 0" proof (rule ccontr) assume P: "\<not> (0 < l1 \<or> u1 < 0)" show False using l' unfolding if_not_P[OF P] by auto qed
hoelzl@31098
  2416
  moreover have l1_le_u1: "real l1 \<le> real u1" using l1 u1 by auto
hoelzl@31098
  2417
  ultimately have "real l1 \<noteq> 0" and "real u1 \<noteq> 0" unfolding less_float_def by auto
hoelzl@29742
  2418
hoelzl@41126
  2419
  have inv: "inverse u1 \<le> inverse (interpret_floatarith a xs)
hoelzl@41126
  2420
           \<and> inverse (interpret_floatarith a xs) \<le> inverse l1"
hoelzl@29742
  2421
  proof (cases "0 < l1")
hoelzl@31809
  2422
    case True hence "0 < real u1" and "0 < real l1" "0 < interpret_floatarith a xs"
hoelzl@29742
  2423
      unfolding less_float_def using l1_le_u1 l1 by auto
hoelzl@29742
  2424
    show ?thesis
hoelzl@31098
  2425
      unfolding inverse_le_iff_le[OF `0 < real u1` `0 < interpret_floatarith a xs`]
wenzelm@32962
  2426
        inverse_le_iff_le[OF `0 < interpret_floatarith a xs` `0 < real l1`]
hoelzl@29742
  2427
      using l1 u1 by auto
hoelzl@29742
  2428
  next
hoelzl@29742
  2429
    case False hence "u1 < 0" using either by blast
hoelzl@31809
  2430
    hence "real u1 < 0" and "real l1 < 0" "interpret_floatarith a xs < 0"
hoelzl@29742
  2431
      unfolding less_float_def using l1_le_u1 u1 by auto
hoelzl@29742
  2432
    show ?thesis
hoelzl@31098
  2433
      unfolding inverse_le_iff_le_neg[OF `real u1 < 0` `interpret_floatarith a xs < 0`]
wenzelm@32962
  2434
        inverse_le_iff_le_neg[OF `interpret_floatarith a xs < 0` `real l1 < 0`]
hoelzl@29742
  2435
      using l1 u1 by auto
hoelzl@29742
  2436
  qed
hoelzl@31468
  2437
hoelzl@29742
  2438
  from l' have "l = float_divl prec 1 u1" by (cases "0 < l1 \<or> u1 < 0", auto)
hoelzl@41126
  2439
  hence "l \<le> inverse u1" unfolding nonzero_inverse_eq_divide[OF `real u1 \<noteq> 0`] using float_divl[of prec 1 u1] by auto
hoelzl@31098
  2440
  also have "\<dots> \<le> inverse (interpret_floatarith a xs)" using inv by auto
hoelzl@41126
  2441
  finally have "l \<le> inverse (interpret_floatarith a xs)" .
hoelzl@29742
  2442
  moreover
hoelzl@29742
  2443
  from u' have "u = float_divr prec 1 l1" by (cases "0 < l1 \<or> u1 < 0", auto)
hoelzl@41126
  2444
  hence "inverse l1 \<le> u" unfolding nonzero_inverse_eq_divide[OF `real l1 \<noteq> 0`] using float_divr[of 1 l1 prec] by auto
hoelzl@41126
  2445
  hence "inverse (interpret_floatarith a xs) \<le> u" by (rule order_trans[OF inv[THEN conjunct2]])
hoelzl@31098
  2446
  ultimately show ?case unfolding interpret_floatarith.simps using l1 u1 by auto
hoelzl@29742
  2447
next
hoelzl@29742
  2448
  case (Abs x)
hoelzl@29742
  2449
  from lift_un'[OF Abs.prems[unfolded approx.simps], unfolded fst_conv snd_conv] Abs.hyps
hoelzl@29742
  2450
  obtain l1 u1 where l': "l = (if l1 < 0 \<and> 0 < u1 then 0 else min \<bar>l1\<bar> \<bar>u1\<bar>)" and u': "u = max \<bar>l1\<bar> \<bar>u1\<bar>"
hoelzl@41126
  2451
    and l1: "l1 \<le> interpret_floatarith x xs" and u1: "interpret_floatarith x xs \<le> u1" by blast
hoelzl@31098
  2452
  thus ?case unfolding l' u' by (cases "l1 < 0 \<and> 0 < u1", auto simp add: real_of_float_min real_of_float_max real_of_float_abs less_float_def)
hoelzl@29742
  2453
next
hoelzl@29742
  2454
  case (Min a b)
hoelzl@29742
  2455
  from lift_bin'[OF Min.prems[unfolded approx.simps], unfolded fst_conv snd_conv] Min.hyps
hoelzl@29742
  2456
  obtain l1 u1 l2 u2 where l': "l = min l1 l2" and u': "u = min u1 u2"
hoelzl@41126
  2457
    and l1: "l1 \<le> interpret_floatarith a xs" and u1: "interpret_floatarith a xs \<le> u1"
hoelzl@41126
  2458
    and l1: "l2 \<le> interpret_floatarith b xs" and u1: "interpret_floatarith b xs \<le> u2" by blast
hoelzl@31098
  2459
  thus ?case unfolding l' u' by (auto simp add: real_of_float_min)
hoelzl@29742
  2460
next
hoelzl@29742
  2461
  case (Max a b)
hoelzl@29742
  2462
  from lift_bin'[OF Max.prems[unfolded approx.simps], unfolded fst_conv snd_conv] Max.hyps
hoelzl@29742
  2463
  obtain l1 u1 l2 u2 where l': "l = max l1 l2" and u': "u = max u1 u2"
hoelzl@41126
  2464
    and l1: "l1 \<le> interpret_floatarith a xs" and u1: "interpret_floatarith a xs \<le> u1"
hoelzl@41126
  2465
    and l1: "l2 \<le> interpret_floatarith b xs" and u1: "interpret_floatarith b xs \<le> u2" by blast
hoelzl@31098
  2466
  thus ?case unfolding l' u' by (auto simp add: real_of_float_max)
hoelzl@29742
  2467
next case (Cos a) with lift_un'_bnds[OF bnds_cos] show ?case by auto
hoelzl@29742
  2468
next case (Arctan a) with lift_un'_bnds[OF bnds_arctan] show ?case by auto
hoelzl@29742
  2469
next case Pi with pi_boundaries show ?case by auto
hoelzl@31467
  2470
next case (Sqrt a) with lift_un'_bnds[OF bnds_sqrt] show ?case by auto
hoelzl@29742
  2471
next case (Exp a) with lift_un'_bnds[OF bnds_exp] show ?case by auto
hoelzl@29742
  2472
next case (Ln a) with lift_un_bnds[OF bnds_ln] show ?case by auto
hoelzl@29742
  2473
next case (Power a n) with lift_un'_bnds[OF bnds_power] show ?case by auto
hoelzl@29742
  2474
next case (Num f) thus ?case by auto
hoelzl@29742
  2475
next
hoelzl@32919
  2476
  case (Var n)
hoelzl@31811
  2477
  from this[symmetric] `bounded_by xs vs`[THEN bounded_byE, of n]
hoelzl@31811
  2478
  show ?case by (cases "n < length vs", auto)
hoelzl@31811
  2479
qed
hoelzl@31811
  2480
hoelzl@31811
  2481
datatype form = Bound floatarith floatarith floatarith form
hoelzl@31811
  2482
              | Assign floatarith floatarith form
hoelzl@31811
  2483
              | Less floatarith floatarith
hoelzl@31811
  2484
              | LessEqual floatarith floatarith
hoelzl@31811
  2485
              | AtLeastAtMost floatarith floatarith floatarith
hoelzl@31811
  2486
hoelzl@31811
  2487
fun interpret_form :: "form \<Rightarrow> real list \<Rightarrow> bool" where
hoelzl@31811
  2488
"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)" |
hoelzl@31811
  2489
"interpret_form (Assign x a f) vs  = (interpret_floatarith x vs = interpret_floatarith a vs \<longrightarrow> interpret_form f vs)" |
hoelzl@31811
  2490
"interpret_form (Less a b) vs      = (interpret_floatarith a vs < interpret_floatarith b vs)" |
hoelzl@31811
  2491
"interpret_form (LessEqual a b) vs = (interpret_floatarith a vs \<le> interpret_floatarith b vs)" |
hoelzl@31811
  2492
"interpret_form (AtLeastAtMost x a b) vs = (interpret_floatarith x vs \<in> { interpret_floatarith a vs .. interpret_floatarith b vs })"
hoelzl@31811
  2493
hoelzl@31811
  2494
fun approx_form' and approx_form :: "nat \<Rightarrow> form \<Rightarrow> (float * float) option list \<Rightarrow> nat list \<Rightarrow> bool" where
hoelzl@31811
  2495
"approx_form' prec f 0 n l u bs ss = approx_form prec f (bs[n := Some (l, u)]) ss" |
hoelzl@31811
  2496
"approx_form' prec f (Suc s) n l u bs ss =
hoelzl@31811
  2497
  (let m = (l + u) * Float 1 -1
hoelzl@32919
  2498
   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))" |
hoelzl@32919
  2499
"approx_form prec (Bound (Var n) a b f) bs ss =
hoelzl@31811
  2500
   (case (approx prec a bs, approx prec b bs)
hoelzl@31811
  2501
   of (Some (l, _), Some (_, u)) \<Rightarrow> approx_form' prec f (ss ! n) n l u bs ss
hoelzl@31811
  2502
    | _ \<Rightarrow> False)" |
hoelzl@32919
  2503
"approx_form prec (Assign (Var n) a f) bs ss =
hoelzl@31811
  2504
   (case (approx prec a bs)
hoelzl@31811
  2505
   of (Some (l, u)) \<Rightarrow> approx_form' prec f (ss ! n) n l u bs ss
hoelzl@31811
  2506
    | _ \<Rightarrow> False)" |
hoelzl@31811
  2507
"approx_form prec (Less a b) bs ss =
hoelzl@31811
  2508
   (case (approx prec a bs, approx prec b bs)
hoelzl@31811
  2509
   of (Some (l, u), Some (l', u')) \<Rightarrow> u < l'
hoelzl@31811
  2510
    | _ \<Rightarrow> False)" |
hoelzl@31811
  2511
"approx_form prec (LessEqual a b) bs ss =
hoelzl@31811
  2512
   (case (approx prec a bs, approx prec b bs)
hoelzl@31811
  2513
   of (Some (l, u), Some (l', u')) \<Rightarrow> u \<le> l'
hoelzl@31811
  2514
    | _ \<Rightarrow> False)" |
hoelzl@31811
  2515
"approx_form prec (AtLeastAtMost x a b) bs ss =
hoelzl@31811
  2516
   (case (approx prec x bs, approx prec a bs, approx prec b bs)
hoelzl@31811
  2517
   of (Some (lx, ux), Some (l, u), Some (l', u')) \<Rightarrow> u \<le> lx \<and> ux \<le> l'
hoelzl@31811
  2518
    | _ \<Rightarrow> False)" |
hoelzl@31811
  2519
"approx_form _ _ _ _ = False"
hoelzl@31811
  2520
hoelzl@32919
  2521
lemma lazy_conj: "(if A then B else False) = (A \<and> B)" by simp
hoelzl@32919
  2522
hoelzl@31811
  2523
lemma approx_form_approx_form':
hoelzl@41126
  2524
  assumes "approx_form' prec f s n l u bs ss" and "(x::real) \<in> { l .. u }"
hoelzl@41126
  2525
  obtains l' u' where "x \<in> { l' .. u' }"
hoelzl@31811
  2526
  and "approx_form prec f (bs[n := Some (l', u')]) ss"
hoelzl@31811
  2527
using assms proof (induct s arbitrary: l u)
hoelzl@31811
  2528
  case 0
hoelzl@31811
  2529
  from this(1)[of l u] this(2,3)
hoelzl@31811
  2530
  show thesis by auto
hoelzl@31811
  2531
next
hoelzl@31811
  2532
  case (Suc s)
hoelzl@31811
  2533
hoelzl@31811
  2534
  let ?m = "(l + u) * Float 1 -1"
hoelzl@41126
  2535
  have "real l \<le> ?m" and "?m \<le> real u"
hoelzl@31811
  2536
    unfolding le_float_def using Suc.prems by auto
hoelzl@31811
  2537
hoelzl@41126
  2538
  with `x \<in> { l .. u }`
hoelzl@41126
  2539
  have "x \<in> { l .. ?m} \<or> x \<in> { ?m .. u }" by auto
hoelzl@31811
  2540
  thus thesis
hoelzl@31811
  2541
  proof (rule disjE)
hoelzl@41126
  2542
    assume *: "x \<in> { l .. ?m }"
hoelzl@31811
  2543
    with Suc.hyps[OF _ _ *] Suc.prems
hoelzl@32919
  2544
    show thesis by (simp add: Let_def lazy_conj)
hoelzl@29742
  2545
  next
hoelzl@41126
  2546
    assume *: "x \<in> { ?m .. u }"
hoelzl@31811
  2547
    with Suc.hyps[OF _ _ *] Suc.prems
hoelzl@32919
  2548
    show thesis by (simp add: Let_def lazy_conj)
hoelzl@29742
  2549
  qed
hoelzl@29742
  2550
qed
hoelzl@29742
  2551
hoelzl@31811
  2552
lemma approx_form_aux:
hoelzl@31811
  2553
  assumes "approx_form prec f vs ss"
hoelzl@31811
  2554
  and "bounded_by xs vs"
hoelzl@31811
  2555
  shows "interpret_form f xs"
hoelzl@31811
  2556
using assms proof (induct f arbitrary: vs)
hoelzl@31811
  2557
  case (Bound x a b f)
hoelzl@31811
  2558
  then obtain n
hoelzl@32919
  2559
    where x_eq: "x = Var n" by (cases x) auto
hoelzl@31811
  2560
hoelzl@31811
  2561
  with Bound.prems obtain l u' l' u
hoelzl@31811
  2562
    where l_eq: "Some (l, u') = approx prec a vs"
hoelzl@31811
  2563
    and u_eq: "Some (l', u) = approx prec b vs"
hoelzl@31811
  2564
    and approx_form': "approx_form' prec f (ss ! n) n l u vs ss"
haftmann@37386
  2565
    by (cases "approx prec a vs", simp) (cases "approx prec b vs", auto)
hoelzl@41126
  2566
hoelzl@31811
  2567
  { assume "xs ! n \<in> { interpret_floatarith a xs .. interpret_floatarith b xs }"
hoelzl@31811
  2568
    with approx[OF Bound.prems(2) l_eq] and approx[OF Bound.prems(2) u_eq]
hoelzl@41126
  2569
    have "xs ! n \<in> { l .. u}" by auto
hoelzl@31811
  2570
hoelzl@31811
  2571
    from approx_form_approx_form'[OF approx_form' this]
hoelzl@41126
  2572
    obtain lx ux where bnds: "xs ! n \<in> { lx .. ux }"
hoelzl@31811
  2573
      and approx_form: "approx_form prec f (vs[n := Some (lx, ux)]) ss" .
hoelzl@31811
  2574
hoelzl@31811
  2575
    from `bounded_by xs vs` bnds
hoelzl@31811
  2576
    have "bounded_by xs (vs[n := Some (lx, ux)])" by (rule bounded_by_update)
hoelzl@31811
  2577
    with Bound.hyps[OF approx_form]
hoelzl@31811
  2578
    have "interpret_form f xs" by blast }
hoelzl@31811
  2579
  thus ?case using interpret_form.simps x_eq and interpret_floatarith.simps by simp
hoelzl@31811
  2580
next
hoelzl@31811
  2581
  case (Assign x a f)
hoelzl@31811
  2582
  then obtain n
hoelzl@32919
  2583
    where x_eq: "x = Var n" by (cases x) auto
hoelzl@31811
  2584
hoelzl@31811
  2585
  with Assign.prems obtain l u' l' u
hoelzl@31811
  2586
    where bnd_eq: "Some (l, u) = approx prec a vs"
hoelzl@32919
  2587
    and x_eq: "x = Var n"
hoelzl@31811
  2588
    and approx_form': "approx_form' prec f (ss ! n) n l u vs ss"
hoelzl@31811
  2589
    by (cases "approx prec a vs") auto
hoelzl@31811
  2590
hoelzl@31811
  2591
  { assume bnds: "xs ! n = interpret_floatarith a xs"
hoelzl@31811
  2592
    with approx[OF Assign.prems(2) bnd_eq]
hoelzl@41126
  2593
    have "xs ! n \<in> { l .. u}" by auto
hoelzl@31811
  2594
    from approx_form_approx_form'[OF approx_form' this]
hoelzl@41126
  2595
    obtain lx ux where bnds: "xs ! n \<in> { lx .. ux }"
hoelzl@31811
  2596
      and approx_form: "approx_form prec f (vs[n := Some (lx, ux)]) ss" .
hoelzl@31811
  2597
hoelzl@31811
  2598
    from `bounded_by xs vs` bnds
hoelzl@31811
  2599
    have "bounded_by xs (vs[n := Some (lx, ux)])" by (rule bounded_by_update)
hoelzl@31811
  2600
    with Assign.hyps[OF approx_form]
hoelzl@31811
  2601
    have "interpret_form f xs" by blast }
hoelzl@31811
  2602
  thus ?case using interpret_form.simps x_eq and interpret_floatarith.simps by simp
hoelzl@31811
  2603
next
hoelzl@29742
  2604
  case (Less a b)
hoelzl@31811
  2605
  then obtain l u l' u'
hoelzl@31811
  2606
    where l_eq: "Some (l, u) = approx prec a vs"
hoelzl@31811
  2607
    and u_eq: "Some (l', u') = approx prec b vs"
hoelzl@31811
  2608
    and inequality: "u < l'"
hoelzl@31811
  2609
    by (cases "approx prec a vs", auto,
hoelzl@31811
  2610
      cases "approx prec b vs", auto)
hoelzl@31811
  2611
  from inequality[unfolded less_float_def] approx[OF Less.prems(2) l_eq] approx[OF Less.prems(2) u_eq]
hoelzl@31811
  2612
  show ?case by auto
hoelzl@29742
  2613
next
hoelzl@29742
  2614
  case (LessEqual a b)
hoelzl@31811
  2615
  then obtain l u l' u'
hoelzl@31811
  2616
    where l_eq: "Some (l, u) = approx prec a vs"
hoelzl@31811
  2617
    and u_eq: "Some (l', u') = approx prec b vs"
hoelzl@31811
  2618
    and inequality: "u \<le> l'"
hoelzl@31811
  2619
    by (cases "approx prec a vs", auto,
hoelzl@31811
  2620
      cases "approx prec b vs", auto)
hoelzl@31811
  2621
  from inequality[unfolded le_float_def] approx[OF LessEqual.prems(2) l_eq] approx[OF LessEqual.prems(2) u_eq]
hoelzl@31811
  2622
  show ?case by auto
hoelzl@31811
  2623
next
hoelzl@31811
  2624
  case (AtLeastAtMost x a b)
hoelzl@31811
  2625
  then obtain lx ux l u l' u'
hoelzl@31811
  2626
    where x_eq: "Some (lx, ux) = approx prec x vs"
hoelzl@31811
  2627
    and l_eq: "Some (l, u) = approx prec a vs"
hoelzl@31811
  2628
    and u_eq: "Some (l', u') = approx prec b vs"
hoelzl@31811
  2629
    and inequality: "u \<le> lx \<and> ux \<le> l'"
hoelzl@31811
  2630
    by (cases "approx prec x vs", auto,
hoelzl@31811
  2631
      cases "approx prec a vs", auto,
hoelzl@31811
  2632
      cases "approx prec b vs", auto, blast)
hoelzl@31811
  2633
  from inequality[unfolded le_float_def] approx[OF AtLeastAtMost.prems(2) l_eq] approx[OF AtLeastAtMost.prems(2) u_eq] approx[OF AtLeastAtMost.prems(2) x_eq]
hoelzl@31811
  2634
  show ?case by auto
hoelzl@29742
  2635
qed
hoelzl@29742
  2636
hoelzl@31811
  2637
lemma approx_form:
hoelzl@31811
  2638
  assumes "n = length xs"
hoelzl@31811
  2639
  assumes "approx_form prec f (replicate n None) ss"
hoelzl@31811
  2640
  shows "interpret_form f xs"
hoelzl@31811
  2641
  using approx_form_aux[OF _ bounded_by_None] assms by auto
hoelzl@29742
  2642
hoelzl@31862
  2643
subsection {* Implementing Taylor series expansion *}
hoelzl@31862
  2644
hoelzl@31862
  2645
fun isDERIV :: "nat \<Rightarrow> floatarith \<Rightarrow> real list \<Rightarrow> bool" where
hoelzl@31862
  2646
"isDERIV x (Add a b) vs         = (isDERIV x a vs \<and> isDERIV x b vs)" |
hoelzl@31862
  2647
"isDERIV x (Mult a b) vs        = (isDERIV x a vs \<and> isDERIV x b vs)" |
hoelzl@31862
  2648
"isDERIV x (Minus a) vs         = isDERIV x a vs" |
hoelzl@31862
  2649
"isDERIV x (Inverse a) vs       = (isDERIV x a vs \<and> interpret_floatarith a vs \<noteq> 0)" |
hoelzl@31862
  2650
"isDERIV x (Cos a) vs           = isDERIV x a vs" |
hoelzl@31862
  2651
"isDERIV x (Arctan a) vs        = isDERIV x a vs" |
hoelzl@31862
  2652
"isDERIV x (Min a b) vs         = False" |
hoelzl@31862
  2653
"isDERIV x (Max a b) vs         = False" |
hoelzl@31862
  2654
"isDERIV x (Abs a) vs           = False" |
hoelzl@31862
  2655
"isDERIV x Pi vs                = True" |
hoelzl@31862
  2656
"isDERIV x (Sqrt a) vs          = (isDERIV x a vs \<and> interpret_floatarith a vs > 0)" |
hoelzl@31862
  2657
"isDERIV x (Exp a) vs           = isDERIV x a vs" |
hoelzl@31862
  2658
"isDERIV x (Ln a) vs            = (isDERIV x a vs \<and> interpret_floatarith a vs > 0)" |
hoelzl@31862
  2659
"isDERIV x (Power a 0) vs       = True" |
hoelzl@31862
  2660
"isDERIV x (Power a (Suc n)) vs = isDERIV x a vs" |
hoelzl@31862
  2661
"isDERIV x (Num f) vs           = True" |
hoelzl@32919
  2662
"isDERIV x (Var n) vs          = True"
hoelzl@31862
  2663
hoelzl@31862
  2664
fun DERIV_floatarith :: "nat \<Rightarrow> floatarith \<Rightarrow> floatarith" where
hoelzl@31862
  2665
"DERIV_floatarith x (Add a b)         = Add (DERIV_floatarith x a) (DERIV_floatarith x b)" |
hoelzl@31862
  2666
"DERIV_floatarith x (Mult a b)        = Add (Mult a (DERIV_floatarith x b)) (Mult (DERIV_floatarith x a) b)" |
hoelzl@31862
  2667
"DERIV_floatarith x (Minus a)         = Minus (DERIV_floatarith x a)" |
hoelzl@31862
  2668
"DERIV_floatarith x (Inverse a)       = Minus (Mult (DERIV_floatarith x a) (Inverse (Power a 2)))" |
hoelzl@31862
  2669
"DERIV_floatarith x (Cos a)           = Minus (Mult (Cos (Add (Mult Pi (Num (Float 1 -1))) (Minus a))) (DERIV_floatarith x a))" |
hoelzl@31862
  2670
"DERIV_floatarith x (Arctan a)        = Mult (Inverse (Add (Num 1) (Power a 2))) (DERIV_floatarith x a)" |
hoelzl@31862
  2671
"DERIV_floatarith x (Min a b)         = Num 0" |
hoelzl@31862
  2672
"DERIV_floatarith x (Max a b)         = Num 0" |
hoelzl@31862
  2673
"DERIV_floatarith x (Abs a)           = Num 0" |
hoelzl@31862
  2674
"DERIV_floatarith x Pi                = Num 0" |
hoelzl@31862
  2675
"DERIV_floatarith x (Sqrt a)          = (Mult (Inverse (Mult (Sqrt a) (Num 2))) (DERIV_floatarith x a))" |
hoelzl@31862
  2676
"DERIV_floatarith x (Exp a)           = Mult (Exp a) (DERIV_floatarith x a)" |
hoelzl@31862
  2677
"DERIV_floatarith x (Ln a)            = Mult (Inverse a) (DERIV_floatarith x a)" |
hoelzl@31862
  2678
"DERIV_floatarith x (Power a 0)       = Num 0" |
hoelzl@31862
  2679
"DERIV_floatarith x (Power a (Suc n)) = Mult (Num (Float (int (Suc n)) 0)) (Mult (Power a n) (DERIV_floatarith x a))" |
hoelzl@31862
  2680
"DERIV_floatarith x (Num f)           = Num 0" |
hoelzl@32919
  2681
"DERIV_floatarith x (Var n)          = (if x = n then Num 1 else Num 0)"
hoelzl@31862
  2682
hoelzl@31862
  2683
lemma DERIV_floatarith:
hoelzl@31862
  2684
  assumes "n < length vs"
hoelzl@31862
  2685
  assumes isDERIV: "isDERIV n f (vs[n := x])"
hoelzl@31862
  2686
  shows "DERIV (\<lambda> x'. interpret_floatarith f (vs[n := x'])) x :>
hoelzl@31862
  2687
               interpret_floatarith (DERIV_floatarith n f) (vs[n := x])"
hoelzl@31862
  2688
   (is "DERIV (?i f) x :> _")
hoelzl@31862
  2689
using isDERIV proof (induct f arbitrary: x)
hoelzl@31880
  2690
     case (Inverse a) thus ?case
hoelzl@31880
  2691
    by (auto intro!: DERIV_intros
hoelzl@31862
  2692
             simp add: algebra_simps power2_eq_square)
hoelzl@31862
  2693
next case (Cos a) thus ?case
hoelzl@31880
  2694
  by (auto intro!: DERIV_intros
hoelzl@31862
  2695
           simp del: interpret_floatarith.simps(5)
hoelzl@31862
  2696
           simp add: interpret_floatarith_sin interpret_floatarith.simps(5)[of a])
hoelzl@31862
  2697
next case (Power a n) thus ?case
hoelzl@31880
  2698
  by (cases n, auto intro!: DERIV_intros
hoelzl@31862
  2699
                    simp del: power_Suc simp add: real_eq_of_nat)
hoelzl@31862
  2700
next case (Ln a) thus ?case
hoelzl@31880
  2701
    by (auto intro!: DERIV_intros simp add: divide_inverse)
hoelzl@32919
  2702
next case (Var i) thus ?case using `n < length vs` by auto
hoelzl@31880
  2703
qed (auto intro!: DERIV_intros)
hoelzl@31862
  2704
hoelzl@31862
  2705
declare approx.simps[simp del]
hoelzl@31862
  2706
hoelzl@31862
  2707
fun isDERIV_approx :: "nat \<Rightarrow> nat \<Rightarrow> floatarith \<Rightarrow> (float * float) option list \<Rightarrow> bool" where
hoelzl@31862
  2708
"isDERIV_approx prec x (Add a b) vs         = (isDERIV_approx prec x a vs \<and> isDERIV_approx prec x b vs)" |
hoelzl@31862
  2709
"isDERIV_approx prec x (Mult a b) vs        = (isDERIV_approx prec x a vs \<and> isDERIV_approx prec x b vs)" |
hoelzl@31862
  2710
"isDERIV_approx prec x (Minus a) vs         = isDERIV_approx prec x a vs" |
hoelzl@31862
  2711
"isDERIV_approx prec x (Inverse a) vs       =
hoelzl@31862
  2712
  (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))" |
hoelzl@31862
  2713
"isDERIV_approx prec x (Cos a) vs           = isDERIV_approx prec x a vs" |
hoelzl@31862
  2714
"isDERIV_approx prec x (Arctan a) vs        = isDERIV_approx prec x a vs" |
hoelzl@31862
  2715
"isDERIV_approx prec x (Min a b) vs         = False" |
hoelzl@31862
  2716
"isDERIV_approx prec x (Max a b) vs         = False" |
hoelzl@31862
  2717
"isDERIV_approx prec x (Abs a) vs           = False" |
hoelzl@31862
  2718
"isDERIV_approx prec x Pi vs                = True" |
hoelzl@31862
  2719
"isDERIV_approx prec x (Sqrt a) vs          =
hoelzl@31862
  2720
  (isDERIV_approx prec x a vs \<and> (case approx prec a vs of Some (l, u) \<Rightarrow> 0 < l | None \<Rightarrow> False))" |
hoelzl@31862
  2721
"isDERIV_approx prec x (Exp a) vs           = isDERIV_approx prec x a vs" |
hoelzl@31862
  2722
"isDERIV_approx prec x (Ln a) vs            =
hoelzl@31862
  2723
  (isDERIV_approx prec x a vs \<and> (case approx prec a vs of Some (l, u) \<Rightarrow> 0 < l | None \<Rightarrow> False))" |
hoelzl@31862
  2724
"isDERIV_approx prec x (Power a 0) vs       = True" |
hoelzl@31862
  2725
"isDERIV_approx prec x (Power a (Suc n)) vs = isDERIV_approx prec x a vs" |
hoelzl@31862
  2726
"isDERIV_approx prec x (Num f) vs           = True" |
hoelzl@32919
  2727
"isDERIV_approx prec x (Var n) vs          = True"
hoelzl@31862
  2728
hoelzl@31862
  2729
lemma isDERIV_approx:
hoelzl@31862
  2730
  assumes "bounded_by xs vs"
hoelzl@31862
  2731
  and isDERIV_approx: "isDERIV_approx prec x f vs"
hoelzl@31862
  2732
  shows "isDERIV x f xs"
hoelzl@31862
  2733
using isDERIV_approx proof (induct f)
hoelzl@31862
  2734
  case (Inverse a)
hoelzl@31862
  2735
  then obtain l u where approx_Some: "Some (l, u) = approx prec a vs"
hoelzl@31862
  2736
    and *: "0 < l \<or> u < 0"
hoelzl@31862
  2737
    by (cases "approx prec a vs", auto)
hoelzl@31862
  2738
  with approx[OF `bounded_by xs vs` approx_Some]
hoelzl@31862
  2739
  have "interpret_floatarith a xs \<noteq> 0" unfolding less_float_def by auto
hoelzl@31862
  2740
  thus ?case using Inverse by auto
hoelzl@31862
  2741
next
hoelzl@31862
  2742
  case (Ln a)
hoelzl@31862
  2743
  then obtain l u where approx_Some: "Some (l, u) = approx prec a vs"
hoelzl@31862
  2744
    and *: "0 < l"
hoelzl@31862
  2745
    by (cases "approx prec a vs", auto)
hoelzl@31862
  2746
  with approx[OF `bounded_by xs vs` approx_Some]
hoelzl@31862
  2747
  have "0 < interpret_floatarith a xs" unfolding less_float_def by auto
hoelzl@31862
  2748
  thus ?case using Ln by auto
hoelzl@31862
  2749
next
hoelzl@31862
  2750
  case (Sqrt a)
hoelzl@31862
  2751
  then obtain l u where approx_Some: "Some (l, u) = approx prec a vs"
hoelzl@31862
  2752
    and *: "0 < l"
hoelzl@31862
  2753
    by (cases "approx prec a vs", auto)
hoelzl@31862
  2754
  with approx[OF `bounded_by xs vs` approx_Some]
hoelzl@31862
  2755
  have "0 < interpret_floatarith a xs" unfolding less_float_def by auto
hoelzl@31862
  2756
  thus ?case using Sqrt by auto
hoelzl@31862
  2757
next
hoelzl@31862
  2758
  case (Power a n) thus ?case by (cases n, auto)
hoelzl@31862
  2759
qed auto
hoelzl@31862
  2760
hoelzl@31862
  2761
lemma bounded_by_update_var:
hoelzl@31862
  2762
  assumes "bounded_by xs vs" and "vs ! i = Some (l, u)"
hoelzl@31862
  2763
  and bnd: "x \<in> { real l .. real u }"
hoelzl@31862
  2764
  shows "bounded_by (xs[i := x]) vs"
hoelzl@31862
  2765
proof (cases "i < length xs")
hoelzl@31862
  2766
  case False thus ?thesis using `bounded_by xs vs` by auto
hoelzl@31862
  2767
next
hoelzl@31862
  2768
  let ?xs = "xs[i := x]"
hoelzl@31862
  2769
  case True hence "i < length ?xs" by auto
hoelzl@31862
  2770
{ fix j
hoelzl@31862
  2771
  assume "j < length vs"
hoelzl@31862
  2772
  have "case vs ! j of None \<Rightarrow> True | Some (l, u) \<Rightarrow> ?xs ! j \<in> { real l .. real u }"
hoelzl@31862
  2773
  proof (cases "vs ! j")
hoelzl@31862
  2774
    case (Some b)
hoelzl@31862
  2775
    thus ?thesis
hoelzl@31862
  2776
    proof (cases "i = j")
hoelzl@31862
  2777
      case True
hoelzl@31862
  2778
      thus ?thesis using `vs ! i = Some (l, u)` Some and bnd `i < length ?xs`
wenzelm@32962
  2779
        by auto
hoelzl@31862
  2780
    next
hoelzl@31862
  2781
      case False
hoelzl@31862
  2782
      thus ?thesis using `bounded_by xs vs`[THEN bounded_byE, OF `j < length vs`] Some
wenzelm@32962
  2783
        by auto
hoelzl@31862
  2784
    qed
hoelzl@31862
  2785
  qed auto }
hoelzl@31862
  2786
  thus ?thesis unfolding bounded_by_def by auto
hoelzl@31862
  2787
qed
hoelzl@31862
  2788
hoelzl@31862
  2789
lemma isDERIV_approx':
hoelzl@31862
  2790
  assumes "bounded_by xs vs"
hoelzl@31862
  2791
  and vs_x: "vs ! x = Some (l, u)" and X_in: "X \<in> { real l .. real u }"
hoelzl@31862
  2792
  and approx: "isDERIV_approx prec x f vs"
hoelzl@31862
  2793
  shows "isDERIV x f (xs[x := X])"
hoelzl@31862
  2794
proof -
hoelzl@31862
  2795
  note bounded_by_update_var[OF `bounded_by xs vs` vs_x X_in] approx
hoelzl@31862
  2796
  thus ?thesis by (rule isDERIV_approx)
hoelzl@31862
  2797
qed
hoelzl@31862
  2798
hoelzl@31862
  2799
lemma DERIV_approx:
hoelzl@31862
  2800
  assumes "n < length xs" and bnd: "bounded_by xs vs"
hoelzl@31862
  2801
  and isD: "isDERIV_approx prec n f vs"
hoelzl@31862
  2802
  and app: "Some (l, u) = approx prec (DERIV_floatarith n f) vs" (is "_ = approx _ ?D _")
hoelzl@41126
  2803
  shows "\<exists>(x::real). l \<le> x \<and> x \<le> u \<and>
hoelzl@31862
  2804
             DERIV (\<lambda> x. interpret_floatarith f (xs[n := x])) (xs!n) :> x"
hoelzl@31862
  2805
         (is "\<exists> x. _ \<and> _ \<and> DERIV (?i f) _ :> _")
hoelzl@31862
  2806
proof (rule exI[of _ "?i ?D (xs!n)"], rule conjI[OF _ conjI])
hoelzl@31862
  2807
  let "?i f x" = "interpret_floatarith f (xs[n := x])"
hoelzl@31862
  2808
  from approx[OF bnd app]
hoelzl@41126
  2809
  show "l \<le> ?i ?D (xs!n)" and "?i ?D (xs!n) \<le> u"
hoelzl@31862
  2810
    using `n < length xs` by auto
hoelzl@31862
  2811
  from DERIV_floatarith[OF `n < length xs`, of f "xs!n"] isDERIV_approx[OF bnd isD]
hoelzl@31862
  2812
  show "DERIV (?i f) (xs!n) :> (?i ?D (xs!n))" by simp
hoelzl@31862
  2813
qed
hoelzl@31862
  2814
hoelzl@31862
  2815
fun lift_bin :: "(float * float) option \<Rightarrow> (float * float) option \<Rightarrow> (float \<Rightarrow> float \<Rightarrow> float \<Rightarrow> float \<Rightarrow> (float * float) option) \<Rightarrow> (float * float) option" where
hoelzl@31862
  2816
"lift_bin (Some (l1, u1)) (Some (l2, u2)) f = f l1 u1 l2 u2" |
hoelzl@31862
  2817
"lift_bin a b f = None"
hoelzl@31862
  2818
hoelzl@31862
  2819
lemma lift_bin:
hoelzl@31862
  2820
  assumes lift_bin_Some: "Some (l, u) = lift_bin a b f"
hoelzl@31862
  2821
  obtains l1 u1 l2 u2
hoelzl@31862
  2822
  where "a = Some (l1, u1)"
hoelzl@31862
  2823
  and "b = Some (l2, u2)"
hoelzl@31862
  2824
  and "f l1 u1 l2 u2 = Some (l, u)"
hoelzl@31862
  2825
using assms by (cases a, simp, cases b, simp, auto)
hoelzl@31862
  2826
hoelzl@31862
  2827
fun approx_tse where
hoelzl@31862
  2828
"approx_tse prec n 0 c k f bs = approx prec f bs" |
hoelzl@31862
  2829
"approx_tse prec n (Suc s) c k f bs =
hoelzl@31862
  2830
  (if isDERIV_approx prec n f bs then
hoelzl@31862
  2831
    lift_bin (approx prec f (bs[n := Some (c,c)]))
hoelzl@31862
  2832
             (approx_tse prec n s c (Suc k) (DERIV_floatarith n f) bs)
hoelzl@31862
  2833
             (\<lambda> l1 u1 l2 u2. approx prec
hoelzl@32919
  2834
                 (Add (Var 0)
hoelzl@31862
  2835
                      (Mult (Inverse (Num (Float (int k) 0)))
hoelzl@32919
  2836
                                 (Mult (Add (Var (Suc (Suc 0))) (Minus (Num c)))
hoelzl@32919
  2837
                                       (Var (Suc 0))))) [Some (l1, u1), Some (l2, u2), bs!n])
hoelzl@31862
  2838
  else approx prec f bs)"
hoelzl@31862
  2839
hoelzl@31862
  2840
lemma bounded_by_Cons:
hoelzl@31862
  2841
  assumes bnd: "bounded_by xs vs"
hoelzl@31862
  2842
  and x: "x \<in> { real l .. real u }"
hoelzl@31862
  2843
  shows "bounded_by (x#xs) ((Some (l, u))#vs)"
hoelzl@31862
  2844
proof -
hoelzl@31862
  2845
  { fix i assume *: "i < length ((Some (l, u))#vs)"
hoelzl@31862
  2846
    have "case ((Some (l,u))#vs) ! i of Some (l, u) \<Rightarrow> (x#xs)!i \<in> { real l .. real u } | None \<Rightarrow> True"
hoelzl@31862
  2847
    proof (cases i)
hoelzl@31862
  2848
      case 0 with x show ?thesis by auto
hoelzl@31862
  2849
    next
hoelzl@31862
  2850
      case (Suc i) with * have "i < length vs" by auto
hoelzl@31862
  2851
      from bnd[THEN bounded_byE, OF this]
hoelzl@31862
  2852
      show ?thesis unfolding Suc nth_Cons_Suc .
hoelzl@31862
  2853
    qed }
hoelzl@31862
  2854
  thus ?thesis by (auto simp add: bounded_by_def)
hoelzl@31862
  2855
qed
hoelzl@31862
  2856
hoelzl@31862
  2857
lemma approx_tse_generic:
hoelzl@31862
  2858
  assumes "bounded_by xs vs"
hoelzl@41126
  2859
  and bnd_c: "bounded_by (xs[x := c]) vs" and "x < length vs" and "x < length xs"
hoelzl@31862
  2860
  and bnd_x: "vs ! x = Some (lx, ux)"
hoelzl@31862
  2861
  and ate: "Some (l, u) = approx_tse prec x s c k f vs"
hoelzl@41126
  2862
  shows "\<exists> n. (\<forall> m < n. \<forall> (z::real) \<in> {lx .. ux}.
hoelzl@31862
  2863
      DERIV (\<lambda> y. interpret_floatarith ((DERIV_floatarith x ^^ m) f) (xs[x := y])) z :>
hoelzl@31862
  2864
            (interpret_floatarith ((DERIV_floatarith x ^^ (Suc m)) f) (xs[x := z])))
hoelzl@41126
  2865
   \<and> (\<forall> (t::real) \<in> {lx .. ux}.  (\<Sum> i = 0..<n. inverse (real (\<Prod> j \<in> {k..<k+i}. j)) *
hoelzl@41126
  2866
                  interpret_floatarith ((DERIV_floatarith x ^^ i) f) (xs[x := c]) *
hoelzl@41126
  2867
                  (xs!x - c)^i) +
hoelzl@31862
  2868
      inverse (real (\<Prod> j \<in> {k..<k+n}. j)) *
hoelzl@31862
  2869
      interpret_floatarith ((DERIV_floatarith x ^^ n) f) (xs[x := t]) *
hoelzl@41126
  2870
      (xs!x - c)^n \<in> {l .. u})" (is "\<exists> n. ?taylor f k l u n")
hoelzl@31862
  2871
using ate proof (induct s arbitrary: k f l u)
hoelzl@31862
  2872
  case 0
hoelzl@41126
  2873
  { fix t::real assume "t \<in> {lx .. ux}"
hoelzl@31862
  2874
    note bounded_by_update_var[OF `bounded_by xs vs` bnd_x this]
hoelzl@31862
  2875
    from approx[OF this 0[unfolded approx_tse.simps]]
hoelzl@41126
  2876
    have "(interpret_floatarith f (xs[x := t])) \<in> {l .. u}"
hoelzl@31862
  2877
      by (auto simp add: algebra_simps)
hoelzl@31862
  2878
  } thus ?case by (auto intro!: exI[of _ 0])
hoelzl@31862
  2879
next
hoelzl@31862
  2880
  case (Suc s)
hoelzl@31862
  2881
  show ?case
hoelzl@31862
  2882
  proof (cases "isDERIV_approx prec x f vs")
hoelzl@31862
  2883
    case False
hoelzl@31862
  2884
    note ap = Suc.prems[unfolded approx_tse.simps if_not_P[OF False]]
hoelzl@31862
  2885
hoelzl@41126
  2886
    { fix t::real assume "t \<in> {lx .. ux}"
hoelzl@31862
  2887
      note bounded_by_update_var[OF `bounded_by xs vs` bnd_x this]
hoelzl@31862
  2888
      from approx[OF this ap]
hoelzl@41126
  2889
      have "(interpret_floatarith f (xs[x := t])) \<in> {l .. u}"
wenzelm@32962
  2890
        by (auto simp add: algebra_simps)
hoelzl@31862
  2891
    } thus ?thesis by (auto intro!: exI[of _ 0])
hoelzl@31862
  2892
  next
hoelzl@31862
  2893
    case True
hoelzl@31862
  2894
    with Suc.prems
hoelzl@31862
  2895
    obtain l1 u1 l2 u2
hoelzl@31862
  2896
      where a: "Some (l1, u1) = approx prec f (vs[x := Some (c,c)])"
hoelzl@31862
  2897
      and ate: "Some (l2, u2) = approx_tse prec x s c (Suc k) (DERIV_floatarith x f) vs"
hoelzl@31862
  2898
      and final: "Some (l, u) = approx prec
hoelzl@32919
  2899
        (Add (Var 0)
hoelzl@31862
  2900
             (Mult (Inverse (Num (Float (int k) 0)))
hoelzl@32919
  2901
                   (Mult (Add (Var (Suc (Suc 0))) (Minus (Num c)))
hoelzl@32919
  2902
                         (Var (Suc 0))))) [Some (l1, u1), Some (l2, u2), vs!x]"
hoelzl@31862
  2903
      by (auto elim!: lift_bin) blast
hoelzl@31862
  2904
hoelzl@31862
  2905
    from bnd_c `x < length xs`
hoelzl@41126
  2906
    have bnd: "bounded_by (xs[x:=c]) (vs[x:= Some (c,c)])"
hoelzl@31862
  2907
      by (auto intro!: bounded_by_update)
hoelzl@31862
  2908
hoelzl@31862
  2909
    from approx[OF this a]
hoelzl@41126
  2910
    have f_c: "interpret_floatarith ((DERIV_floatarith x ^^ 0) f) (xs[x := c]) \<in> { l1 .. u1 }"
hoelzl@31862
  2911
              (is "?f 0 (real c) \<in> _")
hoelzl@31862
  2912
      by auto
hoelzl@31862
  2913
hoelzl@31862
  2914
    { fix f :: "'a \<Rightarrow> 'a" fix n :: nat fix x :: 'a
hoelzl@31862
  2915
      have "(f ^^ Suc n) x = (f ^^ n) (f x)"
wenzelm@32962
  2916
        by (induct n, auto) }
hoelzl@31862
  2917
    note funpow_Suc = this[symmetric]
hoelzl@31862
  2918
    from Suc.hyps[OF ate, unfolded this]
hoelzl@31862
  2919
    obtain n
hoelzl@41126
  2920
      where DERIV_hyp: "\<And> m z. \<lbrakk> m < n ; (z::real) \<in> { lx .. ux } \<rbrakk> \<Longrightarrow> DERIV (?f (Suc m)) z :> ?f (Suc (Suc m)) z"
hoelzl@41126
  2921
      and hyp: "\<forall> t \<in> {real lx .. real ux}. (\<Sum> i = 0..<n. inverse (real (\<Prod> j \<in> {Suc k..<Suc k + i}. j)) * ?f (Suc i) c * (xs!x - c)^i) +
hoelzl@41126
  2922
           inverse (real (\<Prod> j \<in> {Suc k..<Suc k + n}. j)) * ?f (Suc n) t * (xs!x - c)^n \<in> {l2 .. u2}"
hoelzl@31862
  2923
          (is "\<forall> t \<in> _. ?X (Suc k) f n t \<in> _")
hoelzl@31862
  2924
      by blast
hoelzl@31862
  2925
hoelzl@41126
  2926
    { fix m and z::real
hoelzl@41126
  2927
      assume "m < Suc n" and bnd_z: "z \<in> { lx .. ux }"
hoelzl@31862
  2928
      have "DERIV (?f m) z :> ?f (Suc m) z"
hoelzl@31862
  2929
      proof (cases m)
wenzelm@32962
  2930
        case 0
wenzelm@32962
  2931
        with DERIV_floatarith[OF `x < length xs` isDERIV_approx'[OF `bounded_by xs vs` bnd_x bnd_z True]]
wenzelm@32962
  2932
        show ?thesis by simp
hoelzl@31862
  2933
      next
wenzelm@32962
  2934
        case (Suc m')
wenzelm@32962
  2935
        hence "m' < n" using `m < Suc n` by auto
wenzelm@32962
  2936
        from DERIV_hyp[OF this bnd_z]
wenzelm@32962
  2937
        show ?thesis using Suc by simp
hoelzl@31862
  2938
      qed } note DERIV = this
hoelzl@31862
  2939
hoelzl@31862
  2940
    have "\<And> k i. k < i \<Longrightarrow> {k ..< i} = insert k {Suc k ..< i}" by auto
hoelzl@31862
  2941
    hence setprod_head_Suc: "\<And> k i. \<Prod> {k ..< k + Suc i} = k * \<Prod> {Suc k ..< Suc k + i}" by auto
hoelzl@31862
  2942
    have setsum_move0: "\<And> k F. setsum F {0..<Suc k} = F 0 + setsum (\<lambda> k. F (Suc k)) {0..<k}"
hoelzl@31862
  2943
      unfolding setsum_shift_bounds_Suc_ivl[symmetric]
hoelzl@31862
  2944
      unfolding setsum_head_upt_Suc[OF zero_less_Suc] ..
hoelzl@41126
  2945
    def C \<equiv> "xs!x - c"
hoelzl@41126
  2946
hoelzl@41126
  2947
    { fix t::real assume t: "t \<in> {lx .. ux}"
hoelzl@31862
  2948
      hence "bounded_by [xs!x] [vs!x]"
wenzelm@32962
  2949
        using `bounded_by xs vs`[THEN bounded_byE, OF `x < length vs`]
wenzelm@32962
  2950
        by (cases "vs!x", auto simp add: bounded_by_def)
hoelzl@31862
  2951
hoelzl@31862
  2952
      with hyp[THEN bspec, OF t] f_c
hoelzl@41126
  2953
      have "bounded_by [?f 0 c, ?X (Suc k) f n t, xs!x] [Some (l1, u1), Some (l2, u2), vs!x]"
wenzelm@32962
  2954
        by (auto intro!: bounded_by_Cons)
hoelzl@31862
  2955
      from approx[OF this final, unfolded atLeastAtMost_iff[symmetric]]
hoelzl@41126
  2956
      have "?X (Suc k) f n t * (xs!x - real c) * inverse k + ?f 0 c \<in> {l .. u}"
wenzelm@32962
  2957
        by (auto simp add: algebra_simps)
hoelzl@41126
  2958
      also have "?X (Suc k) f n t * (xs!x - real c) * inverse (real k) + ?f 0 c =
hoelzl@41126
  2959
               (\<Sum> i = 0..<Suc n. inverse (real (\<Prod> j \<in> {k..<k+i}. j)) * ?f i c * (xs!x - c)^i) +
hoelzl@41126
  2960
               inverse (real (\<Prod> j \<in> {k..<k+Suc n}. j)) * ?f (Suc n) t * (xs!x - c)^Suc n" (is "_ = ?T")
wenzelm@32962
  2961
        unfolding funpow_Suc C_def[symmetric] setsum_move0 setprod_head_Suc
haftmann@35082
  2962
        by (auto simp add: algebra_simps)
haftmann@35082
  2963
          (simp only: mult_left_commute [of _ "inverse (real k)"] setsum_right_distrib [symmetric])
hoelzl@41126
  2964
      finally have "?T \<in> {l .. u}" . }
hoelzl@31862
  2965
    thus ?thesis using DERIV by blast
hoelzl@31862
  2966
  qed
hoelzl@31862
  2967
qed
hoelzl@31862
  2968
hoelzl@31862
  2969
lemma setprod_fact: "\<Prod> {1..<1 + k} = fact (k :: nat)"
hoelzl@31862
  2970
proof (induct k)
hoelzl@31862
  2971
  case (Suc k)
hoelzl@31862
  2972
  have "{ 1 ..< Suc (Suc k) } = insert (Suc k) { 1 ..< Suc k }" by auto
hoelzl@31862
  2973
  hence "\<Prod> { 1 ..< Suc (Suc k) } = (Suc k) * \<Prod> { 1 ..< Suc k }" by auto
hoelzl@31862
  2974
  thus ?case using Suc by auto
hoelzl@31862
  2975
qed simp
hoelzl@31862
  2976
hoelzl@31862
  2977
lemma approx_tse:
hoelzl@31862
  2978
  assumes "bounded_by xs vs"
hoelzl@41126
  2979
  and bnd_x: "vs ! x = Some (lx, ux)" and bnd_c: "real c \<in> {lx .. ux}"
hoelzl@31862
  2980
  and "x < length vs" and "x < length xs"
hoelzl@31862
  2981
  and ate: "Some (l, u) = approx_tse prec x s c 1 f vs"
hoelzl@41126
  2982
  shows "interpret_floatarith f xs \<in> { l .. u }"
hoelzl@31862
  2983
proof -
hoelzl@31862
  2984
  def F \<equiv> "\<lambda> n z. interpret_floatarith ((DERIV_floatarith x ^^ n) f) (xs[x := z])"
hoelzl@31862
  2985
  hence F0: "F 0 = (\<lambda> z. interpret_floatarith f (xs[x := z]))" by auto
hoelzl@31862
  2986
hoelzl@41126
  2987
  hence "bounded_by (xs[x := c]) vs" and "x < length vs" "x < length xs"
hoelzl@31862
  2988
    using `bounded_by xs vs` bnd_x bnd_c `x < length vs` `x < length xs`
hoelzl@31862
  2989
    by (auto intro!: bounded_by_update_var)
hoelzl@31862
  2990
hoelzl@31862
  2991
  from approx_tse_generic[OF `bounded_by xs vs` this bnd_x ate]
hoelzl@31862
  2992
  obtain n
hoelzl@31862
  2993
    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"
hoelzl@41126
  2994
    and hyp: "\<And> (t::real). t \<in> {lx .. ux} \<Longrightarrow>
hoelzl@41126
  2995
           (\<Sum> j = 0..<n. inverse (real (fact j)) * F j c * (xs!x - c)^j) +
hoelzl@41126
  2996
             inverse (real (fact n)) * F n t * (xs!x - c)^n
hoelzl@41126
  2997
             \<in> {l .. u}" (is "\<And> t. _ \<Longrightarrow> ?taylor t \<in> _")
hoelzl@31862
  2998
    unfolding F_def atLeastAtMost_iff[symmetric] setprod_fact by blast
hoelzl@31862
  2999
hoelzl@41126
  3000
  have bnd_xs: "xs ! x \<in> { lx .. ux }"
hoelzl@31862
  3001
    using `bounded_by xs vs`[THEN bounded_byE, OF `x < length vs`] bnd_x by auto
hoelzl@31862
  3002
hoelzl@31862
  3003
  show ?thesis
hoelzl@31862
  3004
  proof (cases n)
hoelzl@31862
  3005
    case 0 thus ?thesis using hyp[OF bnd_xs] unfolding F_def by auto
hoelzl@31862
  3006
  next
hoelzl@31862
  3007
    case (Suc n')
hoelzl@31862
  3008
    show ?thesis
hoelzl@41126
  3009
    proof (cases "xs ! x = c")
hoelzl@31862
  3010
      case True
hoelzl@31862
  3011
      from True[symmetric] hyp[OF bnd_xs] Suc show ?thesis
wenzelm@32962
  3012
        unfolding F_def Suc setsum_head_upt_Suc[OF zero_less_Suc] setsum_shift_bounds_Suc_ivl by auto
hoelzl@31862
  3013
    next
hoelzl@31862
  3014
      case False
hoelzl@31862
  3015
hoelzl@41126
  3016
      have "lx \<le> real c" "real c \<le> ux" "lx \<le> xs!x" "xs!x \<le> ux"
wenzelm@32962
  3017
        using Suc bnd_c `bounded_by xs vs`[THEN bounded_byE, OF `x < length vs`] bnd_x by auto
hoelzl@31862
  3018
      from Taylor.taylor[OF zero_less_Suc, of F, OF F0 DERIV[unfolded Suc] this False]
hoelzl@41126
  3019
      obtain t::real where t_bnd: "if xs ! x < c then xs ! x < t \<and> t < c else c < t \<and> t < xs ! x"
wenzelm@32962
  3020
        and fl_eq: "interpret_floatarith f (xs[x := xs ! x]) =
hoelzl@41126
  3021
           (\<Sum>m = 0..<Suc n'. F m c / real (fact m) * (xs ! x - c) ^ m) +
hoelzl@41126
  3022
           F (Suc n') t / real (fact (Suc n')) * (xs ! x - c) ^ Suc n'"
wenzelm@32962
  3023
        by blast
hoelzl@31862
  3024
hoelzl@41126
  3025
      from t_bnd bnd_xs bnd_c have *: "t \<in> {lx .. ux}"
hoelzl@41126
  3026
        by (cases "xs ! x < c", auto)
hoelzl@31862
  3027
hoelzl@31862
  3028
      have "interpret_floatarith f (xs[x := xs ! x]) = ?taylor t"
wenzelm@32962
  3029
        unfolding fl_eq Suc by (auto simp add: algebra_simps divide_inverse)
hoelzl@41126
  3030
      also have "\<dots> \<in> {l .. u}" using * by (rule hyp)
hoelzl@31862
  3031
      finally show ?thesis by simp
hoelzl@31862
  3032
    qed
hoelzl@31862
  3033
  qed
hoelzl@31862
  3034
qed
hoelzl@31862
  3035
hoelzl@31862
  3036
fun approx_tse_form' where
hoelzl@31862
  3037
"approx_tse_form' prec t f 0 l u cmp =
hoelzl@31862
  3038
  (case approx_tse prec 0 t ((l + u) * Float 1 -1) 1 f [Some (l, u)]
hoelzl@31862
  3039
     of Some (l, u) \<Rightarrow> cmp l u | None \<Rightarrow> False)" |
hoelzl@31862
  3040
"approx_tse_form' prec t f (Suc s) l u cmp =
hoelzl@31862
  3041
  (let m = (l + u) * Float 1 -1
hoelzl@32919
  3042
   in (if approx_tse_form' prec t f s l m cmp then
hoelzl@32919
  3043
      approx_tse_form' prec t f s m u cmp else False))"
hoelzl@31862
  3044
hoelzl@31862
  3045
lemma approx_tse_form':
hoelzl@41126
  3046
  fixes x :: real
hoelzl@41126
  3047
  assumes "approx_tse_form' prec t f s l u cmp" and "x \<in> {l .. u}"
hoelzl@41126
  3048
  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>
hoelzl@31862
  3049
                  approx_tse prec 0 t ((l' + u') * Float 1 -1) 1 f [Some (l', u')] = Some (ly, uy)"
hoelzl@31862
  3050
using assms proof (induct s arbitrary: l u)
hoelzl@31862
  3051
  case 0
hoelzl@31862
  3052
  then obtain ly uy
hoelzl@31862
  3053
    where *: "approx_tse prec 0 t ((l + u) * Float 1 -1) 1 f [Some (l, u)] = Some (ly, uy)"
hoelzl@31862
  3054
    and **: "cmp ly uy" by (auto elim!: option_caseE)
hoelzl@31862
  3055
  with 0 show ?case by (auto intro!: exI)
hoelzl@31862
  3056
next
hoelzl@31862
  3057
  case (Suc s)
hoelzl@31862
  3058
  let ?m = "(l + u) * Float 1 -1"
hoelzl@31862
  3059
  from Suc.prems
hoelzl@31862
  3060
  have l: "approx_tse_form' prec t f s l ?m cmp"
hoelzl@31862
  3061
    and u: "approx_tse_form' prec t f s ?m u cmp"
hoelzl@32919
  3062
    by (auto simp add: Let_def lazy_conj)
hoelzl@31862
  3063
hoelzl@41126
  3064
  have m_l: "real l \<le> ?m" and m_u: "?m \<le> real u"
hoelzl@31862
  3065
    unfolding le_float_def using Suc.prems by auto
hoelzl@31862
  3066
hoelzl@41126
  3067
  with `x \<in> { l .. u }`
hoelzl@41126
  3068
  have "x \<in> { l .. ?m} \<or> x \<in> { ?m .. u }" by auto
hoelzl@31862
  3069
  thus ?case
hoelzl@31862
  3070
  proof (rule disjE)
hoelzl@41126
  3071
    assume "x \<in> { l .. ?m}"
hoelzl@31862
  3072
    from Suc.hyps[OF l this]
hoelzl@31862
  3073
    obtain l' u' ly uy
hoelzl@41126
  3074
      where "x \<in> { l' .. u' } \<and> real l \<le> l' \<and> real u' \<le> ?m \<and> cmp ly uy \<and>
hoelzl@31862
  3075
                  approx_tse prec 0 t ((l' + u') * Float 1 -1) 1 f [Some (l', u')] = Some (ly, uy)" by blast
hoelzl@31862
  3076
    with m_u show ?thesis by (auto intro!: exI)
hoelzl@31862
  3077
  next
hoelzl@41126
  3078
    assume "x \<in> { ?m .. u }"
hoelzl@31862
  3079
    from Suc.hyps[OF u this]
hoelzl@31862
  3080
    obtain l' u' ly uy
hoelzl@41126
  3081
      where "x \<in> { l' .. u' } \<and> ?m \<le> real l' \<and> u' \<le> real u \<and> cmp ly uy \<and>
hoelzl@31862
  3082
                  approx_tse prec 0 t ((l' + u') * Float 1 -1) 1 f [Some (l', u')] = Some (ly, uy)" by blast
hoelzl@31862
  3083
    with m_u show ?thesis by (auto intro!: exI)
hoelzl@31862
  3084
  qed
hoelzl@31862
  3085
qed
hoelzl@31862
  3086
hoelzl@31862
  3087
lemma approx_tse_form'_less:
hoelzl@41126
  3088
  fixes x :: real
hoelzl@31862
  3089
  assumes tse: "approx_tse_form' prec t (Add a (Minus b)) s l u (\<lambda> l u. 0 < l)"
hoelzl@41126
  3090
  and x: "x \<in> {l .. u}"
hoelzl@31862
  3091
  shows "interpret_floatarith b [x] < interpret_floatarith a [x]"
hoelzl@31862
  3092
proof -
hoelzl@31862
  3093
  from approx_tse_form'[OF tse x]
hoelzl@31862
  3094
  obtain l' u' ly uy
hoelzl@41126
  3095
    where x': "x \<in> { l' .. u' }" and "l \<le> real l'"
hoelzl@41126
  3096
    and "real u' \<le> u" and "0 < ly"
hoelzl@31862
  3097
    and tse: "approx_tse prec 0 t ((l' + u') * Float 1 -1) 1 (Add a (Minus b)) [Some (l', u')] = Some (ly, uy)"
hoelzl@31862
  3098
    by blast
hoelzl@31862
  3099
hoelzl@31862
  3100
  hence "bounded_by [x] [Some (l', u')]" by (auto simp add: bounded_by_def)
hoelzl@31862
  3101
hoelzl@31862
  3102
  from approx_tse[OF this _ _ _ _ tse[symmetric], of l' u'] x'
hoelzl@41126
  3103
  have "ly \<le> interpret_floatarith a [x] - interpret_floatarith b [x]"
hoelzl@31862
  3104
    by (auto simp add: diff_minus)
hoelzl@31862
  3105
  from order_less_le_trans[OF `0 < ly`[unfolded less_float_def] this]
hoelzl@31862
  3106
  show ?thesis by auto
hoelzl@31862
  3107
qed
hoelzl@31862
  3108
hoelzl@31862
  3109
lemma approx_tse_form'_le:
hoelzl@41126
  3110
  fixes x :: real
hoelzl@31862
  3111
  assumes tse: "approx_tse_form' prec t (Add a (Minus b)) s l u (\<lambda> l u. 0 \<le> l)"
hoelzl@41126
  3112
  and x: "x \<in> {l .. u}"
hoelzl@31862
  3113
  shows "interpret_floatarith b [x] \<le> interpret_floatarith a [x]"
hoelzl@31862
  3114
proof -
hoelzl@31862
  3115
  from approx_tse_form'[OF tse x]
hoelzl@31862
  3116
  obtain l' u' ly uy
hoelzl@41126
  3117
    where x': "x \<in> { l' .. u' }" and "l \<le> real l'"
hoelzl@41126
  3118
    and "real u' \<le> u" and "0 \<le> ly"
hoelzl@31862
  3119
    and tse: "approx_tse prec 0 t ((l' + u') * Float 1 -1) 1 (Add a (Minus b)) [Some (l', u')] = Some (ly, uy)"
hoelzl@31862
  3120
    by blast
hoelzl@31862
  3121
hoelzl@31862
  3122
  hence "bounded_by [x] [Some (l', u')]" by (auto simp add: bounded_by_def)
hoelzl@31862
  3123
hoelzl@31862
  3124
  from approx_tse[OF this _ _ _ _ tse[symmetric], of l' u'] x'
hoelzl@41126
  3125
  have "ly \<le> interpret_floatarith a [x] - interpret_floatarith b [x]"
hoelzl@31862
  3126
    by (auto simp add: diff_minus)
hoelzl@31862
  3127
  from order_trans[OF `0 \<le> ly`[unfolded le_float_def] this]
hoelzl@31862
  3128
  show ?thesis by auto
hoelzl@31862
  3129
qed
hoelzl@31862
  3130
hoelzl@31862
  3131
definition
hoelzl@31862
  3132
"approx_tse_form prec t s f =
hoelzl@31862
  3133
  (case f
hoelzl@32919
  3134
   of (Bound x a b f) \<Rightarrow> x = Var 0 \<and>
hoelzl@31862
  3135
     (case (approx prec a [None], approx prec b [None])
hoelzl@31862
  3136
      of (Some (l, u), Some (l', u')) \<Rightarrow>
hoelzl@31862
  3137
        (case f
hoelzl@31862
  3138
         of Less lf rt \<Rightarrow> approx_tse_form' prec t (Add rt (Minus lf)) s l u' (\<lambda> l u. 0 < l)
hoelzl@31862
  3139
          | LessEqual lf rt \<Rightarrow> approx_tse_form' prec t (Add rt (Minus lf)) s l u' (\<lambda> l u. 0 \<le> l)
hoelzl@31862
  3140
          | AtLeastAtMost x lf rt \<Rightarrow>
hoelzl@32919
  3141
            (if approx_tse_form' prec t (Add x (Minus lf)) s l u' (\<lambda> l u. 0 \<le> l) then
hoelzl@32919
  3142
            approx_tse_form' prec t (Add rt (Minus x)) s l u' (\<lambda> l u. 0 \<le> l) else False)
hoelzl@31862
  3143
          | _ \<Rightarrow> False)
hoelzl@31862
  3144
       | _ \<Rightarrow> False)
hoelzl@31862
  3145
   | _ \<Rightarrow> False)"
hoelzl@31862
  3146
hoelzl@31862
  3147
lemma approx_tse_form:
hoelzl@31862
  3148
  assumes "approx_tse_form prec t s f"
hoelzl@31862
  3149
  shows "interpret_form f [x]"
hoelzl@31862
  3150
proof (cases f)
hoelzl@31862
  3151
  case (Bound i a b f') note f_def = this
hoelzl@31862
  3152
  with assms obtain l u l' u'
hoelzl@31862
  3153
    where a: "approx prec a [None] = Some (l, u)"
hoelzl@31862
  3154
    and b: "approx prec b [None] = Some (l', u')"
hoelzl@31862
  3155
    unfolding approx_tse_form_def by (auto elim!: option_caseE)
hoelzl@31862
  3156
hoelzl@32919
  3157
  from Bound assms have "i = Var 0" unfolding approx_tse_form_def by auto
hoelzl@31862
  3158
  hence i: "interpret_floatarith i [x] = x" by auto
hoelzl@31862
  3159
hoelzl@31862
  3160
  { let "?f z" = "interpret_floatarith z [x]"
hoelzl@31862
  3161
    assume "?f i \<in> { ?f a .. ?f b }"
hoelzl@31862
  3162
    with approx[OF _ a[symmetric], of "[x]"] approx[OF _ b[symmetric], of "[x]"]
hoelzl@41126
  3163
    have bnd: "x \<in> { l .. u'}" unfolding bounded_by_def i by auto
hoelzl@31862
  3164
hoelzl@31862
  3165
    have "interpret_form f' [x]"
hoelzl@31862
  3166
    proof (cases f')
hoelzl@31862
  3167
      case (Less lf rt)
hoelzl@31862
  3168
      with Bound a b assms
hoelzl@31862
  3169
      have "approx_tse_form' prec t (Add rt (Minus lf)) s l u' (\<lambda> l u. 0 < l)"
wenzelm@32962
  3170
        unfolding approx_tse_form_def by auto
hoelzl@31862
  3171
      from approx_tse_form'_less[OF this bnd]
hoelzl@31862
  3172
      show ?thesis using Less by auto
hoelzl@31862
  3173
    next
hoelzl@31862
  3174
      case (LessEqual lf rt)
hoelzl@31862
  3175
      with Bound a b assms
hoelzl@31862
  3176
      have "approx_tse_form' prec t (Add rt (Minus lf)) s l u' (\<lambda> l u. 0 \<le> l)"
wenzelm@32962
  3177
        unfolding approx_tse_form_def by auto
hoelzl@31862
  3178
      from approx_tse_form'_le[OF this bnd]
hoelzl@31862
  3179
      show ?thesis using LessEqual by auto
hoelzl@31862
  3180
    next
hoelzl@31862
  3181
      case (AtLeastAtMost x lf rt)
hoelzl@31862
  3182
      with Bound a b assms
hoelzl@31862
  3183
      have "approx_tse_form' prec t (Add rt (Minus x)) s l u' (\<lambda> l u. 0 \<le> l)"
wenzelm@32962
  3184
        and "approx_tse_form' prec t (Add x (Minus lf)) s l u' (\<lambda> l u. 0 \<le> l)"
wenzelm@32962
  3185
        unfolding approx_tse_form_def lazy_conj by auto
hoelzl@31862
  3186
      from approx_tse_form'_le[OF this(1) bnd] approx_tse_form'_le[OF this(2) bnd]
hoelzl@31862
  3187
      show ?thesis using AtLeastAtMost by auto
hoelzl@31862
  3188
    next
hoelzl@31862
  3189
      case (Bound x a b f') with assms
hoelzl@31862
  3190
      show ?thesis by (auto elim!: option_caseE simp add: f_def approx_tse_form_def)
hoelzl@31862
  3191
    next
hoelzl@31862
  3192
      case (Assign x a f') with assms
hoelzl@31862
  3193
      show ?thesis by (auto elim!: option_caseE simp add: f_def approx_tse_form_def)
hoelzl@31862
  3194
    qed } thus ?thesis unfolding f_def by auto
hoelzl@31862
  3195
next case Assign with assms show ?thesis by (auto simp add: approx_tse_form_def)
hoelzl@31862
  3196
next case LessEqual with assms show ?thesis by (auto simp add: approx_tse_form_def)
hoelzl@31862
  3197
next case Less with assms show ?thesis by (auto simp add: approx_tse_form_def)
hoelzl@31862
  3198
next case AtLeastAtMost with assms show ?thesis by (auto simp add: approx_tse_form_def)
hoelzl@31862
  3199
qed
hoelzl@31862
  3200
hoelzl@32919
  3201
text {* @{term approx_form_eval} is only used for the {\tt value}-command. *}
hoelzl@32919
  3202
hoelzl@32919
  3203
fun approx_form_eval :: "nat \<Rightarrow> form \<Rightarrow> (float * float) option list \<Rightarrow> (float * float) option list" where
hoelzl@32919
  3204
"approx_form_eval prec (Bound (Var n) a b f) bs =
hoelzl@32919
  3205
   (case (approx prec a bs, approx prec b bs)
hoelzl@32919
  3206
   of (Some (l, _), Some (_, u)) \<Rightarrow> approx_form_eval prec f (bs[n := Some (l, u)])
hoelzl@32919
  3207
    | _ \<Rightarrow> bs)" |
hoelzl@32919
  3208
"approx_form_eval prec (Assign (Var n) a f) bs =
hoelzl@32919
  3209
   (case (approx prec a bs)
hoelzl@32919
  3210
   of (Some (l, u)) \<Rightarrow> approx_form_eval prec f (bs[n := Some (l, u)])
hoelzl@32919
  3211
    | _ \<Rightarrow> bs)" |
hoelzl@32919
  3212
"approx_form_eval prec (Less a b) bs = bs @ [approx prec a bs, approx prec b bs]" |
hoelzl@32919
  3213
"approx_form_eval prec (LessEqual a b) bs = bs @ [approx prec a bs, approx prec b bs]" |
hoelzl@32919
  3214
"approx_form_eval prec (AtLeastAtMost x a b) bs =
hoelzl@32919
  3215
   bs @ [approx prec x bs, approx prec a bs, approx prec b bs]" |
hoelzl@32919
  3216
"approx_form_eval _ _ bs = bs"
hoelzl@32919
  3217
hoelzl@29742
  3218
subsection {* Implement proof method \texttt{approximation} *}
hoelzl@29742
  3219
hoelzl@31811
  3220
lemmas interpret_form_equations = interpret_form.simps interpret_floatarith.simps interpret_floatarith_num
hoelzl@31098
  3221
  interpret_floatarith_divide interpret_floatarith_diff interpret_floatarith_tan interpret_floatarith_powr interpret_floatarith_log
hoelzl@31467
  3222
  interpret_floatarith_sin
hoelzl@29742
  3223
haftmann@36985
  3224
oracle approximation_oracle = {* fn (thy, t) =>
haftmann@36985
  3225
let
haftmann@36985
  3226
haftmann@36985
  3227
  fun bad t = error ("Bad term: " ^ Syntax.string_of_term_global thy t);
haftmann@36985
  3228
wenzelm@38964
  3229
  fun term_of_bool true = @{term True}
wenzelm@38964
  3230
    | term_of_bool false = @{term False};
haftmann@36985
  3231
haftmann@36985
  3232
  fun term_of_float (@{code Float} (k, l)) =
haftmann@36985
  3233
    @{term Float} $ HOLogic.mk_number @{typ int} k $ HOLogic.mk_number @{typ int} l;
haftmann@36985
  3234
haftmann@36985
  3235
  fun term_of_float_float_option NONE = @{term "None :: (float \<times> float) option"}
haftmann@36985
  3236
    | term_of_float_float_option (SOME ff) = @{term "Some :: float \<times> float \<Rightarrow> _"}
haftmann@36985
  3237
        $ HOLogic.mk_prod (pairself term_of_float ff);
haftmann@36985
  3238
haftmann@36985
  3239
  val term_of_float_float_option_list =
haftmann@36985
  3240
    HOLogic.mk_list @{typ "(float \<times> float) option"} o map term_of_float_float_option;
haftmann@36985
  3241
haftmann@36985
  3242
  fun nat_of_term t = HOLogic.dest_nat t handle TERM _ => snd (HOLogic.dest_number t);
haftmann@36985
  3243
haftmann@36985
  3244
  fun float_of_term (@{term Float} $ k $ l) =
haftmann@36985
  3245
        @{code Float} (snd (HOLogic.dest_number k), snd (HOLogic.dest_number l))
haftmann@36985
  3246
    | float_of_term t = bad t;
haftmann@36985
  3247
haftmann@36985
  3248
  fun floatarith_of_term (@{term Add} $ a $ b) = @{code Add} (floatarith_of_term a, floatarith_of_term b)
haftmann@36985
  3249
    | floatarith_of_term (@{term Minus} $ a) = @{code Minus} (floatarith_of_term a)
haftmann@36985
  3250
    | floatarith_of_term (@{term Mult} $ a $ b) = @{code Mult} (floatarith_of_term a, floatarith_of_term b)
haftmann@36985
  3251
    | floatarith_of_term (@{term Inverse} $ a) = @{code Inverse} (floatarith_of_term a)
haftmann@36985
  3252
    | floatarith_of_term (@{term Cos} $ a) = @{code Cos} (floatarith_of_term a)
haftmann@36985
  3253
    | floatarith_of_term (@{term Arctan} $ a) = @{code Arctan} (floatarith_of_term a)
haftmann@36985
  3254
    | floatarith_of_term (@{term Abs} $ a) = @{code Abs} (floatarith_of_term a)
haftmann@36985
  3255
    | floatarith_of_term (@{term Max} $ a $ b) = @{code Max} (floatarith_of_term a, floatarith_of_term b)
haftmann@36985
  3256
    | floatarith_of_term (@{term Min} $ a $ b) = @{code Min} (floatarith_of_term a, floatarith_of_term b)
haftmann@36985
  3257
    | floatarith_of_term @{term Pi} = @{code Pi}
haftmann@36985
  3258
    | floatarith_of_term (@{term Sqrt} $ a) = @{code Sqrt} (floatarith_of_term a)
haftmann@36985
  3259
    | floatarith_of_term (@{term Exp} $ a) = @{code Exp} (floatarith_of_term a)
haftmann@36985
  3260
    | floatarith_of_term (@{term Ln} $ a) = @{code Ln} (floatarith_of_term a)
haftmann@36985
  3261
    | floatarith_of_term (@{term Power} $ a $ n) =
haftmann@36985
  3262
        @{code Power} (floatarith_of_term a, nat_of_term n)
haftmann@36985
  3263
    | floatarith_of_term (@{term Var} $ n) = @{code Var} (nat_of_term n)
haftmann@36985
  3264
    | floatarith_of_term (@{term Num} $ m) = @{code Num} (float_of_term m)
haftmann@36985
  3265
    | floatarith_of_term t = bad t;
haftmann@36985
  3266
haftmann@36985
  3267
  fun form_of_term (@{term Bound} $ a $ b $ c $ p) = @{code Bound}
haftmann@36985
  3268
        (floatarith_of_term a, floatarith_of_term b, floatarith_of_term c, form_of_term p)
haftmann@36985
  3269
    | form_of_term (@{term Assign} $ a $ b $ p) = @{code Assign}
haftmann@36985
  3270
        (floatarith_of_term a, floatarith_of_term b, form_of_term p)
haftmann@36985
  3271
    | form_of_term (@{term Less} $ a $ b) = @{code Less}
haftmann@36985
  3272
        (floatarith_of_term a, floatarith_of_term b)
haftmann@36985
  3273
    | form_of_term (@{term LessEqual} $ a $ b) = @{code LessEqual}
haftmann@36985
  3274
        (floatarith_of_term a, floatarith_of_term b)
haftmann@36985
  3275
    | form_of_term (@{term AtLeastAtMost} $ a $ b $ c) = @{code AtLeastAtMost}
haftmann@36985
  3276
        (floatarith_of_term a, floatarith_of_term b, floatarith_of_term c)
haftmann@36985
  3277
    | form_of_term t = bad t;
haftmann@36985
  3278
haftmann@36985
  3279
  fun float_float_option_of_term @{term "None :: (float \<times> float) option"} = NONE
haftmann@36985
  3280
    | float_float_option_of_term (@{term "Some :: float \<times> float \<Rightarrow> _"} $ ff) =
haftmann@36985
  3281
        SOME (pairself float_of_term (HOLogic.dest_prod ff))
haftmann@36985
  3282
    | float_float_option_of_term (@{term approx'} $ n $ a $ ffs) = @{code approx'}
haftmann@36985
  3283
        (nat_of_term n) (floatarith_of_term a) (float_float_option_list_of_term ffs)
haftmann@36985
  3284
    | float_float_option_of_term t = bad t
haftmann@36985
  3285
  and float_float_option_list_of_term
haftmann@36985
  3286
        (@{term "replicate :: _ \<Rightarrow> (float \<times> float) option \<Rightarrow> _"} $ n $ @{term "None :: (float \<times> float) option"}) =
haftmann@36985
  3287
          @{code replicate} (nat_of_term n) NONE
haftmann@36985
  3288
    | float_float_option_list_of_term (@{term approx_form_eval} $ n $ p $ ffs) =
haftmann@36985
  3289
        @{code approx_form_eval} (nat_of_term n) (form_of_term p) (float_float_option_list_of_term ffs)
haftmann@36985
  3290
    | float_float_option_list_of_term t = map float_float_option_of_term
haftmann@36985
  3291
        (HOLogic.dest_list t);
haftmann@36985
  3292
haftmann@36985
  3293
  val nat_list_of_term = map nat_of_term o HOLogic.dest_list ;
haftmann@36985
  3294
haftmann@36985
  3295
  fun bool_of_term (@{term approx_form} $ n $ p $ ffs $ ms) = @{code approx_form}
haftmann@36985
  3296
        (nat_of_term n) (form_of_term p) (float_float_option_list_of_term ffs) (nat_list_of_term ms)
haftmann@36985
  3297
    | bool_of_term (@{term approx_tse_form} $ m $ n $ q $ p) =
haftmann@36985
  3298
        @{code approx_tse_form} (nat_of_term m) (nat_of_term n) (nat_of_term q) (form_of_term p)
haftmann@36985
  3299
    | bool_of_term t = bad t;
haftmann@36985
  3300
haftmann@36985
  3301
  fun eval t = case fastype_of t
haftmann@36985
  3302
   of @{typ bool} =>
haftmann@36985
  3303
        (term_of_bool o bool_of_term) t
haftmann@36985
  3304
    | @{typ "(float \<times> float) option"} =>
haftmann@36985
  3305
        (term_of_float_float_option o float_float_option_of_term) t
haftmann@36985
  3306
    | @{typ "(float \<times> float) option list"} =>
haftmann@36985
  3307
        (term_of_float_float_option_list o float_float_option_list_of_term) t
haftmann@36985
  3308
    | _ => bad t;
haftmann@36985
  3309
haftmann@36985
  3310
  val normalize = eval o Envir.beta_norm o Pattern.eta_long [];
haftmann@36985
  3311
haftmann@36985
  3312
in Thm.cterm_of thy (Logic.mk_equals (t, normalize t)) end
haftmann@36985
  3313
*}
hoelzl@31099
  3314
hoelzl@31099
  3315
ML {*
wenzelm@32212
  3316
  fun reorder_bounds_tac prems i =
hoelzl@29742
  3317
    let
haftmann@38783
  3318
      fun variable_of_bound (Const (@{const_name Trueprop}, _) $
haftmann@37677
  3319
                             (Const (@{const_name Set.member}, _) $
hoelzl@31811
  3320
                              Free (name, _) $ _)) = name
haftmann@38783
  3321
        | variable_of_bound (Const (@{const_name Trueprop}, _) $
haftmann@39093
  3322
                             (Const (@{const_name HOL.eq}, _) $
hoelzl@31811
  3323
                              Free (name, _) $ _)) = name
hoelzl@31811
  3324
        | variable_of_bound t = raise TERM ("variable_of_bound", [t])
hoelzl@31811
  3325
hoelzl@31811
  3326
      val variable_bounds
hoelzl@31811
  3327
        = map (` (variable_of_bound o prop_of)) prems
hoelzl@31811
  3328
hoelzl@31811
  3329
      fun add_deps (name, bnds)
hoelzl@32650
  3330
        = Graph.add_deps_acyclic (name,
hoelzl@32650
  3331
            remove (op =) name (Term.add_free_names (prop_of bnds) []))
hoelzl@32650
  3332
hoelzl@31811
  3333
      val order = Graph.empty
hoelzl@31811
  3334
                  |> fold Graph.new_node variable_bounds
hoelzl@31811
  3335
                  |> fold add_deps variable_bounds
hoelzl@32650
  3336
                  |> Graph.strong_conn |> map the_single |> rev
hoelzl@31811
  3337
                  |> map_filter (AList.lookup (op =) variable_bounds)
hoelzl@31811
  3338
hoelzl@31811
  3339
      fun prepend_prem th tac
hoelzl@31811
  3340
        = tac THEN rtac (th RSN (2, @{thm mp})) i
hoelzl@31811
  3341
    in
hoelzl@31811
  3342
      fold prepend_prem order all_tac
hoelzl@31811
  3343
    end
hoelzl@31811
  3344
haftmann@36985
  3345
  fun approximation_conv ctxt ct =
wenzelm@43232
  3346
    approximation_oracle (Proof_Context.theory_of ctxt, Thm.term_of ct |> tap (tracing o Syntax.string_of_term ctxt));
haftmann@36985
  3347
haftmann@36985
  3348
  fun approximate ctxt t =
wenzelm@43232
  3349
    approximation_oracle (Proof_Context.theory_of ctxt, t)
haftmann@36985
  3350
    |> Thm.prop_of |> Logic.dest_equals |> snd;
haftmann@36985
  3351
hoelzl@31811
  3352
  (* Should be in HOL.thy ? *)
haftmann@36985
  3353
  fun gen_eval_tac conv ctxt = CONVERSION
haftmann@36985
  3354
    (Object_Logic.judgment_conv (Conv.params_conv (~1) (K (Conv.concl_conv (~1) conv)) ctxt))
haftmann@36985
  3355
    THEN' rtac TrueI
hoelzl@29742
  3356
wenzelm@39813
  3357
  val form_equations = @{thms interpret_form_equations};
hoelzl@31811
  3358
hoelzl@31862
  3359
  fun rewrite_interpret_form_tac ctxt prec splitting taylor i st = let
hoelzl@31862
  3360
      fun lookup_splitting (Free (name, typ))
hoelzl@31862
  3361
        = case AList.lookup (op =) splitting name
hoelzl@31862
  3362
          of SOME s => HOLogic.mk_number @{typ nat} s
hoelzl@31862
  3363
           | NONE => @{term "0 :: nat"}
hoelzl@31811
  3364
      val vs = nth (prems_of st) (i - 1)
hoelzl@31811
  3365
               |> Logic.strip_imp_concl
hoelzl@31811
  3366
               |> HOLogic.dest_Trueprop
hoelzl@31811
  3367
               |> Term.strip_comb |> snd |> List.last
hoelzl@31811
  3368
               |> HOLogic.dest_list
hoelzl@31811
  3369
      val p = prec
hoelzl@31811
  3370
              |> HOLogic.mk_number @{typ nat}
wenzelm@43232
  3371
              |> Thm.cterm_of (Proof_Context.theory_of ctxt)
hoelzl@31862
  3372
    in case taylor
hoelzl@31862
  3373
    of NONE => let
hoelzl@31862
  3374
         val n = vs |> length
hoelzl@31862
  3375
                 |> HOLogic.mk_number @{typ nat}
wenzelm@43232
  3376
                 |> Thm.cterm_of (Proof_Context.theory_of ctxt)
hoelzl@31862
  3377
         val s = vs
hoelzl@31862
  3378
                 |> map lookup_splitting
hoelzl@31862
  3379
                 |> HOLogic.mk_list @{typ nat}
wenzelm@43232
  3380
                 |> Thm.cterm_of (Proof_Context.theory_of ctxt)
hoelzl@31862
  3381
       in
hoelzl@31862
  3382
         (rtac (Thm.instantiate ([], [(@{cpat "?n::nat"}, n),
hoelzl@31862
  3383
                                     (@{cpat "?prec::nat"}, p),
hoelzl@31862
  3384
                                     (@{cpat "?ss::nat list"}, s)])
hoelzl@31862
  3385
              @{thm "approx_form"}) i
hoelzl@31862
  3386
          THEN simp_tac @{simpset} i) st
hoelzl@31862
  3387
       end
hoelzl@31862
  3388
hoelzl@31862
  3389
     | SOME t => if length vs <> 1 then raise (TERM ("More than one variable used for taylor series expansion", [prop_of st]))
hoelzl@31862
  3390
       else let
hoelzl@31862
  3391
         val t = t
hoelzl@31862
  3392
              |> HOLogic.mk_number @{typ nat}
wenzelm@43232
  3393
              |> Thm.cterm_of (Proof_Context.theory_of ctxt)
hoelzl@31862
  3394
         val s = vs |> map lookup_splitting |> hd
wenzelm@43232
  3395
              |> Thm.cterm_of (Proof_Context.theory_of ctxt)
hoelzl@31862
  3396
       in
hoelzl@31862
  3397
         rtac (Thm.instantiate ([], [(@{cpat "?s::nat"}, s),
hoelzl@31862
  3398
                                     (@{cpat "?t::nat"}, t),
hoelzl@31862
  3399
                                     (@{cpat "?prec::nat"}, p)])
hoelzl@31862
  3400
              @{thm "approx_tse_form"}) i st
hoelzl@31862
  3401
       end
hoelzl@31811
  3402
    end
hoelzl@31811
  3403
hoelzl@31811
  3404
  (* copied from Tools/induct.ML should probably in args.ML *)
hoelzl@31811
  3405
  val free = Args.context -- Args.term >> (fn (_, Free (n, t)) => n | (ctxt, t) =>
hoelzl@31811
  3406
    error ("Bad free variable: " ^ Syntax.string_of_term ctxt t));
hoelzl@31811
  3407
hoelzl@29742
  3408
*}
hoelzl@29742
  3409
hoelzl@31811
  3410
lemma intervalE: "a \<le> x \<and> x \<le> b \<Longrightarrow> \<lbrakk> x \<in> { a .. b } \<Longrightarrow> P\<rbrakk> \<Longrightarrow> P"
hoelzl@31811
  3411
  by auto
hoelzl@31811
  3412
hoelzl@31811
  3413
lemma meta_eqE: "x \<equiv> a \<Longrightarrow> \<lbrakk> x = a \<Longrightarrow> P\<rbrakk> \<Longrightarrow> P"
hoelzl@31811
  3414
  by auto
hoelzl@31811
  3415
wenzelm@30549
  3416
method_setup approximation = {*
wenzelm@36970
  3417
  Scan.lift Parse.nat
hoelzl@31862
  3418
  --
hoelzl@31811
  3419
  Scan.optional (Scan.lift (Args.$$$ "splitting" |-- Args.colon)
wenzelm@36970
  3420
    |-- Parse.and_list' (free --| Scan.lift (Args.$$$ "=") -- Scan.lift Parse.nat)) []
hoelzl@31862
  3421
  --
hoelzl@31862
  3422
  Scan.option (Scan.lift (Args.$$$ "taylor" |-- Args.colon)
wenzelm@36970
  3423
    |-- (free |-- Scan.lift (Args.$$$ "=") |-- Scan.lift Parse.nat))
hoelzl@31811
  3424
  >>
hoelzl@31862
  3425
  (fn ((prec, splitting), taylor) => fn ctxt =>
wenzelm@30549
  3426
    SIMPLE_METHOD' (fn i =>
hoelzl@31811
  3427
      REPEAT (FIRST' [etac @{thm intervalE},
hoelzl@31811
  3428
                      etac @{thm meta_eqE},
hoelzl@31811
  3429
                      rtac @{thm impI}] i)
wenzelm@32286
  3430
      THEN Subgoal.FOCUS (fn {prems, ...} => reorder_bounds_tac prems i) @{context} i
hoelzl@32650
  3431
      THEN DETERM (TRY (filter_prems_tac (K false) i))
hoelzl@31811
  3432
      THEN DETERM (Reflection.genreify_tac ctxt form_equations NONE i)
hoelzl@31862
  3433
      THEN rewrite_interpret_form_tac ctxt prec splitting taylor i
haftmann@36985
  3434
      THEN gen_eval_tac (approximation_conv ctxt) ctxt i))
hoelzl@31811
  3435
 *} "real number approximation"
hoelzl@31811
  3436
hoelzl@31810
  3437
ML {*
hoelzl@32919
  3438
  fun calculated_subterms (@{const Trueprop} $ t) = calculated_subterms t
haftmann@39019
  3439
    | calculated_subterms (@{const HOL.implies} $ _ $ t) = calculated_subterms t
hoelzl@32919
  3440
    | calculated_subterms (@{term "op <= :: real \<Rightarrow> real \<Rightarrow> bool"} $ t1 $ t2) = [t1, t2]
hoelzl@32919
  3441
    | calculated_subterms (@{term "op < :: real \<Rightarrow> real \<Rightarrow> bool"} $ t1 $ t2) = [t1, t2]
hoelzl@41126
  3442
    | calculated_subterms (@{term "op : :: real \<Rightarrow> real set \<Rightarrow> bool"} $ t1 $
hoelzl@32919
  3443
                           (@{term "atLeastAtMost :: real \<Rightarrow> real \<Rightarrow> real set"} $ t2 $ t3)) = [t1, t2, t3]
hoelzl@32919
  3444
    | calculated_subterms t = raise TERM ("calculated_subterms", [t])
hoelzl@32919
  3445
hoelzl@32919
  3446
  fun dest_interpret_form (@{const "interpret_form"} $ b $ xs) = (b, xs)
hoelzl@32919
  3447
    | dest_interpret_form t = raise TERM ("dest_interpret_form", [t])
hoelzl@32919
  3448
hoelzl@31810
  3449
  fun dest_interpret (@{const "interpret_floatarith"} $ b $ xs) = (b, xs)
hoelzl@32919
  3450
    | dest_interpret t = raise TERM ("dest_interpret", [t])
hoelzl@32919
  3451
hoelzl@32919
  3452
hoelzl@32919
  3453
  fun dest_float (@{const "Float"} $ m $ e) = (snd (HOLogic.dest_number m), snd (HOLogic.dest_number e))
hoelzl@32919
  3454
  fun dest_ivl (Const (@{const_name "Some"}, _) $
haftmann@37366
  3455
                (Const (@{const_name Pair}, _) $ u $ l)) = SOME (dest_float u, dest_float l)
hoelzl@32919
  3456
    | dest_ivl (Const (@{const_name "None"}, _)) = NONE
hoelzl@32919
  3457
    | dest_ivl t = raise TERM ("dest_result", [t])
hoelzl@31810
  3458
hoelzl@31810
  3459
  fun mk_approx' prec t = (@{const "approx'"}
hoelzl@31810
  3460
                         $ HOLogic.mk_number @{typ nat} prec
hoelzl@32650
  3461
                         $ t $ @{term "[] :: (float * float) option list"})
hoelzl@31810
  3462
hoelzl@32919
  3463
  fun mk_approx_form_eval prec t xs = (@{const "approx_form_eval"}
hoelzl@32919
  3464
                         $ HOLogic.mk_number @{typ nat} prec
hoelzl@32919
  3465
                         $ t $ xs)
hoelzl@31810
  3466
hoelzl@31810
  3467
  fun float2_float10 prec round_down (m, e) = (
hoelzl@31810
  3468
    let
hoelzl@31810
  3469
      val (m, e) = (if e < 0 then (m,e) else (m * Integer.pow e 2, 0))
hoelzl@31810
  3470
hoelzl@31810
  3471
      fun frac c p 0 digits cnt = (digits, cnt, 0)
hoelzl@31810
  3472
        | frac c 0 r digits cnt = (digits, cnt, r)
hoelzl@31810
  3473
        | frac c p r digits cnt = (let
hoelzl@31810
  3474
          val (d, r) = Integer.div_mod (r * 10) (Integer.pow (~e) 2)
hoelzl@31810
  3475
        in frac (c orelse d <> 0) (if d <> 0 orelse c then p - 1 else p) r
hoelzl@31810
  3476
                (digits * 10 + d) (cnt + 1)
hoelzl@31810
  3477
        end)
hoelzl@31810
  3478
hoelzl@31810
  3479
      val sgn = Int.sign m
hoelzl@31810
  3480
      val m = abs m
hoelzl@31810
  3481
hoelzl@31810
  3482
      val round_down = (sgn = 1 andalso round_down) orelse
hoelzl@31810
  3483
                       (sgn = ~1 andalso not round_down)
hoelzl@31810
  3484
hoelzl@31810
  3485
      val (x, r) = Integer.div_mod m (Integer.pow (~e) 2)
hoelzl@31810
  3486
hoelzl@31810
  3487
      val p = ((if x = 0 then prec else prec - (IntInf.log2 x + 1)) * 3) div 10 + 1
hoelzl@31810
  3488
hoelzl@31810
  3489
      val (digits, e10, r) = if p > 0 then frac (x <> 0) p r 0 0 else (0,0,0)
hoelzl@31810
  3490
hoelzl@31810
  3491
      val digits = if round_down orelse r = 0 then digits else digits + 1
hoelzl@31810
  3492
hoelzl@31810
  3493
    in (sgn * (digits + x * (Integer.pow e10 10)), ~e10)
hoelzl@31810
  3494
    end)
hoelzl@31810
  3495
hoelzl@31810
  3496
  fun mk_result prec (SOME (l, u)) = (let
hoelzl@31810
  3497
      fun mk_float10 rnd x = (let val (m, e) = float2_float10 prec rnd x
hoelzl@31810
  3498
                         in if e = 0 then HOLogic.mk_number @{typ real} m
hoelzl@31810
  3499
                       else if e = 1 then @{term "divide :: real \<Rightarrow> real \<Rightarrow> real"} $
hoelzl@31810
  3500
                                          HOLogic.mk_number @{typ real} m $
hoelzl@31810
  3501
                                          @{term "10"}
hoelzl@31810
  3502
                                     else @{term "divide :: real \<Rightarrow> real \<Rightarrow> real"} $
hoelzl@31810
  3503
                                          HOLogic.mk_number @{typ real} m $
hoelzl@31810
  3504
                                          (@{term "power 10 :: nat \<Rightarrow> real"} $
hoelzl@31810
  3505
                                           HOLogic.mk_number @{typ nat} (~e)) end)
hoelzl@32919
  3506
      in @{term "atLeastAtMost :: real \<Rightarrow> real \<Rightarrow> real set"} $ mk_float10 true l $ mk_float10 false u end)
hoelzl@31810
  3507
    | mk_result prec NONE = @{term "UNIV :: real set"}
hoelzl@31810
  3508
hoelzl@31810
  3509
  fun realify t = let
wenzelm@35845
  3510
      val t = Logic.varify_global t
hoelzl@31810
  3511
      val m = map (fn (name, sort) => (name, @{typ real})) (Term.add_tvars t [])
hoelzl@31810
  3512
      val t = Term.subst_TVars m t
hoelzl@31810
  3513
    in t end
hoelzl@31810
  3514
hoelzl@32919
  3515
  fun converted_result t =
hoelzl@32919
  3516
          prop_of t
hoelzl@32919
  3517
       |> HOLogic.dest_Trueprop
hoelzl@32919
  3518
       |> HOLogic.dest_eq |> snd
hoelzl@32919
  3519
hoelzl@32919
  3520
  fun apply_tactic context term tactic = cterm_of context term
hoelzl@32919
  3521
    |> Goal.init
hoelzl@32919
  3522
    |> SINGLE tactic
hoelzl@32919
  3523
    |> the |> prems_of |> hd
hoelzl@32919
  3524
hoelzl@32919
  3525
  fun prepare_form context term = apply_tactic context term (
hoelzl@32919
  3526
      REPEAT (FIRST' [etac @{thm intervalE}, etac @{thm meta_eqE}, rtac @{thm impI}] 1)
hoelzl@32919
  3527
      THEN Subgoal.FOCUS (fn {prems, ...} => reorder_bounds_tac prems 1) @{context} 1
hoelzl@32919
  3528
      THEN DETERM (TRY (filter_prems_tac (K false) 1)))
hoelzl@32919
  3529
hoelzl@32919
  3530
  fun reify_form context term = apply_tactic context term
hoelzl@32919
  3531
     (Reflection.genreify_tac @{context} form_equations NONE 1)
hoelzl@32919
  3532
hoelzl@32919
  3533
  fun approx_form prec ctxt t =
hoelzl@32919
  3534
          realify t
wenzelm@43232
  3535
       |> prepare_form (Proof_Context.theory_of ctxt)
hoelzl@32919
  3536
       |> (fn arith_term =>
wenzelm@43232
  3537
          reify_form (Proof_Context.theory_of ctxt) arith_term
hoelzl@32919
  3538
       |> HOLogic.dest_Trueprop |> dest_interpret_form
hoelzl@32919
  3539
       |> (fn (data, xs) =>
hoelzl@32919
  3540
          mk_approx_form_eval prec data (HOLogic.mk_list @{typ "(float * float) option"}
hoelzl@32919
  3541
            (map (fn _ => @{term "None :: (float * float) option"}) (HOLogic.dest_list xs)))
haftmann@36985
  3542
       |> approximate ctxt
hoelzl@32919
  3543
       |> HOLogic.dest_list
hoelzl@32919
  3544
       |> curry ListPair.zip (HOLogic.dest_list xs @ calculated_subterms arith_term)
hoelzl@32919
  3545
       |> map (fn (elem, s) => @{term "op : :: real \<Rightarrow> real set \<Rightarrow> bool"} $ elem $ mk_result prec (dest_ivl s))
hoelzl@32920
  3546
       |> foldr1 HOLogic.mk_conj))
hoelzl@32919
  3547
hoelzl@32919
  3548
  fun approx_arith prec ctxt t = realify t
hoelzl@31811
  3549
       |> Reflection.genreif ctxt form_equations
hoelzl@31810
  3550
       |> prop_of
hoelzl@31810
  3551
       |> HOLogic.dest_Trueprop
hoelzl@31810
  3552
       |> HOLogic.dest_eq |> snd
hoelzl@31810
  3553
       |> dest_interpret |> fst
hoelzl@31810
  3554
       |> mk_approx' prec
haftmann@36985
  3555
       |> approximate ctxt
hoelzl@32919
  3556
       |> dest_ivl
hoelzl@31810
  3557
       |> mk_result prec
hoelzl@32919
  3558
hoelzl@32919
  3559
   fun approx prec ctxt t = if type_of t = @{typ prop} then approx_form prec ctxt t
hoelzl@32919
  3560
     else if type_of t = @{typ bool} then approx_form prec ctxt (@{const Trueprop} $ t)
hoelzl@32919
  3561
     else approx_arith prec ctxt t
hoelzl@31810
  3562
*}
hoelzl@31810
  3563
hoelzl@31810
  3564
setup {*
hoelzl@31810
  3565
  Value.add_evaluator ("approximate", approx 30)
hoelzl@31810
  3566
*}
hoelzl@31810
  3567
hoelzl@29742
  3568
end
hoelzl@41126
  3569